diff --git a/.vs/Socioboard/v14/.suo b/.vs/Socioboard/v14/.suo index 336525bbf..58c11b86f 100644 Binary files a/.vs/Socioboard/v14/.suo and b/.vs/Socioboard/v14/.suo differ diff --git a/src/Api.Socioboard/Controllers/AssestLibraryController.cs b/src/Api.Socioboard/Controllers/AssestLibraryController.cs new file mode 100644 index 000000000..5ddd92737 --- /dev/null +++ b/src/Api.Socioboard/Controllers/AssestLibraryController.cs @@ -0,0 +1,147 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Logging; +using Api.Socioboard.Model; +using Microsoft.AspNetCore.Cors; +using System.Xml; +using System.Text.RegularExpressions; +using Socioboard.Twitter.App.Core; +using MongoDB.Driver; +using Domain.Socioboard.Models; +using Microsoft.AspNetCore.Http; +using System.IO; + +// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 + +namespace Api.Socioboard.Controllers +{ + [EnableCors("AllowAll")] + [Route("api/[controller]")] + public class AssestLibraryController : Controller + { + public AssestLibraryController(ILogger logger, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment env) + { + _logger = logger; + _appSettings = settings.Value; + _redisCache = new Helper.Cache(_appSettings.RedisConfiguration); + _env = env; + } + private readonly ILogger _logger; + private Helper.AppSettings _appSettings; + private Helper.Cache _redisCache; + private readonly IHostingEnvironment _env; + + //Ads verfication + + [HttpPost("SaveImage")] + public IActionResult SaveImage(long userId,string imgName, IFormFile files) + { + + var filename = ""; + var apiimgPath = ""; + var uploads = string.Empty; + string imgPath = string.Empty; + string imagePath= string.Empty; + if (files != null) + { + + if (files.Length > 0) + { + var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); + // await file.s(Path.Combine(uploads, fileName)); + filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue + .Parse(files.ContentDisposition) + .FileName + .Trim('"'); + var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; + //apiimgPath = _appSettings.ApiDomain + "/api/Media/get?id=" + $@"{tempName}"; + + filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; + imgPath = filename; + uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; + // size += file.Length; + try + { + using (FileStream fs = System.IO.File.Create(filename)) + { + files.CopyTo(fs); + fs.Flush(); + } + filename = uploads; + long length = new System.IO.FileInfo(fileName).Length; + } + catch (System.Exception ex) + { + if (!string.IsNullOrEmpty(imagePath)) + { + uploads = imagePath; + } + } + + } + } + else + { + } + Domain.Socioboard.Models.AssestLibrary Imglibrary = new AssestLibrary(); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + //long len = (new System.IO.FileInfo(filename)).Length; + Imglibrary.UserId = userId; + Imglibrary.ImageName = imgName; + Imglibrary.ImagePath = filename; + Imglibrary.ImageSize = 25; + Imglibrary.Imageuploadeddate = DateTime.UtcNow; + int SavedStatus = dbr.Add(Imglibrary); + if(SavedStatus==1) + { + return Ok("Image saved successfully"); + } + else + { + return BadRequest("Something went wrong"); + } + + + + } + + [HttpPost("DeleteImage")] + public IActionResult DeleteImage(long userId, long imgid) + { + try + { + Domain.Socioboard.Models.AssestLibrary Imglibrary = new AssestLibrary(); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + AssestLibrary lstImages = dbr.Single(t => t.UserId == userId && t.Id==imgid); + dbr.Delete(lstImages); + return Ok("Deleted"); + } + catch (Exception ex) + { + return BadRequest("Something went wrong please try after sometime"); + } + + // return Ok(); + } + + [HttpGet("LoadImages")] + public IActionResult LoadImages(long userid) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstImages = dbr.Find(t => t.UserId == userid).ToList(); + if (lstImages != null) + { + return Ok(lstImages); + } + else + { + return NotFound(); + } + + } + } +} diff --git a/src/Api.Socioboard/Controllers/ContentStudioController.cs b/src/Api.Socioboard/Controllers/ContentStudioController.cs index 13b009fde..b1a4aa95a 100644 --- a/src/Api.Socioboard/Controllers/ContentStudioController.cs +++ b/src/Api.Socioboard/Controllers/ContentStudioController.cs @@ -8,6 +8,9 @@ using Domain.Socioboard.Interfaces.Services; using Microsoft.AspNetCore.Hosting; using Api.Socioboard.Model; +using MongoDB.Driver; +using Newtonsoft.Json; +using System.Net.Http; // For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 @@ -38,5 +41,118 @@ public IActionResult GetAdvanceSearchData(string keywords) DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); return Ok(Repositories.ContentStudioRepository.GetAdvanceSearchdata(keywords, _redisCache, _appSettings)); } + + + //[HttpPost("saveDataIdForShare")] + //public IActionResult saveDataIdForShare(HttpRequestMessage shareData, [FromBody] Domain.Socioboard.Models.Mongo.ContentFeedsShareathon getAll)//List shareData + //{ + // Object FacebookPageId = Request.Form["shareData"]; + // string s = JsonConvert.SerializeObject(FacebookPageId); + // DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + // //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); + // return Ok(true); + //} + + //[HttpPost("saveDataIdForShare")] + //public IActionResult saveDataIdForShare(Domain.Socioboard.Models.Mongo.postdata objdata) + //{ + + // //string s = JsonConvert.SerializeObject(FacebookPageId); + // DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + // //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); + // return Ok(true); + //} + + + + + + + [HttpPost("saveDataIdForShare")] + public IActionResult saveDataIdForShare(string fbuserIds, int timeIntervals) + { + //List shareData + var FacebookPageId = Request.Form["shareData"]; + List lstshareData = JsonConvert.DeserializeObject>(FacebookPageId); + var fbuserIds1 = Request.Form["FacebookPageId"]; + //string s = JsonConvert.SerializeObject(FacebookPageId); + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + //string res = Repositories.ContentStudioRepository.saveContentDataIdReposi(shareData, fbuserIds, timeIntervals, _redisCache, _appSettings); + return Ok(true); + } + + + [HttpGet("GetYTAdvanceSearchData")] + public IActionResult GetYTAdvanceSearchData(Domain.Socioboard.Enum.NetworkType network, int skip, int count) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); + if (skip + count < 100) + { + return Ok(Repositories.ContentStudioRepository.YuTubeAdvanceSerachData(network, _redisCache, _appSettings).Skip(skip).Take(count)); + } + else + { + var builder = Builders.Sort; + var sort = builder.Descending(t => t.totalShareCount); + var result = mongorepo.FindWithRange(t => t.networkType.Equals(network), sort, skip, count); + var task = Task.Run(async () => + { + return await result; + }); + IList lstTwitterFeeds = task.Result; + return Ok(lstTwitterFeeds); + } + } + + + [HttpGet("GetSortByData")] + public IActionResult GetSortByData(string sortType, int skip, int count) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); + if (skip + count < 200) + { + return Ok(Repositories.ContentStudioRepository.GetSortBy(sortType, _redisCache, _appSettings).Skip(skip).Take(count)); + } + else + { + var builder = Builders.Sort; + var sort = builder.Descending(t => t.totalShareCount); + var result = mongorepo.FindWithRange(t => t.twtShareCount != 0, sort, skip, count); + var task = Task.Run(async () => + { + return await result; + }); + IList lstTwitterFeeds = task.Result; + return Ok(lstTwitterFeeds); + } + } + + + [HttpGet("QuickTopics")] + public IActionResult QuickTopics(Domain.Socioboard.Enum.NetworkType networkType, int skip, int count) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + MongoRepository mongorepo = new MongoRepository("AdvanceSerachData", _appSettings); + if (skip + count < 100) + { + return Ok(Repositories.ContentStudioRepository.QuickTopicRepository(networkType, _redisCache, _appSettings).Skip(skip).Take(count)); + } + else + { + var builder = Builders.Sort; + var sort = builder.Descending(t => t.totalShareCount); + var result = mongorepo.FindWithRange(t => t.twtShareCount != 0, sort, skip, count); + var task = Task.Run(async () => + { + return await result; + }); + IList lstTwitterFeeds = task.Result; + return Ok(lstTwitterFeeds); + } + } + + } } diff --git a/src/Api.Socioboard/Controllers/ImgLibraryController.cs b/src/Api.Socioboard/Controllers/ImgLibraryController.cs new file mode 100644 index 000000000..6ea2e1049 --- /dev/null +++ b/src/Api.Socioboard/Controllers/ImgLibraryController.cs @@ -0,0 +1,264 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Logging; +using Api.Socioboard.Model; +using Microsoft.AspNetCore.Cors; +using System.Xml; +using System.Text.RegularExpressions; +using Socioboard.Twitter.App.Core; +using MongoDB.Driver; +using Domain.Socioboard.Models; +using Microsoft.AspNetCore.Http; +using System.IO; + +// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860 + +namespace Api.Socioboard.Controllers +{ + [EnableCors("AllowAll")] + [Route("api/[controller]")] + public class ImgLibraryController : Controller + { + public ImgLibraryController(ILogger logger, Microsoft.Extensions.Options.IOptions settings, IHostingEnvironment env) + { + _logger = logger; + _appSettings = settings.Value; + _redisCache = new Helper.Cache(_appSettings.RedisConfiguration); + _env = env; + } + private readonly ILogger _logger; + private Helper.AppSettings _appSettings; + private Helper.Cache _redisCache; + private readonly IHostingEnvironment _env; + + //Ads verfication + + [HttpPost("SaveImageforPrivate")] + public IActionResult SaveImageforPrivate(long userId,string imgName, IFormFile files) + { + long imglength = 0; + var filename = ""; + var apiimgPath = ""; + var uploads = string.Empty; + string imgPath = string.Empty; + string imagePath= string.Empty; + if (files != null) + { + + if (files.Length > 0) + { + var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); + // await file.s(Path.Combine(uploads, fileName)); + filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue + .Parse(files.ContentDisposition) + .FileName + .Trim('"'); + var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; + filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; + imgPath = filename; + uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; + //imglength = new System.IO.FileInfo(filenameforlength).Length; + // size += file.Length; + try + { + using (FileStream fs = System.IO.File.Create(filename)) + { + files.CopyTo(fs); + fs.Flush(); + } + imglength = new System.IO.FileInfo(filename).Length; + filename = uploads; + // long imglength = new System.IO.FileInfo(imagelocalPath).Length; + } + catch (System.Exception ex) + { + if (!string.IsNullOrEmpty(imagePath)) + { + uploads = imagePath; + } + } + + } + } + else + { + } + Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + //long len = (new System.IO.FileInfo(filename)).Length; + lstImglibrary.UserId = userId; + lstImglibrary.ImageName = imgName; + lstImglibrary.ImagePath = filename; + lstImglibrary.ImageSize = imglength; + lstImglibrary.Imageuploadeddate = DateTime.UtcNow; + lstImglibrary.Tags = ""; + lstImglibrary.FolderType = "Private"; + int SavedStatus = dbr.Add(lstImglibrary); + if(SavedStatus==1) + { + return Ok("Image saved successfully"); + } + else + { + return BadRequest("Something went wrong"); + } + + + + } + + [HttpPost("SaveImageForPublic")] + public IActionResult SaveImageForPublic(long userId, string imgName, IFormFile files) + { + long imglength = 0; + var filename = ""; + var apiimgPath = ""; + var uploads = string.Empty; + string imgPath = string.Empty; + string imagePath = string.Empty; + string localpath = string.Empty; + if (files != null) + { + + if (files.Length > 0) + { + var fileName = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue.Parse(files.ContentDisposition).FileName.Trim('"'); + // await file.s(Path.Combine(uploads, fileName)); + filename = Microsoft.Net.Http.Headers.ContentDispositionHeaderValue + .Parse(files.ContentDisposition) + .FileName + .Trim('"'); + var tempName = Domain.Socioboard.Helpers.SBHelper.RandomString(10) + '.' + fileName.Split('.')[1]; + filename = _env.WebRootPath + "\\upload\\UserImages" + $@"\{tempName}"; + localpath = filename; + imgPath = filename; + uploads = _appSettings.ApiDomain + "/api/Media/getUserImages?id=" + $@"{tempName}"; + //imglength = new System.IO.FileInfo(filenameforlength).Length; + // size += file.Length; + try + { + using (FileStream fs = System.IO.File.Create(filename)) + { + files.CopyTo(fs); + fs.Flush(); + } + imglength = new System.IO.FileInfo(filename).Length; + filename = uploads; + // long imglength = new System.IO.FileInfo(imagelocalPath).Length; + } + catch (System.Exception ex) + { + if (!string.IsNullOrEmpty(imagePath)) + { + uploads = imagePath; + } + } + + } + } + else + { + } + Domain.Socioboard.Models.ImgLibrary lstImglibrary = new ImgLibrary(); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + //long len = (new System.IO.FileInfo(filename)).Length; + lstImglibrary.UserId = userId; + lstImglibrary.ImageName = imgName; + lstImglibrary.ImagePath = filename; + lstImglibrary.ImageSize = imglength; + lstImglibrary.Imageuploadeddate = DateTime.UtcNow; + lstImglibrary.Tags = ""; + lstImglibrary.FolderType = "Public"; + lstImglibrary.LocalImagePath = localpath; + int SavedStatus = dbr.Add(lstImglibrary); + if (SavedStatus == 1) + { + return Ok("Image saved successfully"); + } + else + { + return BadRequest("Something went wrong"); + } + + + + } + + [HttpPost("DeleteImage")] + public IActionResult DeleteImage(long userId, long imgid) + { + try + { + Domain.Socioboard.Models.ImgLibrary Imglibrary = new ImgLibrary(); + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + ImgLibrary lstImages = dbr.Single(t => t.UserId == userId && t.Id==imgid); + System.IO.File.Delete(lstImages.LocalImagePath); + dbr.Delete(lstImages); + return Ok("Deleted"); + } + catch (Exception ex) + { + return BadRequest("Something went wrong please try after sometime"); + } + + // return Ok(); + } + + [HttpGet("LoadImagesForPublic")] + public IActionResult LoadImagesForPublic(long groupId, long userId) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + Groupmembers grpadmin = dbr.Single(t => t.groupid == groupId && t.isAdmin == true); + List lstImages = dbr.Find(t => t.UserId == grpadmin.userId && t.FolderType == "Public").ToList(); + if (lstImages != null) + { + return Ok(lstImages); + } + else + { + return NotFound(); + } + + } + + [HttpGet("LoadImagesForPrivate")] + public IActionResult LoadImagesForPrivate(long userid) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + List lstImages = dbr.Find(t => t.UserId == userid && t.FolderType=="Private").ToList(); + if (lstImages != null) + { + return Ok(lstImages); + } + else + { + return NotFound(); + } + + } + + [HttpGet("Totalimagesize")] + public IActionResult Totalimagesize(long userid) + { + DatabaseRepository dbr = new DatabaseRepository(_logger, _env); + double imgsize = dbr.Find(t => t.UserId==userid).Sum(t=>t.ImageSize)/1024; + if (imgsize < 1024) + { + string totalimgSize = Convert.ToString(Math.Truncate(imgsize))+"KB"; + return Ok(totalimgSize); + } + else + { + double img= imgsize / 1024; + string totalimgSize = Convert.ToString(Math.Truncate(img)) + "MB"; + return Ok(totalimgSize); + } + + + } + } +} diff --git a/src/Api.Socioboard/Controllers/MediaController.cs b/src/Api.Socioboard/Controllers/MediaController.cs index db46d3399..85a28077f 100644 --- a/src/Api.Socioboard/Controllers/MediaController.cs +++ b/src/Api.Socioboard/Controllers/MediaController.cs @@ -87,6 +87,36 @@ public IActionResult Get(string id) } + [HttpGet("GetUserImages")] + public IActionResult GetUserImages(string id) + { + MemoryStream ms = null; + //Limit access only to images folder at root level + string filePath = _appEnv.WebRootPath + string.Concat("/upload/UserImages/", id); + string extension = Path.GetExtension(id); + if (System.IO.File.Exists(filePath)) + { + if (!string.IsNullOrWhiteSpace(extension)) + { + extension = extension.Substring(extension.IndexOf(".") + 1); + } + + //If requested file is an image than load file to memory + if (GetImageFormat(extension) != null) + { + return Ok(new FileStream(filePath, FileMode.Open)); + + //ms = CopyFileToMemory(filePath); + } + if (extension.ToLower().Equals("mp4") || extension.ToLower().Equals("mov") || extension.ToLower().Equals("mpeg") || extension.ToLower().Equals("wmv") || extension.ToLower().Equals("avi") || extension.ToLower().Equals("flv") || extension.ToLower().Equals("3gp")) + { + return Ok(new FileStream(filePath, FileMode.Open)); + } + } + + + return BadRequest(); + } } diff --git a/src/Api.Socioboard/Controllers/PaymentTransactionController.cs b/src/Api.Socioboard/Controllers/PaymentTransactionController.cs index 3b7e897b2..94876f174 100644 --- a/src/Api.Socioboard/Controllers/PaymentTransactionController.cs +++ b/src/Api.Socioboard/Controllers/PaymentTransactionController.cs @@ -232,8 +232,7 @@ public IActionResult UpdateRecurringUser(string subscr_id, string txn_id, DateTi } return Ok(); } - - + } } diff --git a/src/Api.Socioboard/Controllers/TwitterController.cs b/src/Api.Socioboard/Controllers/TwitterController.cs index dca25b644..10942b8e7 100644 --- a/src/Api.Socioboard/Controllers/TwitterController.cs +++ b/src/Api.Socioboard/Controllers/TwitterController.cs @@ -379,5 +379,14 @@ public IActionResult FriendRelationship(string profileId, string ToTwitterUserId return Ok(lstRelationFriends); } + [HttpPost("ReportSpam")] + public IActionResult ReportSpam(string profileId, string spamScreenName, long userId) + { + string userSpam_Status = string.Empty; + DatabaseRepository dbr = new DatabaseRepository(_logger, _appEnv); + userSpam_Status = Repositories.TwitterRepository.TwitterSpam_user(profileId, spamScreenName, userId, dbr, _logger, _redisCache, _appSettings); + return Ok(userSpam_Status); + } + } } diff --git a/src/Api.Socioboard/Helper/LinkedInHelper.cs b/src/Api.Socioboard/Helper/LinkedInHelper.cs index 04753160a..0b822abea 100644 --- a/src/Api.Socioboard/Helper/LinkedInHelper.cs +++ b/src/Api.Socioboard/Helper/LinkedInHelper.cs @@ -27,7 +27,7 @@ public static string PostLinkedInMessage(string ImageUrl, long userid, string co if (!ImageUrl.Contains("https://") && !ImageUrl.Contains("http://") && !string.IsNullOrEmpty(ImageUrl)) { - var client = new ImgurClient("api key", "api secret"); + var client = new ImgurClient("5f1ad42ec5988b7", "f3294c8632ef8de6bfcbc46b37a23d18479159c5"); var endpoint = new ImageEndpoint(client); IImage image; using (var fs = new FileStream(imagepath, FileMode.Open)) @@ -144,7 +144,7 @@ public static string PostLinkedInCompanyPagePost(string upload,string ImageUrl, { if (!ImageUrl.Contains("https://") && !ImageUrl.Contains("http://") && !string.IsNullOrEmpty(ImageUrl)) { - var client = new ImgurClient("api key", "api secret"); + var client = new ImgurClient("5f1ad42ec5988b7", "f3294c8632ef8de6bfcbc46b37a23d18479159c5"); var endpoint = new ImageEndpoint(client); IImage image; using (var fs = new FileStream(ImageUrl, FileMode.Open)) @@ -213,7 +213,7 @@ public static string PostLinkedInCompanyPagePost(string upload,string ImageUrl, } else { - var client = new ImgurClient("api key", "api secret"); + var client = new ImgurClient("5f1ad42ec5988b7", "f3294c8632ef8de6bfcbc46b37a23d18479159c5"); var endpoint = new ImageEndpoint(client); IImage image; using (var fs = new FileStream(ImageUrl, FileMode.Open)) diff --git a/src/Api.Socioboard/Helper/TwitterHelper.cs b/src/Api.Socioboard/Helper/TwitterHelper.cs index 237c6756c..6e86f0e56 100644 --- a/src/Api.Socioboard/Helper/TwitterHelper.cs +++ b/src/Api.Socioboard/Helper/TwitterHelper.cs @@ -517,6 +517,11 @@ public static bool FollowAccount(oAuthTwitter OAuth, string Screen_name, string Domain.Socioboard.Models.TwitterMutualFans objTwitterFollowers = new Domain.Socioboard.Models.TwitterMutualFans(); objTwitterFollowers.screen_name = item["screen_name"].ToString(); objTwitterFollowers.name = item["name"].ToString(); + objTwitterFollowers.description = item["description"].ToString(); + objTwitterFollowers.followers = item["followers_count"].ToString(); + objTwitterFollowers.following= item["friends_count"].ToString(); + objTwitterFollowers.location = item["location"].ToString(); + objTwitterFollowers.profile_image_url = item["profile_image_url"].ToString(); lstfollowerlist.Add(objTwitterFollowers); } diff --git a/src/Api.Socioboard/Model/MongoRepository.cs b/src/Api.Socioboard/Model/MongoRepository.cs index 5f8a30a10..955ebcb3b 100644 --- a/src/Api.Socioboard/Model/MongoRepository.cs +++ b/src/Api.Socioboard/Model/MongoRepository.cs @@ -75,6 +75,33 @@ public void Delete(System.Linq.Expressions.Expression> expressi } + public async Task> FindAdvance(Expression> query) where T : class, new() + { + // Return the enumerable of the collection + var collection = _db.GetCollection(collecionName, settings).Find(query);//.Limit(1000); + try + { + var output = await collection.ToListAsync().ConfigureAwait(false); + return output; + } + catch (Exception ex) { return null; } + + + } + + //public async Task> FindAdvance(Expression> query) where T : class, new() + //{ + // // Return the enumerable of the collection + // var collection = _db.GetCollection(collecionName, settings).Find(query).Limit(1000); + // try + // { + // var output = await collection.ToListAsync().ConfigureAwait(false); + // return output; + // } + // catch (Exception ex) { return null; } + + + //} public async Task> BoardFind(Expression> query) where T : class, new() { diff --git a/src/Api.Socioboard/Repositories/ContentStudioRepository.cs b/src/Api.Socioboard/Repositories/ContentStudioRepository.cs index 5f913c773..dfa091f34 100644 --- a/src/Api.Socioboard/Repositories/ContentStudioRepository.cs +++ b/src/Api.Socioboard/Repositories/ContentStudioRepository.cs @@ -1,6 +1,7 @@ using Api.Socioboard.Model; using Domain.Socioboard.Helpers; using Domain.Socioboard.Models.Mongo; +using MongoDB.Bson; using MongoDB.Driver; using System; using System.Collections.Generic; @@ -17,14 +18,18 @@ public class ContentStudioRepository MongoRepository _RssRepository = new MongoRepository("AdvanceSerachData", settings); //List lstyoutube = new List(); var builder = Builders.Sort; - var sort = builder.Descending(t => t.totalShareCount); + // var sort = builder.Descending(t => t.totalShareCount); //mongorepo.FindWithRange(t => t.profileId.Equals(profileId), sort, 0, 100); - var result = _RssRepository.FindWithRange(t => t.networkType == networkType, sort, 0, 30);//UserId - var task = Task.Run(async () => - { + var result = _RssRepository.FindAdvance(t => t.networkType == networkType && t.totalShareCount !=0);//UserId + var task = Task.Run(async () =>{ return await result; }); - IList lstyoutube = task.Result.ToList(); + + + // IList lstyoutube = task.Result.ToList(); + IList lstyoutube = task.Result.ToList();//.Take(30).Skip(0).ToList(); + lstyoutube = lstyoutube.OrderByDescending(kt => kt.postedTime).ToList(); + lstyoutube = lstyoutube.OrderByDescending(gb => gb.totalShareCount).ToList().Take(30).Skip(0).ToList(); if (lstyoutube != null) { //_redisCache.Set(Domain.Socioboard.Consatants.SocioboardConsts.CacheTwitterRecent100Feeds + profileId, lstFbFeeds.ToList()); @@ -36,10 +41,10 @@ public class ContentStudioRepository public static List DailyMotionAdvanceRepository(Domain.Socioboard.Enum.NetworkType networkType, Helper.Cache _redisCache, Helper.AppSettings settings) { - + MongoRepository _RssRepository = new MongoRepository("AdvanceSerachData", settings); List lstDailymotion = new List(); - + var ret = _RssRepository.Find(t => t.networkType == networkType);//UserId var task = Task.Run(async () => { @@ -52,10 +57,10 @@ public class ContentStudioRepository public static List TwitterAdvanceRepository(Domain.Socioboard.Enum.NetworkType networkType, Helper.Cache _redisCache, Helper.AppSettings settings) { - + MongoRepository _RssRepository = new MongoRepository("AdvanceSerachData", settings); List lstTwitter = new List(); - + var ret = _RssRepository.Find(t => t.networkType == networkType);//UserId var task = Task.Run(async () => { @@ -68,13 +73,13 @@ public class ContentStudioRepository public static List GetSortBy(string sortBy, Helper.Cache _redisCache, Helper.AppSettings settings) { - + MongoRepository _RssRepository = new MongoRepository("AdvanceSerachData", settings); var builder = Builders.Sort; var sort = builder.Descending(t => t.postedTime); - var result = _RssRepository.FindWithRange(t=>t.totalShareCount!=0, sort, 0, 150); + var result = _RssRepository.FindWithRange(t => t.totalShareCount != 0, sort, 0, 150); var task = Task.Run(async () => { return await result; @@ -107,7 +112,7 @@ public class ContentStudioRepository else if (sortBy == "Pininterest") { return lsttwt.OrderByDescending(t => t.pinShareCount).ToList(); - } + } else if (sortBy == "LinkedIn") { return lsttwt.OrderByDescending(t => t.linShareCount).ToList(); @@ -155,6 +160,49 @@ public class ContentStudioRepository } } + //public static string saveContentDataIdReposi(List shareathon, string fbPageId, int timeInterval, Helper.Cache _redisCache, Helper.AppSettings settings) + //{ + + // MongoRepository mongorepo = new MongoRepository("ContentShareDataId", settings); + + // var ret = mongorepo.Find(t => t.postId == shareathon.FirstOrDefault().postId); + // var task = Task.Run(async () => + // { + // return await ret; + // }); + // int count = task.Result.Count; + // if (count > 0) + // { + // Domain.Socioboard.Models.Mongo.ContentShareDataId lstPostId = new Domain.Socioboard.Models.Mongo.ContentShareDataId(); + // lstPostId.Id = ObjectId.GenerateNewId(); + // lstPostId.strId = ObjectId.GenerateNewId().ToString(); + // lstPostId.postId = shareathon.FirstOrDefault().postId; + // lstPostId.UserId = shareathon.FirstOrDefault().UserId; + // lstPostId.FbPageId = fbPageId; + // lstPostId.RequestForShare = DateTime.UtcNow.ToString("yyyy/MM/dd HH:mm:ss"); + // try + // { + // mongorepo.Add(lstPostId); + // } + // catch (Exception ex) + // { + // return "not added"; + // } + + + // return "added successfully"; + + // } + // else + // { + // return "some problem while adding"; + // } + + + //} + + + public static List QuickTopicRepository(Domain.Socioboard.Enum.NetworkType networkType, Helper.Cache _redisCache, Helper.AppSettings settings) { diff --git a/src/Api.Socioboard/Repositories/TwitterRepository.cs b/src/Api.Socioboard/Repositories/TwitterRepository.cs index 338ce65d2..85f4c0b93 100644 --- a/src/Api.Socioboard/Repositories/TwitterRepository.cs +++ b/src/Api.Socioboard/Repositories/TwitterRepository.cs @@ -1867,5 +1867,48 @@ public static string TwitterFavorite_post(string profileId, string messageId, lo return "api issue while favourite post"; } } + + public static string TwitterSpam_user(string profileId, string screenName, long userId, Model.DatabaseRepository dbr, ILogger _logger, Helper.Cache _redisCache, Helper.AppSettings _appSettings) + { + Domain.Socioboard.Models.TwitterAccount twtacc = new Domain.Socioboard.Models.TwitterAccount(); + Domain.Socioboard.Models.TwitterAccount imtwtacc = _redisCache.Get(Domain.Socioboard.Consatants.SocioboardConsts.CacheTwitterAccount + profileId); + if (imtwtacc == null) + { + twtacc = dbr.Find(t => t.twitterUserId.Equals(profileId) && t.userId == userId).FirstOrDefault(); + if (twtacc != null) + { + _redisCache.Set(Domain.Socioboard.Consatants.SocioboardConsts.CacheTwitterAccount + profileId, twtacc); + } + } + else + { + twtacc = imtwtacc; + } + oAuthTwitter oAuth = new oAuthTwitter(_appSettings.twitterConsumerKey, _appSettings.twitterConsumerScreatKey, _appSettings.twitterRedirectionUrl); + oAuth.AccessToken = twtacc.oAuthToken; + oAuth.AccessTokenSecret = twtacc.oAuthSecret; + oAuth.TwitterScreenName = twtacc.twitterScreenName; + oAuth.TwitterUserId = twtacc.twitterUserId; + Tweet twt = new Tweet(); + try + { + JArray favoritepost = twt.Post_report_as_spammer(oAuth, screenName); + if (favoritepost.HasValues == true) + { + return "Repoted as spam successfully"; + } + + else + { + return "Already this account reported as spam"; + } + } + catch (Exception ex) + { + _logger.LogError("TwitterSpam_Account" + ex.StackTrace); + _logger.LogError("TwitterSpam_Account" + ex.Message); + return "api issue while spam account"; + } + } } } diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe index cfae208df..a1b28c5af 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb index 2378e5999..3a31d2538 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe index cfae208df..a1b28c5af 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.exe differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb index 2378e5999..3a31d2538 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Api.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll index 92c338811..c28330833 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb index c6196396b..06a03d2e4 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll index 80cb06d40..031912ccf 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb index d48c8a55c..febd8b411 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll index 0f2451aa3..207689199 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb index 0daa34ca4..b10f51544 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Google.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll index 909feda40..60d5086e5 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb index 52223a617..4b456d7a5 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Instagram.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll index 5fd6d3fb5..715d6bac4 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb index 5def093ed..d89286358 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.LinkedIn.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll index 61339df3e..01538f3c4 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb index 493802c95..ae2e37e72 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll index 8aa67089f..517740910 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.dll differ diff --git a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb index 932e94229..81c0a236c 100644 Binary files a/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb and b/src/Api.Socioboard/bin/Debug/net451/win7-x64/Socioboard.Twitter.pdb differ diff --git a/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache b/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache index c10431f3b..883ffb483 100644 --- a/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache +++ b/src/Api.Socioboard/obj/Debug/net451/.IncrementalCache @@ -1 +1 @@ -{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Program.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Startup.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdsOffersController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdvanceSearchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AffiliatesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AgencyUserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BillingController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BoardMeController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ContentStudioController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DiscoveryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DraftMessageController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ElasticMailReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacaebookPageReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacebookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GetInTouchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleAnalyticsReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMember.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMemberController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupProfilesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\LinkedInController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\MediaController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PaymentTransactionController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PinterestController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\RssFeedController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ShareathonController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\SocialMessagesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TaskController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TrainingController..cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\UserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ValuesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\WebHookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\YoutubeReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\FacebookGroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\LinkedInGroupController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\AppSettings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Cache.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\DiscoverySmart.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\FacebookHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnaltyicsReportingHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsAuthenticationHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsRealTimeHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GplusDiscoverySearchHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\InstagramHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\LinkedInHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\ScheduleMessageHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\SessionFactory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\TwitterHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Utility.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\DatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\ListeningMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\MongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AdsOffersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AffiliatesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ContentStudioRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DiscoveryRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DraftMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ElasticMailReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\EwalletWithdrawRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacaebookPageReportsRepositories.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacebookRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GoogleAnalyticsReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupMembersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\LinkedInAccountRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PaymentTransactionRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PinterestRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssFeedRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssNewsContentsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ScheduledMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ShareathonRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TaskRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\UploadVideo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\YoutubeReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\BoardMeRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\FacebookGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\LinkedInGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Facebook\\bin\\Debug\\net451\\Socioboard.Facebook.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Google\\bin\\Debug\\net451\\Socioboard.Google.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Instagram\\bin\\Debug\\net451\\Socioboard.Instagram.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.LinkedIn\\bin\\Debug\\net451\\Socioboard.LinkedIn.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Twitter\\bin\\Debug\\net451\\Socioboard.Twitter.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Pinterest\\bin\\Debug\\net451\\Socioboard.Pinterest.dll"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe.config"],"buildArguments":{"version-suffix":null}} \ No newline at end of file +{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Program.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Startup.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdsOffersController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AdvanceSearchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AffiliatesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AgencyUserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\AssestLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BillingController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\BoardMeController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ContentStudioController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DiscoveryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\DraftMessageController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ElasticMailReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacaebookPageReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\FacebookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GetInTouchController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleAnalyticsReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GoogleController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMember.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupMemberController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupProfilesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\GroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ImgLibraryController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\InstagramReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\LinkedInController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\MediaController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PaymentTransactionController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\PinterestController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\RssFeedController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ShareathonController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\SocialMessagesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TaskController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TrainingController..cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\TwitterReportsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\UserController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\ValuesController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\WebHookController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\YoutubeReportController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\FacebookGroupsController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Controllers\\Listening\\LinkedInGroupController.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\AppSettings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Cache.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\DiscoverySmart.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\FacebookHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnaltyicsReportingHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsAuthenticationHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleAnalyticsRealTimeHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GoogleHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\GplusDiscoverySearchHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\InstagramHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\LinkedInHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\ScheduleMessageHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\SessionFactory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\TwitterHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Helper\\Utility.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\DatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\ListeningMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Model\\MongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AdsOffersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\AffiliatesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ContentStudioRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DiscoveryRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\DraftMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ElasticMailReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\EwalletWithdrawRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacaebookPageReportsRepositories.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\FacebookRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GoogleAnalyticsReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupMembersRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupReportRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\GroupsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\LinkedInAccountRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PaymentTransactionRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\PinterestRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssFeedRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\RssNewsContentsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ScheduledMessageRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ShareathonRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TaskRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\UploadVideo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\YoutubeReportsRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\BoardMeRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\GplusRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\InstagramRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\BoardMeRepository\\TwitterRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\FacebookGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\Repositories\\ListeningRepository\\LinkedInGroupPostRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Facebook\\bin\\Debug\\net451\\Socioboard.Facebook.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Google\\bin\\Debug\\net451\\Socioboard.Google.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Instagram\\bin\\Debug\\net451\\Socioboard.Instagram.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.LinkedIn\\bin\\Debug\\net451\\Socioboard.LinkedIn.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Twitter\\bin\\Debug\\net451\\Socioboard.Twitter.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Socioboard.Pinterest\\bin\\Debug\\net451\\Socioboard.Pinterest.dll"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.pdb","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Api.Socioboard\\bin\\Debug\\net451\\win7-x64\\Api.Socioboard.exe.config"],"buildArguments":{"version-suffix":null}} \ No newline at end of file diff --git a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp index c19261726..342ad2e01 100644 --- a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp +++ b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp @@ -208,6 +208,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AdvanceSearchController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AffiliatesController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AgencyUserController.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AssestLibraryController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\BillingController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\BoardMeController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ContentStudioController.cs" @@ -224,6 +225,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupProfilesController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupReportController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupsController.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ImgLibraryController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramReportsController.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\LinkedInController.cs" diff --git a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp index c6f2dbd34..af970ab27 100644 --- a/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp +++ b/src/Api.Socioboard/obj/Debug/net451/dotnet-compile.rsp @@ -212,6 +212,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AdvanceSearchController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AffiliatesController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AgencyUserController.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\AssestLibraryController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\BillingController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\BoardMeController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ContentStudioController.cs @@ -228,6 +229,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupProfilesController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupReportController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\GroupsController.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\ImgLibraryController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\InstagramReportsController.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Api.Socioboard\Controllers\LinkedInController.cs diff --git a/src/Api.Socioboard/wwwroot/log/log-20160901.txt b/src/Api.Socioboard/wwwroot/log/log-20160901.txt new file mode 100644 index 000000000..7c4cc113e --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20160901.txt @@ -0,0 +1,265 @@ +2016-09-01 16:39:31.999 +05:30 [Debug] Hosting starting +2016-09-01 16:39:32.620 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" started. +2016-09-01 16:39:32.637 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" started. +2016-09-01 16:39:32.738 +05:30 [Debug] Hosting started +2016-09-01 16:39:33.651 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-01 16:39:33.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-01 16:39:34.182 +05:30 [Information] Request finished in 640.5599ms 200 +2016-09-01 16:39:34.686 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" completed keep alive response. +2016-09-01 16:39:36.481 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-01 16:39:36.561 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1164cde2-f4a1-4312-b5d3-ef006be7f552"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-01 16:39:36.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-01 16:39:37.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-01 16:39:37.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-01 16:39:37.196 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:39:37.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:39:37.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:39:38.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1163.7736ms +2016-09-01 16:39:38.459 +05:30 [Information] Request finished in 5280.423ms 200 application/json; charset=utf-8 +2016-09-01 16:39:38.467 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" completed keep alive response. +2016-09-01 16:41:32.580 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" received FIN. +2016-09-01 16:41:32.582 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" received FIN. +2016-09-01 16:41:32.584 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" disconnecting. +2016-09-01 16:41:32.584 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" disconnecting. +2016-09-01 16:41:32.587 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" sending FIN. +2016-09-01 16:41:32.589 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" sending FIN. +2016-09-01 16:41:32.595 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" sent FIN with status "0". +2016-09-01 16:41:32.600 +05:30 [Debug] Connection id ""0HKUIB1PNPNO0"" stopped. +2016-09-01 16:41:32.602 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" sent FIN with status "0". +2016-09-01 16:41:32.602 +05:30 [Debug] Connection id ""0HKUIB1PNPNNV"" stopped. +2016-09-01 16:48:58.404 +05:30 [Debug] Hosting starting +2016-09-01 16:48:58.607 +05:30 [Debug] Hosting started +2016-09-01 16:48:58.848 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" started. +2016-09-01 16:48:58.852 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" started. +2016-09-01 16:48:59.042 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-01 16:48:59.043 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-01 16:48:59.148 +05:30 [Information] Request finished in 151.6423ms 200 +2016-09-01 16:48:59.227 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" completed keep alive response. +2016-09-01 16:48:59.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-01 16:48:59.963 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f144c4f8-e391-4b73-b50e-95a039110619"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-01 16:49:00.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-01 16:49:00.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-01 16:49:00.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-01 16:49:00.330 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:49:00.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:49:00.376 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:49:01.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 863.9971ms +2016-09-01 16:49:01.505 +05:30 [Information] Request finished in 2517.3366ms 200 application/json; charset=utf-8 +2016-09-01 16:49:01.512 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:49:26.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2016-09-01 16:49:26.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-01 16:49:26.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-01 16:49:29.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-01 16:49:34.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:49:34.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:49:34.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:49:34.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8510.351ms +2016-09-01 16:49:34.997 +05:30 [Information] Request finished in 8531.2129ms 200 application/json; charset=utf-8 +2016-09-01 16:49:34.998 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" completed keep alive response. +2016-09-01 16:49:54.413 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-01 16:49:54.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-01 16:49:54.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-01 16:49:56.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-01 16:49:56.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:49:56.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:49:56.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:49:56.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2359.1714ms +2016-09-01 16:49:56.782 +05:30 [Information] Request finished in 2370.9672ms 200 application/json; charset=utf-8 +2016-09-01 16:49:56.783 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:49:57.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-01 16:49:57.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-01 16:49:57.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-01 16:50:00.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:00.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:00.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:00.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:00.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3395.2598ms +2016-09-01 16:50:00.484 +05:30 [Information] Request finished in 3402.5358ms 200 application/json; charset=utf-8 +2016-09-01 16:50:00.485 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" completed keep alive response. +2016-09-01 16:50:00.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-01 16:50:00.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-01 16:50:00.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-01 16:50:03.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:03.792 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:03.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:03.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:03.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3201.0738ms +2016-09-01 16:50:03.813 +05:30 [Information] Request finished in 3209.5531ms 200 application/json; charset=utf-8 +2016-09-01 16:50:03.814 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:50:16.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-01 16:50:16.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-01 16:50:16.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-01 16:50:16.295 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" started. +2016-09-01 16:50:16.295 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" started. +2016-09-01 16:50:16.306 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" started. +2016-09-01 16:50:16.309 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" started. +2016-09-01 16:50:16.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-01 16:50:16.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-01 16:50:16.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-01 16:50:16.368 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-01 16:50:16.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-01 16:50:16.376 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-01 16:50:16.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-01 16:50:16.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-01 16:50:16.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-01 16:50:16.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-01 16:50:16.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-01 16:50:16.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-01 16:50:17.067 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-01 16:50:17.068 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-01 16:50:17.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-01 16:50:19.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:19.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:19.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:19.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:19.992 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:20.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:20.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:20.100 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:20.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:20.185 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3971.5858ms +2016-09-01 16:50:20.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.358 +05:30 [Information] Request finished in 4152.9841ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 3852.8884ms +2016-09-01 16:50:20.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:20.508 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" completed keep alive response. +2016-09-01 16:50:20.522 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 4035.7509ms +2016-09-01 16:50:20.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-01 16:50:20.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-01 16:50:20.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-01 16:50:20.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:20.656 +05:30 [Information] Request finished in 4229.0541ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.656 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.659 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" completed keep alive response. +2016-09-01 16:50:20.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:20.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.736 +05:30 [Information] Request finished in 4362.6876ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.737 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:20.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-01 16:50:20.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 4419.9037ms +2016-09-01 16:50:20.748 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" completed keep alive response. +2016-09-01 16:50:20.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-01 16:50:20.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:20.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 3688.7448ms +2016-09-01 16:50:20.768 +05:30 [Information] Request finished in 4472.0493ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-01 16:50:20.776 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:50:20.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:20.782 +05:30 [Information] Request finished in 3714.5069ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-01 16:50:20.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-01 16:50:20.786 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" completed keep alive response. +2016-09-01 16:50:20.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-01 16:50:20.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-01 16:50:20.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-01 16:50:20.843 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-01 16:50:20.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-01 16:50:20.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-01 16:50:20.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-01 16:50:20.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 4423.5678ms +2016-09-01 16:50:20.893 +05:30 [Information] Request finished in 4547.6014ms 200 application/json; charset=utf-8 +2016-09-01 16:50:20.894 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" completed keep alive response. +2016-09-01 16:50:20.899 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-01 16:50:20.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-01 16:50:20.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-01 16:50:23.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-01 16:50:23.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-01 16:50:23.758 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:23.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:23.872 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:23.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-01 16:50:23.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-01 16:50:23.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:23.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:23.945 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:23.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:23.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3120.5347ms +2016-09-01 16:50:23.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:24.027 +05:30 [Information] Request finished in 3208.9ms 200 text/plain; charset=utf-8 +2016-09-01 16:50:24.029 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:50:24.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 3417.1078ms +2016-09-01 16:50:24.082 +05:30 [Information] Request finished in 3556.7825ms 200 application/json; charset=utf-8 +2016-09-01 16:50:24.083 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" completed keep alive response. +2016-09-01 16:50:24.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:24.112 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:24.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:24.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:24.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 3295.4835ms +2016-09-01 16:50:24.119 +05:30 [Information] Request finished in 3451.7101ms 200 application/json; charset=utf-8 +2016-09-01 16:50:24.121 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" completed keep alive response. +2016-09-01 16:50:24.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-01 16:50:24.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-01 16:50:24.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:24.786 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:24.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-01 16:50:24.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:24.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3917.6871ms +2016-09-01 16:50:24.806 +05:30 [Information] Request finished in 3966.1917ms 200 text/plain; charset=utf-8 +2016-09-01 16:50:24.808 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" completed keep alive response. +2016-09-01 16:50:25.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:25.226 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:25.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-01 16:50:25.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:25.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 4358.2185ms +2016-09-01 16:50:25.232 +05:30 [Information] Request finished in 4463.1316ms 200 text/plain; charset=utf-8 +2016-09-01 16:50:25.233 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" completed keep alive response. +2016-09-01 16:50:47.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:50:47.088 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:50:47.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:50:47.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:50:47.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 26197.8983ms +2016-09-01 16:50:47.108 +05:30 [Information] Request finished in 26209.7387ms 200 application/json; charset=utf-8 +2016-09-01 16:50:47.108 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" completed keep alive response. +2016-09-01 16:51:20.334 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetNotifications?groupId=1&userId=1&skip=0&count=20 +2016-09-01 16:51:20.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetNotifications"'. +2016-09-01 16:51:20.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetNotifications (Api.Socioboard)" +2016-09-01 16:51:23.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetNotifications (Api.Socioboard)" with arguments (["1", "1", "0", "20"]) - ModelState is Valid +2016-09-01 16:51:23.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetNotifications (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-01 16:51:23.818 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-01 16:51:23.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-01 16:51:23.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-01 16:51:23.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetNotifications (Api.Socioboard)" in 3518.5188ms +2016-09-01 16:51:23.885 +05:30 [Information] Request finished in 3602.2869ms 200 application/json; charset=utf-8 +2016-09-01 16:51:23.885 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" completed keep alive response. +2016-09-01 16:52:58.819 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" received FIN. +2016-09-01 16:52:58.819 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" received FIN. +2016-09-01 16:52:58.821 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" disconnecting. +2016-09-01 16:52:58.823 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" received FIN. +2016-09-01 16:52:58.825 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" received FIN. +2016-09-01 16:52:58.826 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" disconnecting. +2016-09-01 16:52:58.827 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" disconnecting. +2016-09-01 16:52:58.825 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" disconnecting. +2016-09-01 16:52:58.827 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" sending FIN. +2016-09-01 16:52:58.821 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" received FIN. +2016-09-01 16:52:58.831 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" received FIN. +2016-09-01 16:52:58.832 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" sending FIN. +2016-09-01 16:52:58.833 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" sending FIN. +2016-09-01 16:52:58.834 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" disconnecting. +2016-09-01 16:52:58.834 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" disconnecting. +2016-09-01 16:52:58.835 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" sending FIN. +2016-09-01 16:52:58.835 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" sending FIN. +2016-09-01 16:52:58.834 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" sending FIN. +2016-09-01 16:52:58.840 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" sent FIN with status "0". +2016-09-01 16:52:58.840 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" sent FIN with status "0". +2016-09-01 16:52:58.842 +05:30 [Debug] Connection id ""0HKUIB72FS98G"" stopped. +2016-09-01 16:52:58.842 +05:30 [Debug] Connection id ""0HKUIB72FS98F"" stopped. +2016-09-01 16:52:58.842 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" sent FIN with status "0". +2016-09-01 16:52:58.843 +05:30 [Debug] Connection id ""0HKUIB72FS98H"" stopped. +2016-09-01 16:52:58.843 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" sent FIN with status "0". +2016-09-01 16:52:58.844 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" sent FIN with status "0". +2016-09-01 16:52:58.844 +05:30 [Debug] Connection id ""0HKUIB72FS98E"" stopped. +2016-09-01 16:52:58.844 +05:30 [Debug] Connection id ""0HKUIB72FS98D"" stopped. +2016-09-01 16:52:58.845 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" sent FIN with status "0". +2016-09-01 16:52:58.845 +05:30 [Debug] Connection id ""0HKUIB72FS98I"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20160903.txt b/src/Api.Socioboard/wwwroot/log/log-20160903.txt new file mode 100644 index 000000000..afabc6f60 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20160903.txt @@ -0,0 +1,23 @@ +2016-09-03 11:42:45.952 +05:30 [Debug] Hosting starting +2016-09-03 11:42:46.798 +05:30 [Debug] Hosting started +2016-09-03 11:42:46.900 +05:30 [Debug] Connection id ""0HKUJO59KG4KF"" started. +2016-09-03 11:42:46.918 +05:30 [Debug] Connection id ""0HKUJO59KG4KG"" started. +2016-09-03 11:42:47.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-03 11:42:47.393 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-03 11:42:47.424 +05:30 [Information] Request finished in 267.4602ms 200 +2016-09-03 11:42:47.681 +05:30 [Debug] Connection id ""0HKUJO59KG4KG"" completed keep alive response. +2016-09-03 11:42:48.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-03 11:42:48.845 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"333d2476-ab2b-4600-bf97-94021037e1cc"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-03 11:42:49.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-03 11:42:49.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-03 11:42:49.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-03 11:42:49.566 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-03 11:42:49.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-03 11:42:49.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-03 11:42:50.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 795.2469ms +2016-09-03 11:42:50.910 +05:30 [Information] Request finished in 3613.3005ms 200 application/json; charset=utf-8 +2016-09-03 11:42:50.914 +05:30 [Debug] Connection id ""0HKUJO59KG4KF"" completed keep alive response. +2016-09-03 11:42:52.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2016-09-03 11:42:52.527 +05:30 [Debug] Request did not match any routes. +2016-09-03 11:42:52.570 +05:30 [Information] Request finished in 24.4647ms 404 +2016-09-03 11:42:52.580 +05:30 [Debug] Connection id ""0HKUJO59KG4KG"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20160905.txt b/src/Api.Socioboard/wwwroot/log/log-20160905.txt new file mode 100644 index 000000000..64c7c8b6c --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20160905.txt @@ -0,0 +1,1464 @@ +2016-09-05 11:33:33.667 +05:30 [Debug] Hosting starting +2016-09-05 11:33:34.016 +05:30 [Debug] Hosting started +2016-09-05 11:33:34.072 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" started. +2016-09-05 11:33:34.072 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" started. +2016-09-05 11:33:34.446 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-05 11:33:34.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-05 11:33:34.712 +05:30 [Information] Request finished in 225.3733ms 200 +2016-09-05 11:33:34.835 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" completed keep alive response. +2016-09-05 11:33:35.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-05 11:33:35.923 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"26b5fd6b-60f3-412c-a1be-2668694ebb9a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-05 11:33:36.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-05 11:33:36.443 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-05 11:33:36.448 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-05 11:33:36.523 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 11:33:36.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:33:36.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:33:36.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 671.6326ms +2016-09-05 11:33:37.121 +05:30 [Information] Request finished in 2802.4371ms 200 application/json; charset=utf-8 +2016-09-05 11:33:37.124 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" completed keep alive response. +2016-09-05 11:33:37.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2016-09-05 11:33:37.527 +05:30 [Debug] Request did not match any routes. +2016-09-05 11:33:37.552 +05:30 [Information] Request finished in 34.2697ms 404 +2016-09-05 11:33:37.554 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" completed keep alive response. +2016-09-05 11:34:33.997 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:34:33.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:34:34.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:34:37.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:34:44.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:34:44.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:34:44.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:34:45.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 11122.7181ms +2016-09-05 11:34:45.130 +05:30 [Information] Request finished in 11139.8359ms 200 application/json; charset=utf-8 +2016-09-05 11:34:45.131 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" completed keep alive response. +2016-09-05 11:35:31.745 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" received FIN. +2016-09-05 11:35:31.774 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:35:31.775 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" disconnecting. +2016-09-05 11:35:31.776 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:35:31.777 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" sending FIN. +2016-09-05 11:35:31.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:35:31.795 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" sent FIN with status "0". +2016-09-05 11:35:31.799 +05:30 [Debug] Connection id ""0HKULA9F9HC7M"" stopped. +2016-09-05 11:35:33.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:35:34.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:35:34.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:35:34.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:35:34.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2246.1399ms +2016-09-05 11:35:34.032 +05:30 [Information] Request finished in 2276.4408ms 200 application/json; charset=utf-8 +2016-09-05 11:35:34.033 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" completed keep alive response. +2016-09-05 11:36:09.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:36:09.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:36:09.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:36:12.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:36:46.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:36:46.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:36:46.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:36:46.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 37479.8528ms +2016-09-05 11:36:46.925 +05:30 [Information] Request finished in 37504.566ms 200 application/json; charset=utf-8 +2016-09-05 11:36:46.926 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" completed keep alive response. +2016-09-05 11:39:34.034 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" received FIN. +2016-09-05 11:39:34.038 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" disconnecting. +2016-09-05 11:39:34.041 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" sending FIN. +2016-09-05 11:39:34.043 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" sent FIN with status "0". +2016-09-05 11:39:34.044 +05:30 [Debug] Connection id ""0HKULA9F9HC7N"" stopped. +2016-09-05 11:40:45.259 +05:30 [Debug] Connection id ""0HKULA9F9HC7O"" started. +2016-09-05 11:40:45.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:45.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:45.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:45.368 +05:30 [Debug] Connection id ""0HKULA9F9HC7P"" started. +2016-09-05 11:40:45.369 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:45.370 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:45.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:45.483 +05:30 [Debug] Connection id ""0HKULA9F9HC7Q"" started. +2016-09-05 11:40:45.487 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:45.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:45.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:45.654 +05:30 [Debug] Connection id ""0HKULA9F9HC7R"" started. +2016-09-05 11:40:45.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:45.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:45.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:45.758 +05:30 [Debug] Connection id ""0HKULA9F9HC7S"" started. +2016-09-05 11:40:45.897 +05:30 [Debug] Connection id ""0HKULA9F9HC7T"" started. +2016-09-05 11:40:46.053 +05:30 [Debug] Connection id ""0HKULA9F9HC7U"" started. +2016-09-05 11:40:46.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:46.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:46.323 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:46.841 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:46.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:46.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:40:47.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 11:40:47.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 11:40:47.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 11:41:09.181 +05:30 [Debug] Hosting starting +2016-09-05 11:41:09.459 +05:30 [Debug] Hosting started +2016-09-05 11:41:09.647 +05:30 [Debug] Connection id ""0HKULADN29C7N"" started. +2016-09-05 11:41:09.647 +05:30 [Debug] Connection id ""0HKULADN29C7O"" started. +2016-09-05 11:41:09.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-05 11:41:09.859 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-05 11:41:09.962 +05:30 [Information] Request finished in 143.637ms 200 +2016-09-05 11:41:10.043 +05:30 [Debug] Connection id ""0HKULADN29C7N"" completed keep alive response. +2016-09-05 11:41:10.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-05 11:41:10.861 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e1392239-9f10-4232-a3e6-40b4a2fbfa76"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-05 11:41:11.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-05 11:41:11.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-05 11:41:11.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-05 11:41:11.261 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 11:41:11.268 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:41:11.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:41:11.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 580.6703ms +2016-09-05 11:41:11.935 +05:30 [Information] Request finished in 2102.3449ms 200 application/json; charset=utf-8 +2016-09-05 11:41:11.939 +05:30 [Debug] Connection id ""0HKULADN29C7O"" completed keep alive response. +2016-09-05 11:42:27.365 +05:30 [Debug] Connection id ""0HKULADN29C7O"" received FIN. +2016-09-05 11:42:27.365 +05:30 [Debug] Connection id ""0HKULADN29C7N"" received FIN. +2016-09-05 11:42:27.370 +05:30 [Debug] Connection id ""0HKULADN29C7O"" disconnecting. +2016-09-05 11:42:27.371 +05:30 [Debug] Connection id ""0HKULADN29C7P"" started. +2016-09-05 11:42:27.371 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" started. +2016-09-05 11:42:27.390 +05:30 [Debug] Connection id ""0HKULADN29C7O"" sending FIN. +2016-09-05 11:42:27.371 +05:30 [Debug] Connection id ""0HKULADN29C7N"" disconnecting. +2016-09-05 11:42:27.396 +05:30 [Debug] Connection id ""0HKULADN29C7N"" sending FIN. +2016-09-05 11:42:27.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:42:27.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:42:27.403 +05:30 [Debug] Connection id ""0HKULADN29C7N"" sent FIN with status "0". +2016-09-05 11:42:27.403 +05:30 [Debug] Connection id ""0HKULADN29C7O"" sent FIN with status "0". +2016-09-05 11:42:27.411 +05:30 [Debug] Connection id ""0HKULADN29C7N"" stopped. +2016-09-05 11:42:27.418 +05:30 [Debug] Connection id ""0HKULADN29C7O"" stopped. +2016-09-05 11:42:27.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:42:27.436 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:42:27.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:42:27.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:42:31.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:42:31.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:42:40.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:42:40.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:42:40.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:42:40.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:42:40.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:42:40.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:42:40.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13245.0537ms +2016-09-05 11:42:40.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13258.6739ms +2016-09-05 11:42:40.714 +05:30 [Information] Request finished in 13285.2301ms 200 application/json; charset=utf-8 +2016-09-05 11:42:40.714 +05:30 [Information] Request finished in 13318.3561ms 200 application/json; charset=utf-8 +2016-09-05 11:42:40.715 +05:30 [Debug] Connection id ""0HKULADN29C7P"" completed keep alive response. +2016-09-05 11:42:40.715 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" completed keep alive response. +2016-09-05 11:45:09.612 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" received FIN. +2016-09-05 11:45:09.612 +05:30 [Debug] Connection id ""0HKULADN29C7P"" received FIN. +2016-09-05 11:45:09.620 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" disconnecting. +2016-09-05 11:45:09.624 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" sending FIN. +2016-09-05 11:45:09.624 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" sent FIN with status "0". +2016-09-05 11:45:09.625 +05:30 [Debug] Connection id ""0HKULADN29C7Q"" stopped. +2016-09-05 11:45:09.629 +05:30 [Debug] Connection id ""0HKULADN29C7P"" disconnecting. +2016-09-05 11:45:09.629 +05:30 [Debug] Connection id ""0HKULADN29C7P"" sending FIN. +2016-09-05 11:45:09.630 +05:30 [Debug] Connection id ""0HKULADN29C7P"" sent FIN with status "0". +2016-09-05 11:45:09.630 +05:30 [Debug] Connection id ""0HKULADN29C7P"" stopped. +2016-09-05 11:45:21.641 +05:30 [Debug] Connection id ""0HKULADN29C7R"" started. +2016-09-05 11:45:21.640 +05:30 [Debug] Connection id ""0HKULADN29C7S"" started. +2016-09-05 11:45:21.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:45:21.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:45:21.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:45:21.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:45:21.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:45:21.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:45:23.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:45:28.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:45:28.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:45:28.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:45:28.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:45:28.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:45:28.838 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:45:28.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:45:28.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 7178.4914ms +2016-09-05 11:45:28.844 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 7177.2131ms +2016-09-05 11:45:28.847 +05:30 [Information] Request finished in 7201.8444ms 200 application/json; charset=utf-8 +2016-09-05 11:45:28.848 +05:30 [Information] Request finished in 7199.5902ms 200 application/json; charset=utf-8 +2016-09-05 11:45:28.849 +05:30 [Debug] Connection id ""0HKULADN29C7R"" completed keep alive response. +2016-09-05 11:45:28.849 +05:30 [Debug] Connection id ""0HKULADN29C7S"" completed keep alive response. +2016-09-05 11:47:09.612 +05:30 [Debug] Connection id ""0HKULADN29C7R"" received FIN. +2016-09-05 11:47:09.614 +05:30 [Debug] Connection id ""0HKULADN29C7S"" received FIN. +2016-09-05 11:47:09.615 +05:30 [Debug] Connection id ""0HKULADN29C7R"" disconnecting. +2016-09-05 11:47:09.625 +05:30 [Debug] Connection id ""0HKULADN29C7R"" sending FIN. +2016-09-05 11:47:09.626 +05:30 [Debug] Connection id ""0HKULADN29C7R"" sent FIN with status "0". +2016-09-05 11:47:09.627 +05:30 [Debug] Connection id ""0HKULADN29C7R"" stopped. +2016-09-05 11:47:09.625 +05:30 [Debug] Connection id ""0HKULADN29C7S"" disconnecting. +2016-09-05 11:47:09.629 +05:30 [Debug] Connection id ""0HKULADN29C7S"" sending FIN. +2016-09-05 11:47:09.630 +05:30 [Debug] Connection id ""0HKULADN29C7S"" sent FIN with status "0". +2016-09-05 11:47:09.630 +05:30 [Debug] Connection id ""0HKULADN29C7S"" stopped. +2016-09-05 11:59:53.483 +05:30 [Debug] Connection id ""0HKULADN29C7T"" started. +2016-09-05 11:59:53.483 +05:30 [Debug] Connection id ""0HKULADN29C7U"" started. +2016-09-05 11:59:53.490 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:59:53.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:59:53.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:59:53.521 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 11:59:53.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 11:59:53.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 11:59:55.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:59:55.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:59:55.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:59:55.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:59:55.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2285.5615ms +2016-09-05 11:59:55.811 +05:30 [Information] Request finished in 2325.4486ms 200 application/json; charset=utf-8 +2016-09-05 11:59:55.812 +05:30 [Debug] Connection id ""0HKULADN29C7T"" completed keep alive response. +2016-09-05 11:59:56.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 11:59:56.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 11:59:56.694 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 11:59:56.696 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 11:59:56.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3170.0355ms +2016-09-05 11:59:56.711 +05:30 [Information] Request finished in 3214.8423ms 200 application/json; charset=utf-8 +2016-09-05 11:59:56.712 +05:30 [Debug] Connection id ""0HKULADN29C7U"" completed keep alive response. +2016-09-05 12:01:01.776 +05:30 [Debug] Connection id ""0HKULADN29C7T"" received FIN. +2016-09-05 12:01:01.776 +05:30 [Debug] Connection id ""0HKULADN29C7U"" received FIN. +2016-09-05 12:01:01.796 +05:30 [Debug] Connection id ""0HKULADN29C7T"" disconnecting. +2016-09-05 12:01:01.806 +05:30 [Debug] Connection id ""0HKULADN29C7T"" sending FIN. +2016-09-05 12:01:01.807 +05:30 [Debug] Connection id ""0HKULADN29C7T"" sent FIN with status "0". +2016-09-05 12:01:01.807 +05:30 [Debug] Connection id ""0HKULADN29C7T"" stopped. +2016-09-05 12:01:01.819 +05:30 [Debug] Connection id ""0HKULADN29C7U"" disconnecting. +2016-09-05 12:01:01.819 +05:30 [Debug] Connection id ""0HKULADN29C7V"" started. +2016-09-05 12:01:01.822 +05:30 [Debug] Connection id ""0HKULADN29C7U"" sending FIN. +2016-09-05 12:01:01.822 +05:30 [Debug] Connection id ""0HKULADN29C7U"" sent FIN with status "0". +2016-09-05 12:01:01.823 +05:30 [Debug] Connection id ""0HKULADN29C7U"" stopped. +2016-09-05 12:01:01.839 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:01:01.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:01:01.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:01:01.850 +05:30 [Debug] Connection id ""0HKULADN29C80"" started. +2016-09-05 12:01:01.857 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:01:01.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:01:01.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:01:04.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:01:05.044 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:01:05.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:01:05.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:01:05.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:01:05.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3342.9546ms +2016-09-05 12:01:05.194 +05:30 [Information] Request finished in 3360.1729ms 200 application/json; charset=utf-8 +2016-09-05 12:01:05.196 +05:30 [Debug] Connection id ""0HKULADN29C7V"" completed keep alive response. +2016-09-05 12:01:05.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:01:05.398 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:01:05.406 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:01:05.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3547.3312ms +2016-09-05 12:01:05.432 +05:30 [Information] Request finished in 3579.2211ms 200 application/json; charset=utf-8 +2016-09-05 12:01:05.434 +05:30 [Debug] Connection id ""0HKULADN29C80"" completed keep alive response. +2016-09-05 12:04:18.212 +05:30 [Debug] Hosting starting +2016-09-05 12:04:18.772 +05:30 [Debug] Hosting started +2016-09-05 12:04:18.953 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" started. +2016-09-05 12:04:18.953 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" started. +2016-09-05 12:04:19.254 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-05 12:04:19.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-05 12:04:19.397 +05:30 [Information] Request finished in 178.256ms 200 +2016-09-05 12:04:19.706 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" completed keep alive response. +2016-09-05 12:04:20.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-05 12:04:20.760 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"604eb7d1-e59c-4016-ac77-23d1922b411e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-05 12:04:20.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-05 12:04:21.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-05 12:04:21.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-05 12:04:21.207 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:04:21.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:04:21.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:04:21.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 687.0801ms +2016-09-05 12:04:21.825 +05:30 [Information] Request finished in 2649.8203ms 200 application/json; charset=utf-8 +2016-09-05 12:04:21.829 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" completed keep alive response. +2016-09-05 12:04:53.119 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:04:53.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:04:53.120 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:04:53.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:04:53.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:04:53.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:04:56.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:04:56.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:05:01.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:05:01.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:05:01.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:05:01.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:05:01.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:05:01.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:05:01.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8597.3721ms +2016-09-05 12:05:01.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8594.2889ms +2016-09-05 12:05:01.731 +05:30 [Information] Request finished in 8618.5365ms 200 application/json; charset=utf-8 +2016-09-05 12:05:01.732 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" completed keep alive response. +2016-09-05 12:05:01.735 +05:30 [Information] Request finished in 8620.7276ms 200 application/json; charset=utf-8 +2016-09-05 12:05:01.737 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" completed keep alive response. +2016-09-05 12:06:18.909 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" received FIN. +2016-09-05 12:06:18.909 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" received FIN. +2016-09-05 12:06:18.930 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" disconnecting. +2016-09-05 12:06:18.933 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" disconnecting. +2016-09-05 12:06:18.943 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" sending FIN. +2016-09-05 12:06:18.943 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" sending FIN. +2016-09-05 12:06:18.960 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" sent FIN with status "0". +2016-09-05 12:06:18.960 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" sent FIN with status "0". +2016-09-05 12:06:18.967 +05:30 [Debug] Connection id ""0HKULAQL3HL2P"" stopped. +2016-09-05 12:06:18.967 +05:30 [Debug] Connection id ""0HKULAQL3HL2Q"" stopped. +2016-09-05 12:06:50.494 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" started. +2016-09-05 12:06:50.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:06:50.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:06:50.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:06:50.685 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" started. +2016-09-05 12:06:50.687 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:06:50.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:06:50.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:06:50.797 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" started. +2016-09-05 12:06:50.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:06:50.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:06:50.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:06:52.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:53.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:53.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:53.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:53.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2578.444ms +2016-09-05 12:06:53.125 +05:30 [Information] Request finished in 2615.395ms 200 application/json; charset=utf-8 +2016-09-05 12:06:53.131 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:06:53.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:06:53.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:06:53.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:06:53.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:53.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:53.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:53.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:53.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3237.61ms +2016-09-05 12:06:53.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:53.948 +05:30 [Information] Request finished in 3256.5206ms 200 application/json; charset=utf-8 +2016-09-05 12:06:53.949 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:06:53.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:06:53.996 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:06:53.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:06:54.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:54.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:54.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:54.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3250.2708ms +2016-09-05 12:06:54.062 +05:30 [Information] Request finished in 3262.6861ms 200 application/json; charset=utf-8 +2016-09-05 12:06:54.063 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:06:54.068 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:06:54.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:06:54.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:06:56.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:56.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:56.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:56.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:56.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3185.5421ms +2016-09-05 12:06:56.401 +05:30 [Information] Request finished in 3193.0827ms 200 application/json; charset=utf-8 +2016-09-05 12:06:56.402 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:06:57.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:57.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:57.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:06:57.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:57.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:57.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3270.3596ms +2016-09-05 12:06:57.319 +05:30 [Information] Request finished in 3301.9788ms 200 application/json; charset=utf-8 +2016-09-05 12:06:57.320 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:06:57.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:06:57.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:06:57.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:06:57.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3255.2857ms +2016-09-05 12:06:57.343 +05:30 [Information] Request finished in 3272.3638ms 200 application/json; charset=utf-8 +2016-09-05 12:06:57.344 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:07:08.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:07:08.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:07:08.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:07:11.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:11.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:11.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:11.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:11.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3113.6825ms +2016-09-05 12:07:11.563 +05:30 [Information] Request finished in 3127.9675ms 200 application/json; charset=utf-8 +2016-09-05 12:07:11.564 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:07:11.574 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:07:11.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:07:11.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:07:14.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:14.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:14.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:14.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:14.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3198.9764ms +2016-09-05 12:07:14.779 +05:30 [Information] Request finished in 3204.5804ms 200 application/json; charset=utf-8 +2016-09-05 12:07:14.779 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:07:18.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 12:07:18.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 12:07:18.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 12:07:18.712 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" started. +2016-09-05 12:07:18.725 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" started. +2016-09-05 12:07:18.727 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" started. +2016-09-05 12:07:18.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 12:07:18.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 12:07:18.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 12:07:18.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 12:07:18.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 12:07:18.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 12:07:18.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 12:07:18.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 12:07:18.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 12:07:20.280 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 12:07:20.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 12:07:20.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 12:07:20.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 12:07:20.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 12:07:20.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 12:07:23.488 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" started. +2016-09-05 12:07:23.488 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" started. +2016-09-05 12:07:23.490 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" started. +2016-09-05 12:07:23.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 12:07:23.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 12:07:23.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 12:07:23.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:23.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:24.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:24.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:24.652 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:24.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:24.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:24.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:24.697 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:24.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:24.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:24.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 5975.3111ms +2016-09-05 12:07:24.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6798.153ms +2016-09-05 12:07:24.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:25.000 +05:30 [Information] Request finished in 6229.3259ms 200 application/json; charset=utf-8 +2016-09-05 12:07:25.007 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:25.007 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:07:25.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:25.041 +05:30 [Information] Request finished in 6915.4483ms 200 application/json; charset=utf-8 +2016-09-05 12:07:25.074 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:07:25.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 12:07:25.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 12:07:25.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 12:07:25.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:25.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 12:07:25.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 12:07:25.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 12:07:25.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:25.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:25.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 6672.5908ms +2016-09-05 12:07:25.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:07:25.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:25.860 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:25.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:25.950 +05:30 [Information] Request finished in 7145.1174ms 200 application/json; charset=utf-8 +2016-09-05 12:07:25.950 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:07:26.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:26.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:07:26.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 5835.8864ms +2016-09-05 12:07:26.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:26.706 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:26.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:26.709 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:26.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:07:26.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:26.775 +05:30 [Information] Request finished in 6407.2137ms 200 application/json; charset=utf-8 +2016-09-05 12:07:26.776 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" completed keep alive response. +2016-09-05 12:07:26.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:26.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:26.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3168.9344ms +2016-09-05 12:07:27.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 8111.3351ms +2016-09-05 12:07:27.062 +05:30 [Information] Request finished in 3525.1587ms 200 text/plain; charset=utf-8 +2016-09-05 12:07:27.063 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" completed keep alive response. +2016-09-05 12:07:27.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:27.159 +05:30 [Information] Request finished in 8365.1716ms 200 application/json; charset=utf-8 +2016-09-05 12:07:27.159 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:27.160 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" completed keep alive response. +2016-09-05 12:07:27.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:27.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:27.233 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" received FIN. +2016-09-05 12:07:27.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 6341.0573ms +2016-09-05 12:07:27.259 +05:30 [Information] Request finished in 6399.2627ms 200 application/json; charset=utf-8 +2016-09-05 12:07:27.259 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" completed keep alive response. +2016-09-05 12:07:27.260 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" disconnecting. +2016-09-05 12:07:27.269 +05:30 [Information] Connection id ""0HKULAQL3HL30"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2016-09-05 12:07:27.272 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" sending FIN. +2016-09-05 12:07:27.275 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" sent FIN with status "0". +2016-09-05 12:07:27.282 +05:30 [Debug] Connection id ""0HKULAQL3HL30"" stopped. +2016-09-05 12:07:27.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:07:28.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:07:28.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:28.176 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:28.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:07:28.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:28.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3025.8309ms +2016-09-05 12:07:28.302 +05:30 [Information] Request finished in 3229.8332ms 200 text/plain; charset=utf-8 +2016-09-05 12:07:28.302 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" completed keep alive response. +2016-09-05 12:07:28.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:28.399 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:07:28.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:28.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:28.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 2629.0177ms +2016-09-05 12:07:28.429 +05:30 [Information] Request finished in 3213.434ms 200 application/json; charset=utf-8 +2016-09-05 12:07:28.431 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" completed keep alive response. +2016-09-05 12:07:40.473 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:07:40.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:07:40.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:07:40.492 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 12:07:40.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 12:07:40.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 12:07:43.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:07:43.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 12:07:43.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:43.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:07:43.779 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:43.779 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:07:43.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:43.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:07:43.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3315.0922ms +2016-09-05 12:07:43.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3300.0905ms +2016-09-05 12:07:43.824 +05:30 [Information] Request finished in 3332.9661ms 200 application/json; charset=utf-8 +2016-09-05 12:07:43.826 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:07:43.833 +05:30 [Information] Request finished in 3350.9279ms 200 application/json; charset=utf-8 +2016-09-05 12:07:43.835 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:08:06.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:08:06.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:08:06.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:08:09.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:09.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:09.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:09.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:09.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3145.3455ms +2016-09-05 12:08:09.886 +05:30 [Information] Request finished in 3153.7997ms 200 application/json; charset=utf-8 +2016-09-05 12:08:09.887 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:08:09.893 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:08:09.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:08:09.895 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:08:12.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:13.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:13.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:13.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:13.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3178.0882ms +2016-09-05 12:08:13.079 +05:30 [Information] Request finished in 3185.092ms 200 application/json; charset=utf-8 +2016-09-05 12:08:13.080 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" completed keep alive response. +2016-09-05 12:08:14.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 12:08:14.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 12:08:14.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 12:08:14.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 12:08:14.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 12:08:14.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 12:08:14.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 12:08:14.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 12:08:14.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 12:08:14.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 12:08:14.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 12:08:14.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 12:08:15.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 12:08:15.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 12:08:15.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 12:08:16.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 12:08:16.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 12:08:16.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 12:08:18.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:18.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:18.711 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:18.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:18.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:18.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 2140.7459ms +2016-09-05 12:08:18.720 +05:30 [Information] Request finished in 2150.5784ms 200 application/json; charset=utf-8 +2016-09-05 12:08:18.721 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:08:18.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-05 12:08:18.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-05 12:08:18.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-05 12:08:19.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:19.818 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:19.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:19.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:19.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:20.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:20.026 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:20.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:20.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:20.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 5128.2151ms +2016-09-05 12:08:20.202 +05:30 [Information] Request finished in 5242.1196ms 200 application/json; charset=utf-8 +2016-09-05 12:08:20.203 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" completed keep alive response. +2016-09-05 12:08:20.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:20.210 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:20.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:20.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:20.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 12:08:20.231 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:20.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:20.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 12:08:20.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 12:08:20.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:20.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:20.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5734.0605ms +2016-09-05 12:08:20.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 4685.0641ms +2016-09-05 12:08:20.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:20.390 +05:30 [Information] Request finished in 5821.942ms 200 application/json; charset=utf-8 +2016-09-05 12:08:20.393 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:20.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:20.394 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" completed keep alive response. +2016-09-05 12:08:20.400 +05:30 [Information] Request finished in 4796.3874ms 200 application/json; charset=utf-8 +2016-09-05 12:08:20.417 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:08:20.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:20.454 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:20.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:20.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-05 12:08:20.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-05 12:08:20.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 12:08:20.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 12:08:20.491 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-05 12:08:20.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:20.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 12:08:20.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:20.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 5558.4488ms +2016-09-05 12:08:20.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 5559.0942ms +2016-09-05 12:08:20.543 +05:30 [Information] Request finished in 5613.8693ms 200 application/json; charset=utf-8 +2016-09-05 12:08:20.545 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" completed keep alive response. +2016-09-05 12:08:20.545 +05:30 [Information] Request finished in 5624.3751ms 200 application/json; charset=utf-8 +2016-09-05 12:08:20.551 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" completed keep alive response. +2016-09-05 12:08:20.587 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 12:08:20.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 12:08:20.590 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 12:08:20.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-05 12:08:20.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-05 12:08:20.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-05 12:08:21.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:21.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:21.097 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:21.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:21.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:21.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 2377.9471ms +2016-09-05 12:08:21.115 +05:30 [Information] Request finished in 2389.5387ms 200 application/json; charset=utf-8 +2016-09-05 12:08:21.116 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" completed keep alive response. +2016-09-05 12:08:22.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:08:22.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:22.569 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:22.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:22.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:22.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 2338.4728ms +2016-09-05 12:08:22.579 +05:30 [Information] Request finished in 2370.5953ms 200 application/json; charset=utf-8 +2016-09-05 12:08:22.580 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" completed keep alive response. +2016-09-05 12:08:22.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:08:23.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:08:23.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:08:23.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:08:23.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:23.728 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:23.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:08:23.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:23.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3270.2603ms +2016-09-05 12:08:23.780 +05:30 [Information] Request finished in 3327.2555ms 200 text/plain; charset=utf-8 +2016-09-05 12:08:23.781 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" completed keep alive response. +2016-09-05 12:08:23.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:23.792 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:23.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:08:23.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:23.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3209.4494ms +2016-09-05 12:08:23.805 +05:30 [Information] Request finished in 3255.5061ms 200 text/plain; charset=utf-8 +2016-09-05 12:08:23.806 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" completed keep alive response. +2016-09-05 12:08:25.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:25.342 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:25.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:08:25.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:25.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 4845.8672ms +2016-09-05 12:08:25.352 +05:30 [Information] Request finished in 4949.9028ms 200 text/plain; charset=utf-8 +2016-09-05 12:08:25.353 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" completed keep alive response. +2016-09-05 12:08:27.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:08:27.575 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:08:27.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:08:27.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:08:27.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6979.4132ms +2016-09-05 12:08:27.596 +05:30 [Information] Request finished in 7009.6433ms 200 application/json; charset=utf-8 +2016-09-05 12:08:27.597 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" completed keep alive response. +2016-09-05 12:10:18.901 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" received FIN. +2016-09-05 12:10:18.903 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" received FIN. +2016-09-05 12:10:18.905 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" received FIN. +2016-09-05 12:10:18.905 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" received FIN. +2016-09-05 12:10:18.907 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" disconnecting. +2016-09-05 12:10:18.912 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" sending FIN. +2016-09-05 12:10:18.901 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" received FIN. +2016-09-05 12:10:18.905 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" disconnecting. +2016-09-05 12:10:18.917 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" disconnecting. +2016-09-05 12:10:18.918 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" disconnecting. +2016-09-05 12:10:18.909 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" disconnecting. +2016-09-05 12:10:18.913 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" sent FIN with status "0". +2016-09-05 12:10:18.925 +05:30 [Debug] Connection id ""0HKULAQL3HL2V"" stopped. +2016-09-05 12:10:18.926 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" sending FIN. +2016-09-05 12:10:18.926 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" sending FIN. +2016-09-05 12:10:18.915 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" received FIN. +2016-09-05 12:10:18.928 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" received FIN. +2016-09-05 12:10:18.928 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" received FIN. +2016-09-05 12:10:18.928 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" disconnecting. +2016-09-05 12:10:18.930 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" disconnecting. +2016-09-05 12:10:18.929 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" disconnecting. +2016-09-05 12:10:18.927 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" sending FIN. +2016-09-05 12:10:18.933 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" sent FIN with status "0". +2016-09-05 12:10:18.934 +05:30 [Debug] Connection id ""0HKULAQL3HL2U"" stopped. +2016-09-05 12:10:18.935 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" sent FIN with status "0". +2016-09-05 12:10:18.935 +05:30 [Debug] Connection id ""0HKULAQL3HL31"" stopped. +2016-09-05 12:10:18.936 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" sent FIN with status "0". +2016-09-05 12:10:18.929 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" sending FIN. +2016-09-05 12:10:18.938 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" sending FIN. +2016-09-05 12:10:18.938 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" sending FIN. +2016-09-05 12:10:18.939 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" sending FIN. +2016-09-05 12:10:18.939 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" sent FIN with status "0". +2016-09-05 12:10:18.936 +05:30 [Debug] Connection id ""0HKULAQL3HL2S"" stopped. +2016-09-05 12:10:18.940 +05:30 [Debug] Connection id ""0HKULAQL3HL2T"" stopped. +2016-09-05 12:10:18.942 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" sent FIN with status "0". +2016-09-05 12:10:18.943 +05:30 [Debug] Connection id ""0HKULAQL3HL2R"" stopped. +2016-09-05 12:10:18.943 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" sent FIN with status "0". +2016-09-05 12:10:18.944 +05:30 [Debug] Connection id ""0HKULAQL3HL33"" stopped. +2016-09-05 12:10:18.944 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" sent FIN with status "0". +2016-09-05 12:10:18.945 +05:30 [Debug] Connection id ""0HKULAQL3HL32"" stopped. +2016-09-05 12:11:08.121 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" started. +2016-09-05 12:11:08.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:11:08.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:11:08.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:11:11.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:11.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:11.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:11.286 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:11.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.5589ms +2016-09-05 12:11:11.290 +05:30 [Information] Request finished in 3163.8307ms 200 application/json; charset=utf-8 +2016-09-05 12:11:11.291 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" completed keep alive response. +2016-09-05 12:11:11.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:11:11.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:11:11.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:11:14.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:14.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:14.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:14.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:14.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3148.9436ms +2016-09-05 12:11:14.462 +05:30 [Information] Request finished in 3160.5766ms 200 application/json; charset=utf-8 +2016-09-05 12:11:14.464 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" completed keep alive response. +2016-09-05 12:11:17.952 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 12:11:17.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 12:11:17.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 12:11:18.133 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" started. +2016-09-05 12:11:18.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 12:11:18.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 12:11:18.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 12:11:18.176 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" started. +2016-09-05 12:11:18.177 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" started. +2016-09-05 12:11:18.186 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" started. +2016-09-05 12:11:18.193 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" started. +2016-09-05 12:11:18.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 12:11:18.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 12:11:18.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 12:11:18.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 12:11:18.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 12:11:18.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 12:11:18.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 12:11:18.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 12:11:18.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 12:11:18.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 12:11:18.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 12:11:18.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 12:11:20.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:20.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:20.500 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:20.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:20.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:20.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2550.1579ms +2016-09-05 12:11:20.511 +05:30 [Information] Request finished in 2853.0516ms 200 application/json; charset=utf-8 +2016-09-05 12:11:20.513 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" completed keep alive response. +2016-09-05 12:11:20.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-05 12:11:20.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-05 12:11:20.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-05 12:11:21.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:21.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:21.581 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:21.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:21.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:21.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 3436.5422ms +2016-09-05 12:11:21.644 +05:30 [Information] Request finished in 3503.8448ms 200 application/json; charset=utf-8 +2016-09-05 12:11:21.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:21.645 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" completed keep alive response. +2016-09-05 12:11:21.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:21.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 12:11:21.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 12:11:21.658 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:21.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 12:11:21.660 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:21.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:21.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 3464.693ms +2016-09-05 12:11:21.682 +05:30 [Information] Request finished in 3492.6332ms 200 application/json; charset=utf-8 +2016-09-05 12:11:21.683 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" completed keep alive response. +2016-09-05 12:11:21.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-05 12:11:21.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-05 12:11:21.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-05 12:11:21.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:21.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:22.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:22.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:22.139 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:22.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:22.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:22.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:22.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 3761.4488ms +2016-09-05 12:11:22.238 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:22.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:22.343 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:22.378 +05:30 [Information] Request finished in 4101.2226ms 200 application/json; charset=utf-8 +2016-09-05 12:11:22.378 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" completed keep alive response. +2016-09-05 12:11:22.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 3681.0146ms +2016-09-05 12:11:22.469 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 12:11:22.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:22.471 +05:30 [Information] Request finished in 4035.9057ms 200 application/json; charset=utf-8 +2016-09-05 12:11:22.473 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:22.473 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" completed keep alive response. +2016-09-05 12:11:22.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 12:11:22.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 12:11:22.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:22.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 12:11:22.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 12:11:22.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 12:11:22.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:22.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 3849.7035ms +2016-09-05 12:11:22.536 +05:30 [Information] Request finished in 4102.0147ms 200 application/json; charset=utf-8 +2016-09-05 12:11:22.537 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" completed keep alive response. +2016-09-05 12:11:22.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-05 12:11:22.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-05 12:11:22.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-05 12:11:23.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:23.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:23.707 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:23.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:23.709 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:23.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 3181.6543ms +2016-09-05 12:11:23.715 +05:30 [Information] Request finished in 3196.9977ms 200 application/json; charset=utf-8 +2016-09-05 12:11:23.716 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" completed keep alive response. +2016-09-05 12:11:23.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:11:23.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:23.945 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:23.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:23.947 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:23.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 2287.746ms +2016-09-05 12:11:23.953 +05:30 [Information] Request finished in 2301.3549ms 200 application/json; charset=utf-8 +2016-09-05 12:11:23.953 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" completed keep alive response. +2016-09-05 12:11:24.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:11:24.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:24.904 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:24.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:11:24.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:24.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 3218.9732ms +2016-09-05 12:11:24.928 +05:30 [Information] Request finished in 3240.0457ms 200 text/plain; charset=utf-8 +2016-09-05 12:11:24.929 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" completed keep alive response. +2016-09-05 12:11:25.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:11:25.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:11:25.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:11:25.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:25.807 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:25.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:11:25.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:25.824 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:25.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:11:25.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:25.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:25.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3354.1674ms +2016-09-05 12:11:25.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3322.8078ms +2016-09-05 12:11:25.870 +05:30 [Information] Request finished in 3414.3957ms 200 text/plain; charset=utf-8 +2016-09-05 12:11:25.871 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" completed keep alive response. +2016-09-05 12:11:25.910 +05:30 [Information] Request finished in 3412.688ms 200 text/plain; charset=utf-8 +2016-09-05 12:11:25.915 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" completed keep alive response. +2016-09-05 12:11:27.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:11:27.592 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:11:27.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:11:27.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:11:27.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5047.3195ms +2016-09-05 12:11:27.604 +05:30 [Information] Request finished in 5058.9127ms 200 application/json; charset=utf-8 +2016-09-05 12:11:27.606 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" completed keep alive response. +2016-09-05 12:13:03.740 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" received FIN. +2016-09-05 12:13:03.740 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" received FIN. +2016-09-05 12:13:03.741 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" disconnecting. +2016-09-05 12:13:03.741 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" received FIN. +2016-09-05 12:13:03.742 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" received FIN. +2016-09-05 12:13:03.743 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" received FIN. +2016-09-05 12:13:03.744 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" received FIN. +2016-09-05 12:13:03.743 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" disconnecting. +2016-09-05 12:13:03.744 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" disconnecting. +2016-09-05 12:13:03.745 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" disconnecting. +2016-09-05 12:13:03.744 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" started. +2016-09-05 12:13:03.744 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" disconnecting. +2016-09-05 12:13:03.742 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" disconnecting. +2016-09-05 12:13:03.747 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" sending FIN. +2016-09-05 12:13:03.747 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" sending FIN. +2016-09-05 12:13:03.751 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" sending FIN. +2016-09-05 12:13:03.752 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" sending FIN. +2016-09-05 12:13:03.753 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" sent FIN with status "0". +2016-09-05 12:13:03.751 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" sending FIN. +2016-09-05 12:13:03.754 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" sending FIN. +2016-09-05 12:13:03.754 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" sent FIN with status "0". +2016-09-05 12:13:03.755 +05:30 [Debug] Connection id ""0HKULAQL3HL36"" stopped. +2016-09-05 12:13:03.756 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" sent FIN with status "0". +2016-09-05 12:13:03.753 +05:30 [Debug] Connection id ""0HKULAQL3HL35"" stopped. +2016-09-05 12:13:03.756 +05:30 [Debug] Connection id ""0HKULAQL3HL38"" stopped. +2016-09-05 12:13:03.757 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" sent FIN with status "0". +2016-09-05 12:13:03.759 +05:30 [Debug] Connection id ""0HKULAQL3HL39"" stopped. +2016-09-05 12:13:03.759 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" sent FIN with status "0". +2016-09-05 12:13:03.760 +05:30 [Debug] Connection id ""0HKULAQL3HL37"" stopped. +2016-09-05 12:13:03.758 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" sent FIN with status "0". +2016-09-05 12:13:03.761 +05:30 [Debug] Connection id ""0HKULAQL3HL34"" stopped. +2016-09-05 12:13:03.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 12:13:03.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 12:13:03.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 12:13:06.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:06.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:06.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:06.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:06.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3204.7821ms +2016-09-05 12:13:06.982 +05:30 [Information] Request finished in 3233.1424ms 200 application/json; charset=utf-8 +2016-09-05 12:13:06.983 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" completed keep alive response. +2016-09-05 12:13:06.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 12:13:06.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 12:13:06.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 12:13:10.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:10.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:10.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:10.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:10.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3173.2836ms +2016-09-05 12:13:10.171 +05:30 [Information] Request finished in 3182.0016ms 200 application/json; charset=utf-8 +2016-09-05 12:13:10.172 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" completed keep alive response. +2016-09-05 12:13:13.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 12:13:13.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 12:13:13.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 12:13:14.114 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" started. +2016-09-05 12:13:14.115 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" started. +2016-09-05 12:13:14.118 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" started. +2016-09-05 12:13:14.118 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" started. +2016-09-05 12:13:14.119 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" started. +2016-09-05 12:13:14.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 12:13:14.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 12:13:14.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 12:13:14.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 12:13:14.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 12:13:14.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 12:13:14.238 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 12:13:14.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 12:13:14.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 12:13:14.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 12:13:14.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 12:13:14.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 12:13:14.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 12:13:14.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 12:13:14.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 12:13:16.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:16.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:16.744 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:16.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:16.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:16.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 2442.3711ms +2016-09-05 12:13:16.752 +05:30 [Information] Request finished in 2513.2507ms 200 application/json; charset=utf-8 +2016-09-05 12:13:16.753 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" completed keep alive response. +2016-09-05 12:13:16.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-05 12:13:16.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-05 12:13:16.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-05 12:13:16.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:16.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:16.973 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:16.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:16.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:16.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3263.8246ms +2016-09-05 12:13:16.981 +05:30 [Information] Request finished in 3270.6732ms 200 application/json; charset=utf-8 +2016-09-05 12:13:16.982 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" completed keep alive response. +2016-09-05 12:13:16.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 12:13:16.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 12:13:16.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 12:13:17.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:17.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:17.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:17.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:17.952 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:17.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:17.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:18.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:18.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 3829.9729ms +2016-09-05 12:13:18.174 +05:30 [Information] Request finished in 4027.8343ms 200 application/json; charset=utf-8 +2016-09-05 12:13:18.175 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" completed keep alive response. +2016-09-05 12:13:18.280 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-05 12:13:18.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-05 12:13:18.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-05 12:13:18.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:18.327 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:18.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:18.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:18.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:18.475 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:18.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:18.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 4171.1797ms +2016-09-05 12:13:18.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:18.483 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:18.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:18.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:18.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:18.491 +05:30 [Information] Request finished in 4369.1396ms 200 application/json; charset=utf-8 +2016-09-05 12:13:18.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 4187.3604ms +2016-09-05 12:13:18.498 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" completed keep alive response. +2016-09-05 12:13:18.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 4349.441ms +2016-09-05 12:13:18.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 12:13:18.547 +05:30 [Information] Request finished in 4398.2761ms 200 application/json; charset=utf-8 +2016-09-05 12:13:18.550 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" completed keep alive response. +2016-09-05 12:13:18.548 +05:30 [Information] Request finished in 4313.6706ms 200 application/json; charset=utf-8 +2016-09-05 12:13:18.552 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" completed keep alive response. +2016-09-05 12:13:18.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 12:13:18.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 12:13:18.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 12:13:18.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 12:13:18.600 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-05 12:13:18.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 12:13:18.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-05 12:13:18.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-05 12:13:20.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:13:20.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:20.373 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:20.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:20.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:20.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 3383.2075ms +2016-09-05 12:13:20.380 +05:30 [Information] Request finished in 3391.6706ms 200 application/json; charset=utf-8 +2016-09-05 12:13:20.381 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" completed keep alive response. +2016-09-05 12:13:20.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:13:20.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:20.760 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:20.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:13:20.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:20.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 2205.7735ms +2016-09-05 12:13:20.781 +05:30 [Information] Request finished in 2273.1993ms 200 text/plain; charset=utf-8 +2016-09-05 12:13:20.784 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" completed keep alive response. +2016-09-05 12:13:21.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:13:21.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:21.606 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:21.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:13:21.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:21.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 3330.0304ms +2016-09-05 12:13:21.617 +05:30 [Information] Request finished in 3389.2013ms 200 text/plain; charset=utf-8 +2016-09-05 12:13:21.617 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" completed keep alive response. +2016-09-05 12:13:21.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:21.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 12:13:21.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:21.904 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:21.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 12:13:21.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:21.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3302.6753ms +2016-09-05 12:13:21.915 +05:30 [Information] Request finished in 3354.0455ms 200 text/plain; charset=utf-8 +2016-09-05 12:13:21.916 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" completed keep alive response. +2016-09-05 12:13:23.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:23.823 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:23.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:23.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:23.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5219.8609ms +2016-09-05 12:13:23.836 +05:30 [Information] Request finished in 5265.9058ms 200 application/json; charset=utf-8 +2016-09-05 12:13:23.837 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" completed keep alive response. +2016-09-05 12:13:24.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 12:13:24.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 12:13:24.158 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 12:13:24.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 12:13:24.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 12:13:24.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 7403.9ms +2016-09-05 12:13:24.177 +05:30 [Information] Request finished in 7412.1702ms 200 application/json; charset=utf-8 +2016-09-05 12:13:24.180 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" completed keep alive response. +2016-09-05 12:16:18.900 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" received FIN. +2016-09-05 12:16:18.901 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" received FIN. +2016-09-05 12:16:18.901 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" disconnecting. +2016-09-05 12:16:18.902 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" received FIN. +2016-09-05 12:16:18.902 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" disconnecting. +2016-09-05 12:16:18.906 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" sending FIN. +2016-09-05 12:16:18.909 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" sending FIN. +2016-09-05 12:16:18.906 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" disconnecting. +2016-09-05 12:16:18.905 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" received FIN. +2016-09-05 12:16:18.915 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" received FIN. +2016-09-05 12:16:18.915 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" received FIN. +2016-09-05 12:16:18.917 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" disconnecting. +2016-09-05 12:16:18.917 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" sending FIN. +2016-09-05 12:16:18.915 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" disconnecting. +2016-09-05 12:16:18.918 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" sent FIN with status "0". +2016-09-05 12:16:18.913 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" sent FIN with status "0". +2016-09-05 12:16:18.921 +05:30 [Debug] Connection id ""0HKULAQL3HL3D"" stopped. +2016-09-05 12:16:18.922 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" sent FIN with status "0". +2016-09-05 12:16:18.922 +05:30 [Debug] Connection id ""0HKULAQL3HL3A"" stopped. +2016-09-05 12:16:18.923 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" sending FIN. +2016-09-05 12:16:18.916 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" disconnecting. +2016-09-05 12:16:18.920 +05:30 [Debug] Connection id ""0HKULAQL3HL3E"" stopped. +2016-09-05 12:16:18.923 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" sent FIN with status "0". +2016-09-05 12:16:18.925 +05:30 [Debug] Connection id ""0HKULAQL3HL3C"" stopped. +2016-09-05 12:16:18.925 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" sending FIN. +2016-09-05 12:16:18.927 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" sending FIN. +2016-09-05 12:16:18.927 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" sent FIN with status "0". +2016-09-05 12:16:18.928 +05:30 [Debug] Connection id ""0HKULAQL3HL3F"" stopped. +2016-09-05 12:16:18.928 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" sent FIN with status "0". +2016-09-05 12:16:18.929 +05:30 [Debug] Connection id ""0HKULAQL3HL3B"" stopped. +2016-09-05 13:01:15.907 +05:30 [Debug] Hosting starting +2016-09-05 13:01:16.178 +05:30 [Debug] Hosting started +2016-09-05 13:01:16.718 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" started. +2016-09-05 13:01:16.717 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" started. +2016-09-05 13:01:17.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2016-09-05 13:01:17.080 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2016-09-05 13:01:17.364 +05:30 [Information] Request finished in 227.5907ms 200 +2016-09-05 13:01:17.697 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" completed keep alive response. +2016-09-05 13:01:18.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2016-09-05 13:01:18.827 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"52f5bb34-a5bf-45b7-85ca-25886e5eb53a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2016-09-05 13:01:19.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2016-09-05 13:01:19.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2016-09-05 13:01:19.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2016-09-05 13:01:19.332 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:01:19.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:01:19.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:01:20.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 885.0517ms +2016-09-05 13:01:20.267 +05:30 [Information] Request finished in 3281.728ms 200 application/json; charset=utf-8 +2016-09-05 13:01:20.271 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" completed keep alive response. +2016-09-05 13:02:05.164 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 13:02:05.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 13:02:05.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 13:02:05.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 52 +2016-09-05 13:02:05.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2016-09-05 13:02:05.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2016-09-05 13:02:08.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 13:02:08.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2016-09-05 13:02:13.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:13.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:13.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:13.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:13.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:13.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:13.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8168.3339ms +2016-09-05 13:02:13.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8177.0989ms +2016-09-05 13:02:13.370 +05:30 [Information] Request finished in 8206.4773ms 200 application/json; charset=utf-8 +2016-09-05 13:02:13.371 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" completed keep alive response. +2016-09-05 13:02:13.374 +05:30 [Information] Request finished in 8241.2591ms 200 application/json; charset=utf-8 +2016-09-05 13:02:13.376 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" completed keep alive response. +2016-09-05 13:02:13.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 13:02:13.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 13:02:13.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 13:02:16.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:17.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:17.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:17.225 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:17.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3331.399ms +2016-09-05 13:02:17.246 +05:30 [Information] Request finished in 3340.7899ms 200 application/json; charset=utf-8 +2016-09-05 13:02:17.247 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" completed keep alive response. +2016-09-05 13:02:17.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 13:02:17.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 13:02:17.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 13:02:20.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:20.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:20.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:20.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:20.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3178.0323ms +2016-09-05 13:02:20.543 +05:30 [Information] Request finished in 3212.6983ms 200 application/json; charset=utf-8 +2016-09-05 13:02:20.543 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" completed keep alive response. +2016-09-05 13:02:32.391 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 13:02:32.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 13:02:32.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 13:02:32.519 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" started. +2016-09-05 13:02:32.522 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" started. +2016-09-05 13:02:32.527 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" started. +2016-09-05 13:02:32.530 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" started. +2016-09-05 13:02:32.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 13:02:32.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 13:02:32.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 13:02:32.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 13:02:32.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 13:02:32.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 13:02:32.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 13:02:32.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 13:02:32.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 13:02:32.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 13:02:32.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 13:02:32.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 13:02:33.422 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 13:02:33.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 13:02:33.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 13:02:36.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.414 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:36.415 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:36.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:36.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:36.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:36.542 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:36.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:36.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 3989.0176ms +2016-09-05 13:02:36.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:36.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:36.624 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:36.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:36.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:36.712 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:36.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:36.712 +05:30 [Information] Request finished in 4121.2174ms 200 application/json; charset=utf-8 +2016-09-05 13:02:36.715 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" completed keep alive response. +2016-09-05 13:02:36.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:36.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:36.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4316.1845ms +2016-09-05 13:02:36.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:36.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 4335.794ms +2016-09-05 13:02:36.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 4348.2296ms +2016-09-05 13:02:37.024 +05:30 [Information] Request finished in 4562.3192ms 200 application/json; charset=utf-8 +2016-09-05 13:02:37.025 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" completed keep alive response. +2016-09-05 13:02:37.055 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-05 13:02:37.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-05 13:02:37.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-05 13:02:37.061 +05:30 [Information] Request finished in 4461.7282ms 200 application/json; charset=utf-8 +2016-09-05 13:02:37.062 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" completed keep alive response. +2016-09-05 13:02:37.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:37.063 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:37.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:37.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 13:02:37.188 +05:30 [Information] Request finished in 4545.1471ms 200 application/json; charset=utf-8 +2016-09-05 13:02:37.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 13:02:37.189 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-05 13:02:37.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:37.194 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" completed keep alive response. +2016-09-05 13:02:37.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-05 13:02:37.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 13:02:37.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-05 13:02:37.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 13:02:37.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 13:02:37.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 13:02:37.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 4738.2367ms +2016-09-05 13:02:37.320 +05:30 [Information] Request finished in 4788.0685ms 200 application/json; charset=utf-8 +2016-09-05 13:02:37.321 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" completed keep alive response. +2016-09-05 13:02:37.386 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 13:02:37.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:37.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 13:02:37.390 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:37.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:37.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:37.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 13:02:37.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 3999.3023ms +2016-09-05 13:02:37.430 +05:30 [Information] Request finished in 4007.8574ms 200 application/json; charset=utf-8 +2016-09-05 13:02:37.430 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" completed keep alive response. +2016-09-05 13:02:37.435 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-05 13:02:37.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-05 13:02:37.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-05 13:02:40.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:40.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:40.354 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:40.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:40.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:40.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:02:40.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 3495.4542ms +2016-09-05 13:02:40.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:02:40.657 +05:30 [Information] Request finished in 3882.949ms 200 application/json; charset=utf-8 +2016-09-05 13:02:40.665 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" completed keep alive response. +2016-09-05 13:02:40.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:02:40.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:02:40.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:02:40.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:40.844 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:40.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:02:40.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:40.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3572.8976ms +2016-09-05 13:02:40.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:40.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:40.898 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:40.899 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:40.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:40.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:02:40.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:40.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:40.925 +05:30 [Information] Request finished in 3689.1204ms 200 text/plain; charset=utf-8 +2016-09-05 13:02:40.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 3681.8464ms +2016-09-05 13:02:40.931 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" completed keep alive response. +2016-09-05 13:02:40.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3519.7116ms +2016-09-05 13:02:40.943 +05:30 [Information] Request finished in 3877.9989ms 200 application/json; charset=utf-8 +2016-09-05 13:02:40.948 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" completed keep alive response. +2016-09-05 13:02:40.974 +05:30 [Information] Request finished in 3599.2807ms 200 text/plain; charset=utf-8 +2016-09-05 13:02:40.981 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" completed keep alive response. +2016-09-05 13:02:41.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:41.982 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:41.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:02:41.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:41.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 4751.564ms +2016-09-05 13:02:41.990 +05:30 [Information] Request finished in 4885.3767ms 200 text/plain; charset=utf-8 +2016-09-05 13:02:41.991 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" completed keep alive response. +2016-09-05 13:02:43.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:02:43.123 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:02:43.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:02:43.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:02:43.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5693.6058ms +2016-09-05 13:02:43.142 +05:30 [Information] Request finished in 5703.9273ms 200 application/json; charset=utf-8 +2016-09-05 13:02:43.143 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" completed keep alive response. +2016-09-05 13:04:40.244 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" received FIN. +2016-09-05 13:04:40.245 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" received FIN. +2016-09-05 13:04:40.245 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" received FIN. +2016-09-05 13:04:40.246 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" disconnecting. +2016-09-05 13:04:40.247 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" disconnecting. +2016-09-05 13:04:40.246 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" disconnecting. +2016-09-05 13:04:40.249 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" received FIN. +2016-09-05 13:04:40.249 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" received FIN. +2016-09-05 13:04:40.250 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" received FIN. +2016-09-05 13:04:40.252 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" sending FIN. +2016-09-05 13:04:40.251 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" disconnecting. +2016-09-05 13:04:40.251 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" disconnecting. +2016-09-05 13:04:40.260 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" sending FIN. +2016-09-05 13:04:40.259 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" sending FIN. +2016-09-05 13:04:40.261 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" sending FIN. +2016-09-05 13:04:40.261 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" sending FIN. +2016-09-05 13:04:40.257 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" disconnecting. +2016-09-05 13:04:40.266 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" sent FIN with status "0". +2016-09-05 13:04:40.266 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" sent FIN with status "0". +2016-09-05 13:04:40.268 +05:30 [Debug] Connection id ""0HKULBQFM0S3L"" stopped. +2016-09-05 13:04:40.268 +05:30 [Debug] Connection id ""0HKULBQFM0S3K"" stopped. +2016-09-05 13:04:40.269 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" sent FIN with status "0". +2016-09-05 13:04:40.270 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" sent FIN with status "0". +2016-09-05 13:04:40.270 +05:30 [Debug] Connection id ""0HKULBQFM0S3J"" stopped. +2016-09-05 13:04:40.273 +05:30 [Debug] Connection id ""0HKULBQFM0S3I"" stopped. +2016-09-05 13:04:40.274 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" sending FIN. +2016-09-05 13:04:40.274 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" sent FIN with status "0". +2016-09-05 13:04:40.273 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" sent FIN with status "0". +2016-09-05 13:04:40.275 +05:30 [Debug] Connection id ""0HKULBQFM0S3M"" stopped. +2016-09-05 13:04:40.275 +05:30 [Debug] Connection id ""0HKULBQFM0S3N"" stopped. +2016-09-05 13:04:40.276 +05:30 [Debug] Connection id ""0HKULBQFM0S3O"" started. +2016-09-05 13:04:40.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2016-09-05 13:04:40.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2016-09-05 13:04:40.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2016-09-05 13:04:43.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:43.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:43.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:43.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:43.406 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3123.3501ms +2016-09-05 13:04:43.409 +05:30 [Information] Request finished in 3131.2014ms 200 application/json; charset=utf-8 +2016-09-05 13:04:43.410 +05:30 [Debug] Connection id ""0HKULBQFM0S3O"" completed keep alive response. +2016-09-05 13:04:43.430 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2016-09-05 13:04:43.431 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2016-09-05 13:04:43.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2016-09-05 13:04:46.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:46.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:46.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:46.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:46.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3120.3087ms +2016-09-05 13:04:46.559 +05:30 [Information] Request finished in 3140.4388ms 200 application/json; charset=utf-8 +2016-09-05 13:04:46.560 +05:30 [Debug] Connection id ""0HKULBQFM0S3O"" completed keep alive response. +2016-09-05 13:04:48.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2016-09-05 13:04:48.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2016-09-05 13:04:48.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2016-09-05 13:04:49.503 +05:30 [Debug] Connection id ""0HKULBQFM0S3P"" started. +2016-09-05 13:04:49.511 +05:30 [Debug] Connection id ""0HKULBQFM0S3Q"" started. +2016-09-05 13:04:49.511 +05:30 [Debug] Connection id ""0HKULBQFM0S3R"" started. +2016-09-05 13:04:49.513 +05:30 [Debug] Connection id ""0HKULBQFM0S3S"" started. +2016-09-05 13:04:49.533 +05:30 [Debug] Connection id ""0HKULBQFM0S3T"" started. +2016-09-05 13:04:49.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGplusProfiles?groupId=1 +2016-09-05 13:04:49.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGplusProfiles"'. +2016-09-05 13:04:49.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" +2016-09-05 13:04:49.555 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Instagram/GetInstagramProfiles?groupId=1 +2016-09-05 13:04:49.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetGAProfiles?groupId=1 +2016-09-05 13:04:49.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/GetInstagramProfiles"'. +2016-09-05 13:04:49.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" +2016-09-05 13:04:49.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetGAProfiles"'. +2016-09-05 13:04:49.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" +2016-09-05 13:04:50.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetTwitterProfiles?groupId=1 +2016-09-05 13:04:50.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetTwitterProfiles"'. +2016-09-05 13:04:50.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" +2016-09-05 13:04:51.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfiles?groupId=1 +2016-09-05 13:04:51.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfiles"'. +2016-09-05 13:04:51.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" +2016-09-05 13:04:54.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:54.316 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:54.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:54.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:54.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGAProfiles (Api.Socioboard)" in 4835.2369ms +2016-09-05 13:04:54.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:54.569 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:54.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:54.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:54.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:54.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:54.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:54.710 +05:30 [Information] Request finished in 5083.1263ms 200 application/json; charset=utf-8 +2016-09-05 13:04:54.693 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:54.711 +05:30 [Debug] Connection id ""0HKULBQFM0S3S"" completed keep alive response. +2016-09-05 13:04:54.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:54.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetGplusProfiles (Api.Socioboard)" in 5141.826ms +2016-09-05 13:04:54.711 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:54.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:54.761 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/LinkedIn/GetLinkedInCompanyPagesProfiles?groupId=1 +2016-09-05 13:04:54.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/GetLinkedInCompanyPagesProfiles"'. +2016-09-05 13:04:54.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" +2016-09-05 13:04:54.798 +05:30 [Information] Request finished in 5254.7408ms 200 application/json; charset=utf-8 +2016-09-05 13:04:54.799 +05:30 [Debug] Connection id ""0HKULBQFM0S3P"" completed keep alive response. +2016-09-05 13:04:54.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:54.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:54.841 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:54.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:54.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:54.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/SocialMessages/GetAllSentMessagesCount?groupId=1&userId=1 +2016-09-05 13:04:54.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:54.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/GetAllSentMessagesCount"'. +2016-09-05 13:04:54.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5867.1528ms +2016-09-05 13:04:54.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" +2016-09-05 13:04:54.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.GetInstagramProfiles (Api.Socioboard)" in 5300.8866ms +2016-09-05 13:04:54.918 +05:30 [Information] Request finished in 5919.0581ms 200 application/json; charset=utf-8 +2016-09-05 13:04:54.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetTwitterProfiles (Api.Socioboard)" in 4257.4241ms +2016-09-05 13:04:54.922 +05:30 [Debug] Connection id ""0HKULBQFM0S3O"" completed keep alive response. +2016-09-05 13:04:54.941 +05:30 [Information] Request finished in 5387.4356ms 200 application/json; charset=utf-8 +2016-09-05 13:04:54.958 +05:30 [Debug] Connection id ""0HKULBQFM0S3R"" completed keep alive response. +2016-09-05 13:04:54.959 +05:30 [Information] Request finished in 4362.65ms 200 application/json; charset=utf-8 +2016-09-05 13:04:54.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetIncommingMessage?groupId=1&userId=1 +2016-09-05 13:04:54.968 +05:30 [Debug] Connection id ""0HKULBQFM0S3T"" completed keep alive response. +2016-09-05 13:04:54.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetIncommingMessage"'. +2016-09-05 13:04:54.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" +2016-09-05 13:04:55.015 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterFollowerCount?groupId=1&userId=1 +2016-09-05 13:04:55.054 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/FacebookfanPageCount?groupId=1&userId=1 +2016-09-05 13:04:55.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/FacebookfanPageCount"'. +2016-09-05 13:04:55.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:55.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterFollowerCount"'. +2016-09-05 13:04:55.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" +2016-09-05 13:04:55.065 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:55.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" +2016-09-05 13:04:55.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:55.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:55.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfiles (Api.Socioboard)" in 3910.2705ms +2016-09-05 13:04:55.091 +05:30 [Information] Request finished in 3927.7031ms 200 application/json; charset=utf-8 +2016-09-05 13:04:55.092 +05:30 [Debug] Connection id ""0HKULBQFM0S3Q"" completed keep alive response. +2016-09-05 13:04:55.095 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2016-09-05 13:04:55.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2016-09-05 13:04:55.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2016-09-05 13:04:56.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:56.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:56.119 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:56.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:56.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:56.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.GetLinkedInCompanyPagesProfiles (Api.Socioboard)" in 1358.2205ms +2016-09-05 13:04:56.135 +05:30 [Information] Request finished in 1401.6303ms 200 application/json; charset=utf-8 +2016-09-05 13:04:56.135 +05:30 [Debug] Connection id ""0HKULBQFM0S3S"" completed keep alive response. +2016-09-05 13:04:57.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:04:57.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:57.139 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:57.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:57.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:57.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.GetAllSentMessagesCount (Api.Socioboard)" in 2260.9245ms +2016-09-05 13:04:57.145 +05:30 [Information] Request finished in 2308.3141ms 200 application/json; charset=utf-8 +2016-09-05 13:04:57.146 +05:30 [Debug] Connection id ""0HKULBQFM0S3P"" completed keep alive response. +2016-09-05 13:04:57.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:04:58.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:04:58.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:04:58.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2016-09-05 13:04:58.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:58.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:58.341 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:58.341 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:58.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:04:58.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:04:58.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:58.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:58.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:58.368 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:58.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.FacebookfanPageCount (Api.Socioboard)" in 3274.593ms +2016-09-05 13:04:58.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2016-09-05 13:04:58.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetIncommingMessage (Api.Socioboard)" in 3372.243ms +2016-09-05 13:04:58.393 +05:30 [Information] Request finished in 3416.1176ms 200 text/plain; charset=utf-8 +2016-09-05 13:04:58.395 +05:30 [Debug] Connection id ""0HKULBQFM0S3T"" completed keep alive response. +2016-09-05 13:04:58.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:58.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterFollowerCount (Api.Socioboard)" in 3321.417ms +2016-09-05 13:04:58.409 +05:30 [Information] Request finished in 3462.5749ms 200 text/plain; charset=utf-8 +2016-09-05 13:04:58.410 +05:30 [Debug] Connection id ""0HKULBQFM0S3O"" completed keep alive response. +2016-09-05 13:04:58.415 +05:30 [Information] Request finished in 3444.5419ms 200 text/plain; charset=utf-8 +2016-09-05 13:04:58.416 +05:30 [Debug] Connection id ""0HKULBQFM0S3R"" completed keep alive response. +2016-09-05 13:04:59.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:04:59.126 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:04:59.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:04:59.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:04:59.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4028.2845ms +2016-09-05 13:04:59.135 +05:30 [Information] Request finished in 4040.0985ms 200 application/json; charset=utf-8 +2016-09-05 13:04:59.136 +05:30 [Debug] Connection id ""0HKULBQFM0S3Q"" completed keep alive response. +2016-09-05 13:05:06.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2016-09-05 13:05:06.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2016-09-05 13:05:06.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2016-09-05 13:05:09.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2016-09-05 13:05:09.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2016-09-05 13:05:09.894 +05:30 [Debug] No information found on request to perform content negotiation. +2016-09-05 13:05:09.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2016-09-05 13:05:09.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2016-09-05 13:05:09.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3336.851ms +2016-09-05 13:05:09.923 +05:30 [Information] Request finished in 3357.851ms 200 application/json; charset=utf-8 +2016-09-05 13:05:09.925 +05:30 [Debug] Connection id ""0HKULBQFM0S3S"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170710.txt b/src/Api.Socioboard/wwwroot/log/log-20170710.txt index 9368840a6..6a3b79f22 100644 --- a/src/Api.Socioboard/wwwroot/log/log-20170710.txt +++ b/src/Api.Socioboard/wwwroot/log/log-20170710.txt @@ -335,3 +335,9405 @@ 2017-07-10 11:38:10.124 +05:30 [Debug] Connection id ""0HL67B5TKMSNM"" stopped. 2017-07-10 11:38:10.127 +05:30 [Debug] Connection id ""0HL67B5TKMSNP"" sent FIN with status "0". 2017-07-10 11:38:10.127 +05:30 [Debug] Connection id ""0HL67B5TKMSNP"" stopped. +2017-07-10 13:15:07.472 +05:30 [Debug] Hosting starting +2017-07-10 13:15:07.713 +05:30 [Debug] Hosting started +2017-07-10 13:15:07.753 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" started. +2017-07-10 13:15:07.824 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" started. +2017-07-10 13:15:07.896 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-10 13:15:07.896 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-10 13:15:08.030 +05:30 [Information] Request finished in 117.8531ms 200 +2017-07-10 13:15:08.085 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:08.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-10 13:15:08.724 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b8a4f5a5-49b2-4e24-8074-c5eb2dcb263b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-10 13:15:08.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-10 13:15:08.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-10 13:15:08.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-10 13:15:09.064 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:09.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:09.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:09.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 606.2407ms +2017-07-10 13:15:09.575 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:15:09.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:15:09.576 +05:30 [Information] Request finished in 1726.6304ms 200 application/json; charset=utf-8 +2017-07-10 13:15:09.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:15:09.580 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:09.629 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-10 13:15:09.635 +05:30 [Debug] Request did not match any routes. +2017-07-10 13:15:09.668 +05:30 [Debug] The request path "" does not match the path filter +2017-07-10 13:15:09.671 +05:30 [Information] Request finished in 41.3317ms 404 +2017-07-10 13:15:09.672 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:13.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:15:17.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:17.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:17.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:17.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7746.2192ms +2017-07-10 13:15:17.333 +05:30 [Information] Request finished in 7760.2047ms 200 application/json; charset=utf-8 +2017-07-10 13:15:17.333 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:17.697 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:15:17.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:15:17.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:15:20.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:15:20.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:20.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:20.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:20.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3271.3199ms +2017-07-10 13:15:20.974 +05:30 [Information] Request finished in 3277.7333ms 200 application/json; charset=utf-8 +2017-07-10 13:15:20.975 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:21.406 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:15:21.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:15:21.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:15:24.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:15:24.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:24.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:24.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:24.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3078.0584ms +2017-07-10 13:15:24.491 +05:30 [Information] Request finished in 3084.8737ms 200 application/json; charset=utf-8 +2017-07-10 13:15:24.492 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:24.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:15:24.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:15:24.499 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:15:27.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:15:27.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:27.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:27.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:27.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3070.0765ms +2017-07-10 13:15:27.575 +05:30 [Information] Request finished in 3078.896ms 200 application/json; charset=utf-8 +2017-07-10 13:15:27.576 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:27.616 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 13:15:27.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 13:15:27.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 13:15:30.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:15:30.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:30.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:30.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:30.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3075.1255ms +2017-07-10 13:15:30.711 +05:30 [Information] Request finished in 3091.5768ms 200 application/json; charset=utf-8 +2017-07-10 13:15:30.713 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:30.756 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 13:15:30.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 13:15:30.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 13:15:33.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:34.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:34.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:34.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:34.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3333.618ms +2017-07-10 13:15:34.128 +05:30 [Information] Request finished in 3379.2897ms 200 application/json; charset=utf-8 +2017-07-10 13:15:34.130 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:34.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 13:15:34.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 13:15:34.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 13:15:37.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:37.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:37.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:37.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:37.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.6996ms +2017-07-10 13:15:37.360 +05:30 [Information] Request finished in 3140.4555ms 200 application/json; charset=utf-8 +2017-07-10 13:15:37.362 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:47.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 13:15:47.374 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 13:15:47.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 13:15:47.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 13:15:47.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 13:15:47.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 13:15:47.896 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" started. +2017-07-10 13:15:47.896 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" started. +2017-07-10 13:15:47.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 13:15:47.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 13:15:47.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 13:15:47.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 13:15:47.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 13:15:47.905 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 13:15:47.909 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" started. +2017-07-10 13:15:47.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 13:15:47.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 13:15:47.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 13:15:48.955 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" started. +2017-07-10 13:15:49.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:15:49.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:15:49.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:15:51.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:51.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:51.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:51.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:51.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:51.667 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:51.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:51.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:51.708 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:51.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:51.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:51.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:51.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:51.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:51.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:51.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4366.8188ms +2017-07-10 13:15:51.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:51.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4406.207ms +2017-07-10 13:15:51.836 +05:30 [Information] Request finished in 4470.5276ms 200 application/json; charset=utf-8 +2017-07-10 13:15:51.839 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:51.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3897.683ms +2017-07-10 13:15:51.848 +05:30 [Information] Request finished in 4494.1765ms 200 application/json; charset=utf-8 +2017-07-10 13:15:51.849 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:15:51.853 +05:30 [Information] Request finished in 3951.0401ms 200 application/json; charset=utf-8 +2017-07-10 13:15:51.854 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" completed keep alive response. +2017-07-10 13:15:52.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:52.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:52.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:52.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:52.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4244.596ms +2017-07-10 13:15:52.154 +05:30 [Information] Request finished in 4255.392ms 200 application/json; charset=utf-8 +2017-07-10 13:15:52.156 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" completed keep alive response. +2017-07-10 13:15:52.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:15:52.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:15:52.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:52.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:52.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:52.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3309.8048ms +2017-07-10 13:15:52.498 +05:30 [Information] Request finished in 3317.6051ms 200 application/json; charset=utf-8 +2017-07-10 13:15:52.499 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" completed keep alive response. +2017-07-10 13:15:52.502 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:15:52.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:15:52.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:15:54.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:54.336 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:15:54.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:54.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:54.344 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6380.0581ms +2017-07-10 13:15:54.346 +05:30 [Information] Request finished in 6399.8786ms 200 application/json; charset=utf-8 +2017-07-10 13:15:54.347 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" completed keep alive response. +2017-07-10 13:15:55.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:15:55.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:55.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:55.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:55.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3085.8302ms +2017-07-10 13:15:55.592 +05:30 [Information] Request finished in 3090.958ms 200 application/json; charset=utf-8 +2017-07-10 13:15:55.592 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" completed keep alive response. +2017-07-10 13:15:55.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 13:15:55.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 13:15:55.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 13:15:58.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 13:15:58.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:15:58.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:15:58.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:15:58.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3174.884ms +2017-07-10 13:15:58.787 +05:30 [Information] Request finished in 3180.9279ms 200 application/json; charset=utf-8 +2017-07-10 13:15:58.788 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" completed keep alive response. +2017-07-10 13:16:07.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Billing/CurrentPlanDetails?userid=1 +2017-07-10 13:16:07.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Billing/CurrentPlanDetails"'. +2017-07-10 13:16:07.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BillingController.CurrentPlanDetails (Api.Socioboard)" +2017-07-10 13:16:09.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BillingController.CurrentPlanDetails (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:16:13.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BillingController.CurrentPlanDetails (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:16:13.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:16:13.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:16:13.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:16:13.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BillingController.CurrentPlanDetails (Api.Socioboard)" in 6230.0056ms +2017-07-10 13:16:13.803 +05:30 [Information] Request finished in 6236.8898ms 200 application/json; charset=utf-8 +2017-07-10 13:16:13.804 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" completed keep alive response. +2017-07-10 13:16:16.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:16:16.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:16:16.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:16:19.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:16:19.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:16:19.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:16:19.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:16:19.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.2606ms +2017-07-10 13:16:19.349 +05:30 [Information] Request finished in 3054.7346ms 200 application/json; charset=utf-8 +2017-07-10 13:16:19.350 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" completed keep alive response. +2017-07-10 13:16:19.353 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:16:19.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:16:19.356 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:16:22.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:16:22.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:16:22.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:16:22.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:16:22.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3078.0266ms +2017-07-10 13:16:22.438 +05:30 [Information] Request finished in 3086.3221ms 200 application/json; charset=utf-8 +2017-07-10 13:16:22.439 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" completed keep alive response. +2017-07-10 13:17:07.727 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" received FIN. +2017-07-10 13:17:07.727 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" received FIN. +2017-07-10 13:17:07.732 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" disconnecting. +2017-07-10 13:17:07.733 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" disconnecting. +2017-07-10 13:17:07.733 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" received FIN. +2017-07-10 13:17:07.738 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" sending FIN. +2017-07-10 13:17:07.744 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" sending FIN. +2017-07-10 13:17:07.744 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" disconnecting. +2017-07-10 13:17:07.751 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" sent FIN with status "0". +2017-07-10 13:17:07.751 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" sent FIN with status "0". +2017-07-10 13:17:07.754 +05:30 [Debug] Connection id ""0HL67CUAV5QHD"" stopped. +2017-07-10 13:17:07.754 +05:30 [Debug] Connection id ""0HL67CUAV5QHG"" stopped. +2017-07-10 13:17:07.755 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" sending FIN. +2017-07-10 13:17:07.756 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" sent FIN with status "0". +2017-07-10 13:17:07.757 +05:30 [Debug] Connection id ""0HL67CUAV5QHC"" stopped. +2017-07-10 13:19:07.725 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" received FIN. +2017-07-10 13:19:07.726 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" received FIN. +2017-07-10 13:19:07.726 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" disconnecting. +2017-07-10 13:19:07.726 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" disconnecting. +2017-07-10 13:19:07.728 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" received FIN. +2017-07-10 13:19:07.734 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" sending FIN. +2017-07-10 13:19:07.740 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" sending FIN. +2017-07-10 13:19:07.740 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" sent FIN with status "0". +2017-07-10 13:19:07.741 +05:30 [Debug] Connection id ""0HL67CUAV5QHH"" stopped. +2017-07-10 13:19:07.741 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" sent FIN with status "0". +2017-07-10 13:19:07.742 +05:30 [Debug] Connection id ""0HL67CUAV5QHF"" stopped. +2017-07-10 13:19:07.743 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" disconnecting. +2017-07-10 13:19:07.743 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" sending FIN. +2017-07-10 13:19:07.744 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" sent FIN with status "0". +2017-07-10 13:19:07.744 +05:30 [Debug] Connection id ""0HL67CUAV5QHE"" stopped. +2017-07-10 13:20:16.520 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" started. +2017-07-10 13:20:16.523 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" started. +2017-07-10 13:20:16.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 13:20:16.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 13:20:16.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 13:20:16.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 13:20:16.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 13:20:16.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 13:20:18.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:20:19.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:20:23.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:20:23.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:20:23.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:20:23.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:20:23.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 7376.8955ms +2017-07-10 13:20:23.927 +05:30 [Information] Request finished in 7396.0793ms 200 application/json; charset=utf-8 +2017-07-10 13:20:23.928 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" completed keep alive response. +2017-07-10 13:20:23.998 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" started. +2017-07-10 13:20:24.019 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 13:20:24.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 13:20:24.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 13:20:24.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 13:20:24.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 13:20:24.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 13:20:26.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:20:26.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:20:26.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:20:26.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:20:26.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 10250.4297ms +2017-07-10 13:20:26.800 +05:30 [Information] Request finished in 10276.0336ms 200 application/json; charset=utf-8 +2017-07-10 13:20:26.801 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" completed keep alive response. +2017-07-10 13:20:27.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:20:27.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:20:27.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:20:27.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:20:27.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:20:27.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:20:27.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3319.1657ms +2017-07-10 13:20:27.366 +05:30 [Information] Request finished in 3343.6009ms 200 application/json; charset=utf-8 +2017-07-10 13:20:27.366 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" completed keep alive response. +2017-07-10 13:20:37.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:20:37.853 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:20:37.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:20:37.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:20:37.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 13849.2264ms +2017-07-10 13:20:37.898 +05:30 [Information] Request finished in 13881.2569ms 200 application/json; charset=utf-8 +2017-07-10 13:20:37.900 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" completed keep alive response. +2017-07-10 13:23:07.725 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" received FIN. +2017-07-10 13:23:07.726 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" disconnecting. +2017-07-10 13:23:07.726 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" sending FIN. +2017-07-10 13:23:07.727 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" sent FIN with status "0". +2017-07-10 13:23:07.727 +05:30 [Debug] Connection id ""0HL67CUAV5QHJ"" stopped. +2017-07-10 13:23:07.728 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" received FIN. +2017-07-10 13:23:07.728 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" received FIN. +2017-07-10 13:23:07.728 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" disconnecting. +2017-07-10 13:23:07.729 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" sending FIN. +2017-07-10 13:23:07.729 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" sent FIN with status "0". +2017-07-10 13:23:07.730 +05:30 [Debug] Connection id ""0HL67CUAV5QHI"" stopped. +2017-07-10 13:23:07.728 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" disconnecting. +2017-07-10 13:23:07.730 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" sending FIN. +2017-07-10 13:23:07.731 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" sent FIN with status "0". +2017-07-10 13:23:07.731 +05:30 [Debug] Connection id ""0HL67CUAV5QHK"" stopped. +2017-07-10 13:43:25.758 +05:30 [Debug] Hosting starting +2017-07-10 13:43:26.029 +05:30 [Debug] Hosting started +2017-07-10 13:43:26.084 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" started. +2017-07-10 13:43:26.162 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" started. +2017-07-10 13:43:26.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-10 13:43:26.302 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-10 13:43:26.396 +05:30 [Information] Request finished in 144.5376ms 200 +2017-07-10 13:43:26.467 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:43:27.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-10 13:43:27.248 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e61c60f6-68b1-4bfa-ac5e-3910a0fa4e8b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-10 13:43:27.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-10 13:43:27.501 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-10 13:43:27.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-10 13:43:27.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:43:27.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:27.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:27.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 595.7502ms +2017-07-10 13:43:28.050 +05:30 [Information] Request finished in 1815.0343ms 200 application/json; charset=utf-8 +2017-07-10 13:43:28.052 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:43:28.194 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:43:28.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:43:28.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:43:31.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:43:36.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:36.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:36.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:37.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8787.8771ms +2017-07-10 13:43:37.042 +05:30 [Information] Request finished in 8847.6422ms 200 application/json; charset=utf-8 +2017-07-10 13:43:37.043 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:43:37.688 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:43:37.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:43:37.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:43:40.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:43:40.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:40.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:40.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:41.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3318.5363ms +2017-07-10 13:43:41.013 +05:30 [Information] Request finished in 3327.3046ms 200 application/json; charset=utf-8 +2017-07-10 13:43:41.013 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:43:41.603 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:43:41.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:43:41.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:43:44.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:43:44.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:44.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:44.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:44.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.0862ms +2017-07-10 13:43:44.691 +05:30 [Information] Request finished in 3091.6324ms 200 application/json; charset=utf-8 +2017-07-10 13:43:44.692 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:43:44.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:43:44.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:43:44.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:43:47.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:43:47.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:47.832 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:47.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:47.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3144.8124ms +2017-07-10 13:43:47.849 +05:30 [Information] Request finished in 3153.2505ms 200 application/json; charset=utf-8 +2017-07-10 13:43:47.850 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:43:47.915 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 13:43:47.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 13:43:47.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 13:43:50.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:43:50.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:50.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:50.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:50.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3060.2836ms +2017-07-10 13:43:50.982 +05:30 [Information] Request finished in 3079.2337ms 200 application/json; charset=utf-8 +2017-07-10 13:43:50.983 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:43:51.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 13:43:51.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 13:43:51.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 13:43:54.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:43:54.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:54.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:54.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:54.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3352.3553ms +2017-07-10 13:43:54.380 +05:30 [Information] Request finished in 3366.1445ms 200 application/json; charset=utf-8 +2017-07-10 13:43:54.381 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:43:54.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 13:43:54.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 13:43:54.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 13:43:57.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:43:57.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:43:57.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:43:57.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:43:57.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3146.7683ms +2017-07-10 13:43:57.672 +05:30 [Information] Request finished in 3193.3442ms 200 application/json; charset=utf-8 +2017-07-10 13:43:57.673 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:44:08.111 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 13:44:08.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 13:44:08.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 13:44:08.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 13:44:08.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 13:44:08.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 13:44:08.665 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" started. +2017-07-10 13:44:08.665 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" started. +2017-07-10 13:44:08.670 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" started. +2017-07-10 13:44:08.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 13:44:08.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 13:44:08.682 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 13:44:08.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 13:44:08.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 13:44:08.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 13:44:08.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 13:44:08.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 13:44:08.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 13:44:09.763 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" started. +2017-07-10 13:44:10.207 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 13:44:10.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 13:44:10.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 13:44:12.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:12.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:12.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:13.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:13.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:13.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:13.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:13.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:13.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:13.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:13.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:13.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:13.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5020.2469ms +2017-07-10 13:44:13.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4425.2323ms +2017-07-10 13:44:13.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:13.191 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:13.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:13.195 +05:30 [Information] Request finished in 5080.2448ms 200 application/json; charset=utf-8 +2017-07-10 13:44:13.194 +05:30 [Information] Request finished in 4498.6737ms 200 application/json; charset=utf-8 +2017-07-10 13:44:13.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:13.214 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" completed keep alive response. +2017-07-10 13:44:13.207 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:44:13.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5100.3467ms +2017-07-10 13:44:13.274 +05:30 [Information] Request finished in 5144.9004ms 200 application/json; charset=utf-8 +2017-07-10 13:44:13.275 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:44:13.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:13.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 13:44:13.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:13.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:13.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:13.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3622.7068ms +2017-07-10 13:44:13.895 +05:30 [Information] Request finished in 3700.1393ms 200 application/json; charset=utf-8 +2017-07-10 13:44:13.896 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" completed keep alive response. +2017-07-10 13:44:13.904 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 13:44:13.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 13:44:13.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 13:44:14.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:14.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:14.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:14.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:14.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5647.6946ms +2017-07-10 13:44:14.355 +05:30 [Information] Request finished in 5676.1139ms 200 application/json; charset=utf-8 +2017-07-10 13:44:14.356 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" completed keep alive response. +2017-07-10 13:44:14.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 13:44:14.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 13:44:14.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 13:44:14.719 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 13:44:14.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 13:44:14.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 13:44:15.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:15.112 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:15.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:15.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:15.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6428.9829ms +2017-07-10 13:44:15.125 +05:30 [Information] Request finished in 6456.8804ms 200 application/json; charset=utf-8 +2017-07-10 13:44:15.126 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" completed keep alive response. +2017-07-10 13:44:17.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 13:44:17.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:17.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:17.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:17.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3158.0063ms +2017-07-10 13:44:17.073 +05:30 [Information] Request finished in 3170.3103ms 200 application/json; charset=utf-8 +2017-07-10 13:44:17.076 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" completed keep alive response. +2017-07-10 13:44:17.096 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 13:44:17.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 13:44:17.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 13:44:17.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:17.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:19.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 13:44:19.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:19.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:19.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:19.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2252.33ms +2017-07-10 13:44:19.355 +05:30 [Information] Request finished in 2260.2113ms 200 application/json; charset=utf-8 +2017-07-10 13:44:19.356 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" completed keep alive response. +2017-07-10 13:44:22.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:22.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:22.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:22.704 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:22.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:22.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:22.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:22.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:22.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 7963.9102ms +2017-07-10 13:44:22.717 +05:30 [Information] Request finished in 8035.6636ms 200 application/json; charset=utf-8 +2017-07-10 13:44:22.718 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" completed keep alive response. +2017-07-10 13:44:22.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 7973.3439ms +2017-07-10 13:44:22.725 +05:30 [Information] Request finished in 8044.9937ms 200 application/json; charset=utf-8 +2017-07-10 13:44:22.726 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" completed keep alive response. +2017-07-10 13:44:22.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 13:44:22.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 13:44:22.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 13:44:22.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 13:44:22.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 13:44:22.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 13:44:25.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:25.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 13:44:26.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:26.088 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:26.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:26.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:26.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3282.8098ms +2017-07-10 13:44:26.145 +05:30 [Information] Request finished in 3358.431ms 200 application/json; charset=utf-8 +2017-07-10 13:44:26.146 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" completed keep alive response. +2017-07-10 13:44:36.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 13:44:36.853 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 13:44:36.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 13:44:36.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 13:44:36.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14083.276ms +2017-07-10 13:44:36.907 +05:30 [Information] Request finished in 14118.8211ms 200 application/json; charset=utf-8 +2017-07-10 13:44:36.907 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" completed keep alive response. +2017-07-10 13:45:26.050 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" received FIN. +2017-07-10 13:45:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" received FIN. +2017-07-10 13:45:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" disconnecting. +2017-07-10 13:45:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" received FIN. +2017-07-10 13:45:26.053 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" sending FIN. +2017-07-10 13:45:26.053 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" received FIN. +2017-07-10 13:45:26.054 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" disconnecting. +2017-07-10 13:45:26.054 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" disconnecting. +2017-07-10 13:45:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" disconnecting. +2017-07-10 13:45:26.061 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" sent FIN with status "0". +2017-07-10 13:45:26.064 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" sending FIN. +2017-07-10 13:45:26.068 +05:30 [Debug] Connection id ""0HL67DE53M4G8"" stopped. +2017-07-10 13:45:26.068 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" sending FIN. +2017-07-10 13:45:26.068 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" sending FIN. +2017-07-10 13:45:26.069 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" sent FIN with status "0". +2017-07-10 13:45:26.069 +05:30 [Debug] Connection id ""0HL67DE53M4GC"" stopped. +2017-07-10 13:45:26.069 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" sent FIN with status "0". +2017-07-10 13:45:26.070 +05:30 [Debug] Connection id ""0HL67DE53M4GA"" stopped. +2017-07-10 13:45:26.070 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" sent FIN with status "0". +2017-07-10 13:45:26.070 +05:30 [Debug] Connection id ""0HL67DE53M4G7"" stopped. +2017-07-10 13:47:26.049 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" received FIN. +2017-07-10 13:47:26.049 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" received FIN. +2017-07-10 13:47:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" disconnecting. +2017-07-10 13:47:26.051 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" disconnecting. +2017-07-10 13:47:26.052 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" sending FIN. +2017-07-10 13:47:26.055 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" sent FIN with status "0". +2017-07-10 13:47:26.056 +05:30 [Debug] Connection id ""0HL67DE53M4GB"" stopped. +2017-07-10 13:47:26.053 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" sending FIN. +2017-07-10 13:47:26.057 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" sent FIN with status "0". +2017-07-10 13:47:26.057 +05:30 [Debug] Connection id ""0HL67DE53M4G9"" stopped. +2017-07-10 15:25:26.563 +05:30 [Debug] Hosting starting +2017-07-10 15:25:27.312 +05:30 [Debug] Hosting started +2017-07-10 15:25:27.336 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" started. +2017-07-10 15:25:27.336 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" started. +2017-07-10 15:25:27.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-10 15:25:27.704 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-10 15:25:27.806 +05:30 [Information] Request finished in 189.6063ms 200 +2017-07-10 15:25:27.892 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:25:30.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-10 15:25:30.901 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"73817484-7c94-453a-b163-a8e481d907e1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-10 15:25:31.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-10 15:25:31.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-10 15:25:31.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-10 15:25:31.215 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:25:31.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:31.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:31.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:25:31.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:25:31.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:25:31.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 914.824ms +2017-07-10 15:25:32.280 +05:30 [Information] Request finished in 4684.2803ms 200 application/json; charset=utf-8 +2017-07-10 15:25:32.293 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:25:32.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-10 15:25:32.335 +05:30 [Debug] Request did not match any routes. +2017-07-10 15:25:32.354 +05:30 [Debug] The request path "" does not match the path filter +2017-07-10 15:25:32.357 +05:30 [Information] Request finished in 24.9581ms 404 +2017-07-10 15:25:32.357 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:25:36.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:25:43.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:25:43.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:43.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:43.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12062.8888ms +2017-07-10 15:25:43.984 +05:30 [Information] Request finished in 12078.0506ms 200 application/json; charset=utf-8 +2017-07-10 15:25:43.985 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:25:44.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:25:44.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:25:44.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:25:46.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:25:46.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:25:46.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:46.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:46.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2401.6782ms +2017-07-10 15:25:46.849 +05:30 [Information] Request finished in 2412.181ms 200 application/json; charset=utf-8 +2017-07-10 15:25:46.849 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:25:47.391 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:25:47.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:25:47.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:25:50.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:25:50.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:25:50.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:50.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:50.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3079.4643ms +2017-07-10 15:25:50.481 +05:30 [Information] Request finished in 3089.3943ms 200 application/json; charset=utf-8 +2017-07-10 15:25:50.482 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:25:50.485 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:25:50.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:25:50.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:25:53.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:25:53.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:25:53.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:53.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:53.559 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.8069ms +2017-07-10 15:25:53.561 +05:30 [Information] Request finished in 3075.3587ms 200 application/json; charset=utf-8 +2017-07-10 15:25:53.562 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:25:53.602 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:25:53.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:25:53.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:25:56.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:25:56.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:25:56.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:25:56.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:25:56.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.862ms +2017-07-10 15:25:56.665 +05:30 [Information] Request finished in 3065.5145ms 200 application/json; charset=utf-8 +2017-07-10 15:25:56.666 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:25:57.704 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:25:57.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:25:57.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:26:00.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:01.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:01.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:01.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:01.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3538.0056ms +2017-07-10 15:26:01.251 +05:30 [Information] Request finished in 3547.9519ms 200 application/json; charset=utf-8 +2017-07-10 15:26:01.252 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:26:01.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:26:01.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:26:01.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:26:04.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:04.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:04.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:04.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:04.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3278.3862ms +2017-07-10 15:26:04.651 +05:30 [Information] Request finished in 3284.4835ms 200 application/json; charset=utf-8 +2017-07-10 15:26:04.651 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:26:27.299 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 15:26:27.300 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 15:26:27.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 15:26:30.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:26:30.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:30.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:30.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:30.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3384.425ms +2017-07-10 15:26:30.695 +05:30 [Information] Request finished in 3393.2562ms 200 application/json; charset=utf-8 +2017-07-10 15:26:30.696 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:26:30.753 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:26:30.754 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:26:30.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:26:32.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:32.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:32.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:32.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:32.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2158.245ms +2017-07-10 15:26:32.920 +05:30 [Information] Request finished in 2165.2805ms 200 application/json; charset=utf-8 +2017-07-10 15:26:32.920 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:26:32.932 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:26:32.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:26:32.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:26:35.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:36.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:36.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:36.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:36.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.6573ms +2017-07-10 15:26:36.064 +05:30 [Information] Request finished in 3131.7166ms 200 application/json; charset=utf-8 +2017-07-10 15:26:36.065 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:26:37.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:26:37.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:26:37.977 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:26:37.987 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:26:37.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:26:37.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:26:38.589 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" started. +2017-07-10 15:26:38.590 +05:30 [Debug] Connection id ""0HL67F75CGTME"" started. +2017-07-10 15:26:38.596 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" started. +2017-07-10 15:26:38.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:26:38.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 15:26:38.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:26:38.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 15:26:38.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 15:26:38.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:26:39.406 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" started. +2017-07-10 15:26:39.867 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 15:26:39.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 15:26:39.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 15:26:40.398 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 15:26:40.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 15:26:40.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 15:26:42.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:42.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:42.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:42.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:42.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:42.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:42.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4566.6528ms +2017-07-10 15:26:42.581 +05:30 [Information] Request finished in 4608.7655ms 200 application/json; charset=utf-8 +2017-07-10 15:26:42.582 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:26:42.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:42.653 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:42.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:42.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:42.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4677.1478ms +2017-07-10 15:26:42.660 +05:30 [Information] Request finished in 4697.3657ms 200 application/json; charset=utf-8 +2017-07-10 15:26:42.661 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:26:43.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:43.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:43.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:43.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:43.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:43.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:43.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:43.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4592.5452ms +2017-07-10 15:26:43.215 +05:30 [Information] Request finished in 4619.2183ms 200 application/json; charset=utf-8 +2017-07-10 15:26:43.216 +05:30 [Debug] Connection id ""0HL67F75CGTME"" completed keep alive response. +2017-07-10 15:26:43.459 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 15:26:43.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:43.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:43.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:43.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3308.0975ms +2017-07-10 15:26:43.751 +05:30 [Information] Request finished in 3352.6584ms 200 application/json; charset=utf-8 +2017-07-10 15:26:43.753 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" completed keep alive response. +2017-07-10 15:26:43.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:43.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:43.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:43.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:44.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5402.3681ms +2017-07-10 15:26:44.018 +05:30 [Information] Request finished in 5413.5632ms 200 application/json; charset=utf-8 +2017-07-10 15:26:44.018 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" completed keep alive response. +2017-07-10 15:26:45.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:45.735 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:45.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:45.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:45.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5873.6218ms +2017-07-10 15:26:45.752 +05:30 [Information] Request finished in 5883.6448ms 200 application/json; charset=utf-8 +2017-07-10 15:26:45.753 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" completed keep alive response. +2017-07-10 15:26:50.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:26:50.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:26:50.905 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:26:50.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:26:50.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:26:50.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:26:53.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:53.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:26:59.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:59.646 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:59.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:59.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:26:59.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:59.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:26:59.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:26:59.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:26:59.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 8733.1183ms +2017-07-10 15:26:59.686 +05:30 [Information] Request finished in 8812.4813ms 200 application/json; charset=utf-8 +2017-07-10 15:26:59.688 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" completed keep alive response. +2017-07-10 15:26:59.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 8787.5016ms +2017-07-10 15:26:59.706 +05:30 [Information] Request finished in 8831.4352ms 200 application/json; charset=utf-8 +2017-07-10 15:26:59.707 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" completed keep alive response. +2017-07-10 15:26:59.814 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:26:59.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:26:59.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:26:59.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:26:59.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:26:59.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:27:00.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:27:02.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:27:03.050 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:27:03.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:27:03.052 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:27:03.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:27:03.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3239.2501ms +2017-07-10 15:27:03.061 +05:30 [Information] Request finished in 3265.9335ms 200 application/json; charset=utf-8 +2017-07-10 15:27:03.062 +05:30 [Debug] Connection id ""0HL67F75CGTME"" completed keep alive response. +2017-07-10 15:27:13.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:27:13.216 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:27:13.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:27:13.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:27:13.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 13451.1095ms +2017-07-10 15:27:13.306 +05:30 [Information] Request finished in 13496.7821ms 200 application/json; charset=utf-8 +2017-07-10 15:27:13.308 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" completed keep alive response. +2017-07-10 15:29:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" received FIN. +2017-07-10 15:29:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" received FIN. +2017-07-10 15:29:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" received FIN. +2017-07-10 15:29:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTME"" received FIN. +2017-07-10 15:29:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" disconnecting. +2017-07-10 15:29:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" disconnecting. +2017-07-10 15:29:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTME"" disconnecting. +2017-07-10 15:29:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" received FIN. +2017-07-10 15:29:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" disconnecting. +2017-07-10 15:29:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" disconnecting. +2017-07-10 15:29:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTME"" sending FIN. +2017-07-10 15:29:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" received FIN. +2017-07-10 15:29:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" sending FIN. +2017-07-10 15:29:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" disconnecting. +2017-07-10 15:29:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" sending FIN. +2017-07-10 15:29:27.315 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" sending FIN. +2017-07-10 15:29:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" sending FIN. +2017-07-10 15:29:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" sending FIN. +2017-07-10 15:29:27.323 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" sent FIN with status "0". +2017-07-10 15:29:27.323 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" sent FIN with status "0". +2017-07-10 15:29:27.328 +05:30 [Debug] Connection id ""0HL67F75CGTMC"" stopped. +2017-07-10 15:29:27.328 +05:30 [Debug] Connection id ""0HL67F75CGTMB"" stopped. +2017-07-10 15:29:27.329 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" sent FIN with status "0". +2017-07-10 15:29:27.329 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" sent FIN with status "0". +2017-07-10 15:29:27.330 +05:30 [Debug] Connection id ""0HL67F75CGTMG"" stopped. +2017-07-10 15:29:27.331 +05:30 [Debug] Connection id ""0HL67F75CGTMD"" stopped. +2017-07-10 15:29:27.332 +05:30 [Debug] Connection id ""0HL67F75CGTME"" sent FIN with status "0". +2017-07-10 15:29:27.332 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" sent FIN with status "0". +2017-07-10 15:29:27.333 +05:30 [Debug] Connection id ""0HL67F75CGTME"" stopped. +2017-07-10 15:29:27.333 +05:30 [Debug] Connection id ""0HL67F75CGTMF"" stopped. +2017-07-10 15:31:21.787 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" started. +2017-07-10 15:31:21.790 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:31:21.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:31:21.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:31:24.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:31:24.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:24.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:24.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:24.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.4177ms +2017-07-10 15:31:24.910 +05:30 [Information] Request finished in 3119.0198ms 200 application/json; charset=utf-8 +2017-07-10 15:31:24.912 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:24.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:31:24.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:31:24.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:31:27.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:31:27.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:27.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:27.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:28.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3072.6407ms +2017-07-10 15:31:28.005 +05:30 [Information] Request finished in 3089.0374ms 200 application/json; charset=utf-8 +2017-07-10 15:31:28.006 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:28.043 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:31:28.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:31:28.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:31:31.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:31:31.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:31.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:31.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:31.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3062.8967ms +2017-07-10 15:31:31.113 +05:30 [Information] Request finished in 3093.2062ms 200 application/json; charset=utf-8 +2017-07-10 15:31:31.113 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:31.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:31:31.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:31:31.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:31:34.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:34.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:34.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:34.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:34.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.021ms +2017-07-10 15:31:34.292 +05:30 [Information] Request finished in 3156.8621ms 200 application/json; charset=utf-8 +2017-07-10 15:31:34.293 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:34.302 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:31:34.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:31:34.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:31:37.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:37.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:37.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:37.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:37.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3105.3428ms +2017-07-10 15:31:37.413 +05:30 [Information] Request finished in 3111.1054ms 200 application/json; charset=utf-8 +2017-07-10 15:31:37.413 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:39.814 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" started. +2017-07-10 15:31:39.816 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:31:39.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:31:39.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:31:39.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:31:39.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:31:39.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:31:40.368 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" started. +2017-07-10 15:31:40.394 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" started. +2017-07-10 15:31:40.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:31:40.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:31:40.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:31:40.454 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:31:40.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:31:40.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:31:42.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:42.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:42.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:42.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:42.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:42.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3074.3573ms +2017-07-10 15:31:42.901 +05:30 [Information] Request finished in 3083.8592ms 200 application/json; charset=utf-8 +2017-07-10 15:31:42.902 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:31:42.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:43.030 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:43.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:43.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:43.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:43.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3213.5272ms +2017-07-10 15:31:43.037 +05:30 [Information] Request finished in 3220.9312ms 200 application/json; charset=utf-8 +2017-07-10 15:31:43.038 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:43.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:43.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:43.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:43.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:43.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:43.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:43.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3439.782ms +2017-07-10 15:31:43.892 +05:30 [Information] Request finished in 3472.1422ms 200 application/json; charset=utf-8 +2017-07-10 15:31:43.893 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" completed keep alive response. +2017-07-10 15:31:44.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:44.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:44.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:44.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:31:44.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:31:44.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:31:44.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:31:44.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:31:44.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:31:44.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:44.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3551.819ms +2017-07-10 15:31:44.078 +05:30 [Information] Request finished in 3649.9963ms 200 application/json; charset=utf-8 +2017-07-10 15:31:44.078 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" completed keep alive response. +2017-07-10 15:31:47.151 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:47.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:31:47.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:47.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:47.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:47.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:47.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3334.6805ms +2017-07-10 15:31:47.393 +05:30 [Information] Request finished in 3373.1382ms 200 application/json; charset=utf-8 +2017-07-10 15:31:47.393 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:31:55.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:31:55.731 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:31:55.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:31:55.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:31:55.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 11707.9664ms +2017-07-10 15:31:55.764 +05:30 [Information] Request finished in 11738.0022ms 200 application/json; charset=utf-8 +2017-07-10 15:31:55.772 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:32:44.433 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" received FIN. +2017-07-10 15:32:44.434 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" received FIN. +2017-07-10 15:32:44.435 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" disconnecting. +2017-07-10 15:32:44.435 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" disconnecting. +2017-07-10 15:32:44.464 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 15:32:44.468 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" sending FIN. +2017-07-10 15:32:44.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 15:32:44.473 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" sent FIN with status "0". +2017-07-10 15:32:44.470 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" sending FIN. +2017-07-10 15:32:44.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 15:32:44.475 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" sent FIN with status "0". +2017-07-10 15:32:44.474 +05:30 [Debug] Connection id ""0HL67F75CGTMK"" stopped. +2017-07-10 15:32:44.476 +05:30 [Debug] Connection id ""0HL67F75CGTMJ"" stopped. +2017-07-10 15:32:47.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:32:47.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:32:47.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:32:47.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:32:47.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3139.5536ms +2017-07-10 15:32:47.619 +05:30 [Information] Request finished in 3183.3528ms 200 application/json; charset=utf-8 +2017-07-10 15:32:47.620 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:32:47.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:32:47.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:32:47.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:32:50.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:32:50.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:32:50.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:32:50.815 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:32:50.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3134.331ms +2017-07-10 15:32:50.822 +05:30 [Information] Request finished in 3143.4145ms 200 application/json; charset=utf-8 +2017-07-10 15:32:50.823 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:32:50.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:32:50.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:32:50.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:32:53.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:32:53.929 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:32:53.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:32:53.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:32:53.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3102.7999ms +2017-07-10 15:32:53.934 +05:30 [Information] Request finished in 3107.4444ms 200 application/json; charset=utf-8 +2017-07-10 15:32:53.935 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:32:56.256 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:32:56.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:32:56.262 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:32:56.323 +05:30 [Debug] Connection id ""0HL67F75CGTML"" started. +2017-07-10 15:32:56.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:32:56.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:32:56.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:32:56.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:32:56.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:32:56.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:32:56.908 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" started. +2017-07-10 15:32:56.909 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" started. +2017-07-10 15:32:56.909 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" started. +2017-07-10 15:32:56.913 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 15:32:56.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 15:32:56.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 15:32:57.613 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" started. +2017-07-10 15:32:58.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 15:32:58.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 15:32:58.351 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 15:32:58.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:32:58.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:32:58.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:32:59.413 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 15:32:59.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 15:32:59.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 15:33:01.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:01.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:01.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:01.530 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:01.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:01.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:01.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:01.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5220.8425ms +2017-07-10 15:33:01.629 +05:30 [Information] Request finished in 5287.034ms 200 application/json; charset=utf-8 +2017-07-10 15:33:01.645 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:33:01.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:01.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:01.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:01.679 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:01.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:01.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:01.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:01.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5420.4239ms +2017-07-10 15:33:01.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5343.8805ms +2017-07-10 15:33:01.690 +05:30 [Information] Request finished in 5448.3156ms 200 application/json; charset=utf-8 +2017-07-10 15:33:01.692 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:33:01.700 +05:30 [Information] Request finished in 5363.6777ms 200 application/json; charset=utf-8 +2017-07-10 15:33:01.701 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:33:01.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:33:01.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:33:01.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:33:02.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:02.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:02.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:02.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:02.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:02.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:02.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:02.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3313.4442ms +2017-07-10 15:33:02.284 +05:30 [Information] Request finished in 3385.5873ms 200 application/json; charset=utf-8 +2017-07-10 15:33:02.285 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" completed keep alive response. +2017-07-10 15:33:02.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:02.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:02.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:02.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:02.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5486.096ms +2017-07-10 15:33:02.410 +05:30 [Information] Request finished in 5495.4443ms 200 application/json; charset=utf-8 +2017-07-10 15:33:02.412 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" completed keep alive response. +2017-07-10 15:33:02.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 15:33:02.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:02.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:02.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:02.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3204.793ms +2017-07-10 15:33:02.627 +05:30 [Information] Request finished in 3213.1286ms 200 application/json; charset=utf-8 +2017-07-10 15:33:02.628 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" completed keep alive response. +2017-07-10 15:33:03.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:03.684 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:03.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:03.687 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:03.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5340.983ms +2017-07-10 15:33:03.706 +05:30 [Information] Request finished in 5359.2636ms 200 application/json; charset=utf-8 +2017-07-10 15:33:03.707 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" completed keep alive response. +2017-07-10 15:33:04.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:04.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:04.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:04.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:04.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3206.2964ms +2017-07-10 15:33:04.928 +05:30 [Information] Request finished in 3226.8053ms 200 application/json; charset=utf-8 +2017-07-10 15:33:04.928 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:33:05.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:33:05.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:33:05.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:33:05.686 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:33:05.687 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:33:05.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:33:06.177 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:33:06.179 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 15:33:06.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:33:06.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 15:33:06.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 15:33:06.201 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 15:33:06.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:33:06.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 15:33:06.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 15:33:06.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 15:33:06.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 15:33:06.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 15:33:08.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:08.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:08.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:08.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:08.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:08.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:08.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:08.813 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:08.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:08.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:08.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3132.4526ms +2017-07-10 15:33:08.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:08.852 +05:30 [Information] Request finished in 3179.0032ms 200 application/json; charset=utf-8 +2017-07-10 15:33:08.854 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:33:08.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2645.953ms +2017-07-10 15:33:08.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:08.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:08.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:08.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:08.915 +05:30 [Information] Request finished in 2741.9157ms 200 application/json; charset=utf-8 +2017-07-10 15:33:08.916 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" completed keep alive response. +2017-07-10 15:33:08.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3227.0407ms +2017-07-10 15:33:08.927 +05:30 [Information] Request finished in 3249.592ms 200 application/json; charset=utf-8 +2017-07-10 15:33:08.928 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:33:09.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:09.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:09.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:09.406 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:09.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:09.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:09.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3199.4966ms +2017-07-10 15:33:09.415 +05:30 [Information] Request finished in 3243.3911ms 200 application/json; charset=utf-8 +2017-07-10 15:33:09.416 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" completed keep alive response. +2017-07-10 15:33:09.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 15:33:09.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:09.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:09.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:09.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3125.8027ms +2017-07-10 15:33:09.746 +05:30 [Information] Request finished in 3141.3897ms 200 application/json; charset=utf-8 +2017-07-10 15:33:09.747 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" completed keep alive response. +2017-07-10 15:33:10.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:10.083 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:10.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:10.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:10.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3876.4193ms +2017-07-10 15:33:10.095 +05:30 [Information] Request finished in 3921.7361ms 200 application/json; charset=utf-8 +2017-07-10 15:33:10.096 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" completed keep alive response. +2017-07-10 15:33:48.321 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:33:48.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:33:48.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:33:48.347 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:33:48.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:33:48.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:33:51.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:51.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:51.891 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:51.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:51.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:51.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:51.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:51.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:51.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:51.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3548.4637ms +2017-07-10 15:33:51.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:51.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3569.7586ms +2017-07-10 15:33:51.934 +05:30 [Information] Request finished in 3625.8109ms 200 application/json; charset=utf-8 +2017-07-10 15:33:51.937 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:33:51.946 +05:30 [Information] Request finished in 3631.0222ms 200 application/json; charset=utf-8 +2017-07-10 15:33:51.948 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:33:52.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:33:52.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:33:52.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:33:52.067 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:33:52.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:33:52.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:33:55.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:55.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:33:55.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:55.404 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:55.404 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:55.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:55.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3275.4867ms +2017-07-10 15:33:55.410 +05:30 [Information] Request finished in 3374.3347ms 200 application/json; charset=utf-8 +2017-07-10 15:33:55.410 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:33:58.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:33:58.270 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:33:58.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:33:58.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:33:58.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6236.3099ms +2017-07-10 15:33:58.289 +05:30 [Information] Request finished in 6260.053ms 200 application/json; charset=utf-8 +2017-07-10 15:33:58.289 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" completed keep alive response. +2017-07-10 15:34:26.337 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" received FIN. +2017-07-10 15:34:26.337 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" received FIN. +2017-07-10 15:34:26.338 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" disconnecting. +2017-07-10 15:34:26.340 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" sending FIN. +2017-07-10 15:34:26.340 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" sent FIN with status "0". +2017-07-10 15:34:26.340 +05:30 [Debug] Connection id ""0HL67F75CGTMN"" stopped. +2017-07-10 15:34:26.338 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" disconnecting. +2017-07-10 15:34:26.341 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" sending FIN. +2017-07-10 15:34:26.341 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" sent FIN with status "0". +2017-07-10 15:34:26.341 +05:30 [Debug] Connection id ""0HL67F75CGTMM"" stopped. +2017-07-10 15:34:26.342 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" received FIN. +2017-07-10 15:34:26.342 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" disconnecting. +2017-07-10 15:34:26.343 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" sending FIN. +2017-07-10 15:34:26.343 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" sent FIN with status "0". +2017-07-10 15:34:26.345 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:34:26.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:34:26.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:34:26.346 +05:30 [Debug] Connection id ""0HL67F75CGTMP"" stopped. +2017-07-10 15:34:29.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:34:29.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:29.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:29.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:29.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3045.0757ms +2017-07-10 15:34:29.404 +05:30 [Information] Request finished in 3064.123ms 200 application/json; charset=utf-8 +2017-07-10 15:34:29.404 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:34:29.409 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:34:29.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:34:29.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:34:31.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:34:31.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:31.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:31.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:31.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2106.1582ms +2017-07-10 15:34:31.519 +05:30 [Information] Request finished in 2111.7893ms 200 application/json; charset=utf-8 +2017-07-10 15:34:31.520 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:34:31.528 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:34:31.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:34:31.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:34:34.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:34:34.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:34.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:34.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:34.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.4421ms +2017-07-10 15:34:34.606 +05:30 [Information] Request finished in 3077.9272ms 200 application/json; charset=utf-8 +2017-07-10 15:34:34.606 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:34:34.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:34:34.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:34:34.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:34:36.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:36.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:36.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:36.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:36.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2149.7564ms +2017-07-10 15:34:36.770 +05:30 [Information] Request finished in 2156.929ms 200 application/json; charset=utf-8 +2017-07-10 15:34:36.771 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" completed keep alive response. +2017-07-10 15:34:36.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:34:36.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:34:36.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:34:39.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:39.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:39.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:39.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:39.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3126.2272ms +2017-07-10 15:34:39.910 +05:30 [Information] Request finished in 3133.9675ms 200 application/json; charset=utf-8 +2017-07-10 15:34:39.912 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:34:41.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:34:41.421 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:34:41.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:34:41.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:34:41.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:34:41.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:34:44.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:44.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:44.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:44.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:44.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:44.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:44.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:44.602 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:44.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3177.2588ms +2017-07-10 15:34:44.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:44.606 +05:30 [Information] Request finished in 3185.8914ms 200 application/json; charset=utf-8 +2017-07-10 15:34:44.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:44.607 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:34:44.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3185.2256ms +2017-07-10 15:34:44.613 +05:30 [Information] Request finished in 3193.6046ms 200 application/json; charset=utf-8 +2017-07-10 15:34:44.613 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:34:48.867 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:34:48.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:34:48.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:34:48.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:34:48.884 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:34:48.885 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:34:51.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:52.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:52.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:52.339 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:52.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:52.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:52.345 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3455.8944ms +2017-07-10 15:34:52.354 +05:30 [Information] Request finished in 3523.8942ms 200 application/json; charset=utf-8 +2017-07-10 15:34:52.355 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" completed keep alive response. +2017-07-10 15:34:52.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:52.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:52.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:52.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:52.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3562.5499ms +2017-07-10 15:34:52.439 +05:30 [Information] Request finished in 3613.0883ms 200 application/json; charset=utf-8 +2017-07-10 15:34:52.440 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" completed keep alive response. +2017-07-10 15:34:52.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:34:52.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:34:52.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:34:52.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:34:52.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:34:52.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:34:53.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:55.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:34:55.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:55.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:55.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:55.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:55.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3168.8415ms +2017-07-10 15:34:55.896 +05:30 [Information] Request finished in 3233.4399ms 200 application/json; charset=utf-8 +2017-07-10 15:34:55.897 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" completed keep alive response. +2017-07-10 15:34:56.834 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:34:56.836 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:34:56.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:34:56.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:34:56.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 4154.9145ms +2017-07-10 15:34:56.860 +05:30 [Information] Request finished in 4196.4975ms 200 application/json; charset=utf-8 +2017-07-10 15:34:56.861 +05:30 [Debug] Connection id ""0HL67F75CGTML"" completed keep alive response. +2017-07-10 15:36:40.776 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" received FIN. +2017-07-10 15:36:40.778 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" started. +2017-07-10 15:36:40.778 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" received FIN. +2017-07-10 15:36:40.778 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" disconnecting. +2017-07-10 15:36:40.787 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" sending FIN. +2017-07-10 15:36:40.788 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" sent FIN with status "0". +2017-07-10 15:36:40.788 +05:30 [Debug] Connection id ""0HL67F75CGTMI"" stopped. +2017-07-10 15:36:40.786 +05:30 [Debug] Connection id ""0HL67F75CGTML"" received FIN. +2017-07-10 15:36:40.798 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:36:40.795 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" disconnecting. +2017-07-10 15:36:40.806 +05:30 [Debug] Connection id ""0HL67F75CGTML"" disconnecting. +2017-07-10 15:36:40.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:36:40.805 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" received FIN. +2017-07-10 15:36:40.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:36:40.820 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" disconnecting. +2017-07-10 15:36:40.820 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" sending FIN. +2017-07-10 15:36:40.829 +05:30 [Debug] Connection id ""0HL67F75CGTML"" sending FIN. +2017-07-10 15:36:40.830 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" sending FIN. +2017-07-10 15:36:40.831 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" sent FIN with status "0". +2017-07-10 15:36:40.832 +05:30 [Debug] Connection id ""0HL67F75CGTMH"" stopped. +2017-07-10 15:36:40.833 +05:30 [Debug] Connection id ""0HL67F75CGTML"" sent FIN with status "0". +2017-07-10 15:36:40.839 +05:30 [Debug] Connection id ""0HL67F75CGTML"" stopped. +2017-07-10 15:36:40.840 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" sent FIN with status "0". +2017-07-10 15:36:40.842 +05:30 [Debug] Connection id ""0HL67F75CGTMO"" stopped. +2017-07-10 15:36:42.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:36:42.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:42.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:42.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:42.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2096.0008ms +2017-07-10 15:36:42.926 +05:30 [Information] Request finished in 2145.5681ms 200 application/json; charset=utf-8 +2017-07-10 15:36:42.926 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:36:42.928 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:36:42.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:36:42.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:36:45.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:36:45.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:46.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:46.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:46.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3071.9097ms +2017-07-10 15:36:46.009 +05:30 [Information] Request finished in 3079.1395ms 200 application/json; charset=utf-8 +2017-07-10 15:36:46.009 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:36:46.016 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:36:46.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:36:46.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:36:49.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:36:49.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:49.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:49.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:49.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3137.2789ms +2017-07-10 15:36:49.162 +05:30 [Information] Request finished in 3145.7197ms 200 application/json; charset=utf-8 +2017-07-10 15:36:49.163 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:36:49.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:36:49.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:36:49.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:36:52.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:36:52.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:52.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:52.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:52.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3136.3105ms +2017-07-10 15:36:52.380 +05:30 [Information] Request finished in 3193.3993ms 200 application/json; charset=utf-8 +2017-07-10 15:36:52.381 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:36:52.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:36:52.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:36:52.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:36:54.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:36:54.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:54.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:54.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:54.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2145.2692ms +2017-07-10 15:36:54.543 +05:30 [Information] Request finished in 2151.423ms 200 application/json; charset=utf-8 +2017-07-10 15:36:54.544 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:36:56.396 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" started. +2017-07-10 15:36:56.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:36:56.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:36:56.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:36:56.401 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:36:56.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:36:56.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:36:59.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:36:59.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:36:59.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:59.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:36:59.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:59.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:59.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:36:59.555 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:36:59.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3150.8106ms +2017-07-10 15:36:59.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:36:59.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:36:59.559 +05:30 [Information] Request finished in 3159.2624ms 200 application/json; charset=utf-8 +2017-07-10 15:36:59.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3158.9306ms +2017-07-10 15:36:59.560 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" completed keep alive response. +2017-07-10 15:36:59.563 +05:30 [Information] Request finished in 3165.0027ms 200 application/json; charset=utf-8 +2017-07-10 15:36:59.564 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" completed keep alive response. +2017-07-10 15:39:27.295 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" received FIN. +2017-07-10 15:39:27.295 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" received FIN. +2017-07-10 15:39:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" disconnecting. +2017-07-10 15:39:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" disconnecting. +2017-07-10 15:39:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" sending FIN. +2017-07-10 15:39:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" sent FIN with status "0". +2017-07-10 15:39:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTMQ"" stopped. +2017-07-10 15:39:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" sending FIN. +2017-07-10 15:39:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" sent FIN with status "0". +2017-07-10 15:39:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTMR"" stopped. +2017-07-10 15:40:25.635 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" started. +2017-07-10 15:40:25.640 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" started. +2017-07-10 15:40:25.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:40:25.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:40:25.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:40:25.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:40:25.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:40:25.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:40:28.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:40:28.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:40:29.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:40:29.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:40:29.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:40:29.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:40:29.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:40:29.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:40:29.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:40:29.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:40:29.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3588.498ms +2017-07-10 15:40:29.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3582.0024ms +2017-07-10 15:40:29.303 +05:30 [Information] Request finished in 3660.3176ms 200 application/json; charset=utf-8 +2017-07-10 15:40:29.304 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:40:29.305 +05:30 [Information] Request finished in 3604.5266ms 200 application/json; charset=utf-8 +2017-07-10 15:40:29.313 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" completed keep alive response. +2017-07-10 15:40:29.470 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:40:29.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:40:29.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:40:29.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:40:29.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:40:29.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:40:32.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:40:32.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:40:32.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:40:32.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:40:32.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:40:32.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:40:32.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3323.4017ms +2017-07-10 15:40:32.807 +05:30 [Information] Request finished in 3356.8789ms 200 application/json; charset=utf-8 +2017-07-10 15:40:32.808 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" completed keep alive response. +2017-07-10 15:40:53.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:40:53.150 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:40:53.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:40:53.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:40:53.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 23678.918ms +2017-07-10 15:40:53.191 +05:30 [Information] Request finished in 23742.9192ms 200 application/json; charset=utf-8 +2017-07-10 15:40:53.193 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:39.896 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" received FIN. +2017-07-10 15:41:39.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:41:39.899 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" disconnecting. +2017-07-10 15:41:39.900 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" sending FIN. +2017-07-10 15:41:39.901 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" sent FIN with status "0". +2017-07-10 15:41:39.901 +05:30 [Debug] Connection id ""0HL67F75CGTMT"" stopped. +2017-07-10 15:41:39.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:41:39.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:41:43.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:41:43.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:43.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:43.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:43.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3133.2859ms +2017-07-10 15:41:43.039 +05:30 [Information] Request finished in 3141.7284ms 200 application/json; charset=utf-8 +2017-07-10 15:41:43.039 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:43.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:41:43.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:41:43.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:41:45.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:41:45.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:45.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:45.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:45.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2175.9925ms +2017-07-10 15:41:45.231 +05:30 [Information] Request finished in 2189.4957ms 200 application/json; charset=utf-8 +2017-07-10 15:41:45.232 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:45.347 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:41:45.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:41:45.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:41:48.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:41:48.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:48.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:48.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:48.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3116.0777ms +2017-07-10 15:41:48.469 +05:30 [Information] Request finished in 3182.5844ms 200 application/json; charset=utf-8 +2017-07-10 15:41:48.470 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:48.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:41:48.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:41:48.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:41:51.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:41:51.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:51.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:51.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:51.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3272.6058ms +2017-07-10 15:41:51.763 +05:30 [Information] Request finished in 3286.5629ms 200 application/json; charset=utf-8 +2017-07-10 15:41:51.764 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:51.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:41:51.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:41:51.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:41:54.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:41:55.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:55.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:55.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:55.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3237.322ms +2017-07-10 15:41:55.014 +05:30 [Information] Request finished in 3243.3524ms 200 application/json; charset=utf-8 +2017-07-10 15:41:55.015 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:41:56.572 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" started. +2017-07-10 15:41:56.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:41:56.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:41:56.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:41:56.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:41:56.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:41:56.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:41:57.217 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" started. +2017-07-10 15:41:57.217 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" started. +2017-07-10 15:41:57.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:41:57.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:41:57.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:41:57.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:41:57.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:41:57.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:41:59.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:41:59.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:41:59.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:59.671 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:41:59.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:59.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:59.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2123.6425ms +2017-07-10 15:41:59.677 +05:30 [Information] Request finished in 2392.0465ms 200 application/json; charset=utf-8 +2017-07-10 15:41:59.678 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:41:59.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:59.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:41:59.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:59.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:59.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:41:59.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 2240.9763ms +2017-07-10 15:41:59.866 +05:30 [Information] Request finished in 2316.2725ms 200 application/json; charset=utf-8 +2017-07-10 15:41:59.866 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:41:59.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:41:59.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:41:59.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:41:59.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:41:59.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3289.2287ms +2017-07-10 15:41:59.878 +05:30 [Information] Request finished in 3304.2161ms 200 application/json; charset=utf-8 +2017-07-10 15:41:59.879 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:42:00.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:42:00.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:42:00.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:42:00.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:42:00.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:42:00.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:42:00.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:00.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:00.509 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:00.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:00.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:00.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3910.1083ms +2017-07-10 15:42:00.522 +05:30 [Information] Request finished in 3945.1524ms 200 application/json; charset=utf-8 +2017-07-10 15:42:00.523 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:42:03.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:04.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:04.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:04.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:04.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:04.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:04.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 4608.608ms +2017-07-10 15:42:05.260 +05:30 [Information] Request finished in 4875.3373ms 200 application/json; charset=utf-8 +2017-07-10 15:42:05.260 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:42:05.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:42:05.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:42:05.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:42:07.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:42:07.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:07.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:07.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:07.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1598.0665ms +2017-07-10 15:42:07.252 +05:30 [Information] Request finished in 1663.9945ms 200 application/json; charset=utf-8 +2017-07-10 15:42:07.253 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:42:07.266 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:42:07.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:42:07.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:42:10.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:42:10.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:10.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:10.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:10.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3239.6563ms +2017-07-10 15:42:10.513 +05:30 [Information] Request finished in 3248.3065ms 200 application/json; charset=utf-8 +2017-07-10 15:42:10.513 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:42:10.521 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:42:10.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:42:10.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:42:12.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:42:12.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:12.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:12.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:12.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2224.4038ms +2017-07-10 15:42:12.754 +05:30 [Information] Request finished in 2232.2275ms 200 application/json; charset=utf-8 +2017-07-10 15:42:12.755 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:42:12.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:42:12.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:42:12.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:42:13.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:13.551 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:13.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:13.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:13.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 13464.0661ms +2017-07-10 15:42:13.572 +05:30 [Information] Request finished in 13549.589ms 200 application/json; charset=utf-8 +2017-07-10 15:42:13.572 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:42:15.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:15.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:15.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:15.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:15.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2401.5395ms +2017-07-10 15:42:15.167 +05:30 [Information] Request finished in 2407.4096ms 200 application/json; charset=utf-8 +2017-07-10 15:42:15.168 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:42:15.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:42:15.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:42:15.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:42:18.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:18.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:18.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:18.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:18.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3218.9931ms +2017-07-10 15:42:18.414 +05:30 [Information] Request finished in 3239.2303ms 200 application/json; charset=utf-8 +2017-07-10 15:42:18.414 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:42:20.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:42:20.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:42:20.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:42:20.431 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:42:20.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:42:20.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:42:21.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:42:21.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:42:21.003 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:42:21.004 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:42:21.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:42:21.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:42:22.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:22.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:22.540 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:22.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:22.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:22.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2140.7792ms +2017-07-10 15:42:22.544 +05:30 [Information] Request finished in 2194.8418ms 200 application/json; charset=utf-8 +2017-07-10 15:42:22.545 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:42:23.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:23.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:23.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:23.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:23.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:23.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3234.7903ms +2017-07-10 15:42:23.675 +05:30 [Information] Request finished in 3323.117ms 200 application/json; charset=utf-8 +2017-07-10 15:42:23.675 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:42:24.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:24.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:24.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:24.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:24.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:24.625 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:24.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:24.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:24.645 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:24.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:24.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3639.4081ms +2017-07-10 15:42:24.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3645.4362ms +2017-07-10 15:42:24.676 +05:30 [Information] Request finished in 3654.2535ms 200 application/json; charset=utf-8 +2017-07-10 15:42:24.676 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:42:24.677 +05:30 [Information] Request finished in 3655.252ms 200 application/json; charset=utf-8 +2017-07-10 15:42:24.685 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:42:24.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:42:24.813 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:42:24.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:42:24.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:42:24.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:42:24.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:42:26.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:27.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:27.075 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:27.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:27.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:27.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 2263.9053ms +2017-07-10 15:42:27.083 +05:30 [Information] Request finished in 2298.4856ms 200 application/json; charset=utf-8 +2017-07-10 15:42:27.084 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:42:28.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:42:30.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:42:30.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:42:30.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:42:30.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:42:30.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6139.2434ms +2017-07-10 15:42:30.972 +05:30 [Information] Request finished in 6185.0376ms 200 application/json; charset=utf-8 +2017-07-10 15:42:30.973 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:06.096 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:43:06.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:43:06.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:43:09.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:43:09.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:09.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:09.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:09.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.5483ms +2017-07-10 15:43:09.165 +05:30 [Information] Request finished in 3069.0989ms 200 application/json; charset=utf-8 +2017-07-10 15:43:09.166 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:43:09.170 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:43:09.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:43:09.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:43:12.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:43:12.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:12.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:12.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:12.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3136.33ms +2017-07-10 15:43:12.385 +05:30 [Information] Request finished in 3217.0074ms 200 application/json; charset=utf-8 +2017-07-10 15:43:12.385 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:43:12.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:43:12.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:43:12.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:43:14.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:43:14.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:14.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:14.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:14.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2384.0591ms +2017-07-10 15:43:14.869 +05:30 [Information] Request finished in 2444.8142ms 200 application/json; charset=utf-8 +2017-07-10 15:43:14.896 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:43:14.932 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:43:14.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:43:14.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:43:18.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:18.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:18.375 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:18.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:18.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3495.004ms +2017-07-10 15:43:18.445 +05:30 [Information] Request finished in 3525.439ms 200 application/json; charset=utf-8 +2017-07-10 15:43:18.448 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:18.460 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:43:18.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:43:18.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:43:21.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:21.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:21.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:21.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:21.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3116.221ms +2017-07-10 15:43:21.590 +05:30 [Information] Request finished in 3131.0177ms 200 application/json; charset=utf-8 +2017-07-10 15:43:21.592 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:43:25.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 15:43:25.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 15:43:25.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 15:43:27.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:43:27.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:27.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:27.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:27.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2413.4198ms +2017-07-10 15:43:27.890 +05:30 [Information] Request finished in 2431.9404ms 200 application/json; charset=utf-8 +2017-07-10 15:43:27.891 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:43:27.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:43:27.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:43:27.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:43:31.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:31.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:31.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:31.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:31.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3267.7838ms +2017-07-10 15:43:31.231 +05:30 [Information] Request finished in 3275.0457ms 200 application/json; charset=utf-8 +2017-07-10 15:43:31.232 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:43:31.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:43:31.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:43:31.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:43:34.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:34.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:34.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:34.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:34.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3159.8755ms +2017-07-10 15:43:34.403 +05:30 [Information] Request finished in 3167.2851ms 200 application/json; charset=utf-8 +2017-07-10 15:43:34.404 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:37.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:43:37.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:43:37.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:43:37.372 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:43:37.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:43:37.381 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:43:37.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:43:37.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:43:37.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:43:38.005 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" started. +2017-07-10 15:43:38.005 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" started. +2017-07-10 15:43:38.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 15:43:38.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 15:43:38.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 15:43:38.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:43:38.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:43:38.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:43:38.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 15:43:38.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 15:43:38.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 15:43:38.784 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" started. +2017-07-10 15:43:38.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 15:43:38.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 15:43:38.795 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 15:43:39.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:39.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:39.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:39.692 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:39.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:39.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:39.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2304.5004ms +2017-07-10 15:43:39.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:39.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:39.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:39.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:39.785 +05:30 [Information] Request finished in 2468.7848ms 200 application/json; charset=utf-8 +2017-07-10 15:43:39.786 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:43:39.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2403.797ms +2017-07-10 15:43:39.793 +05:30 [Information] Request finished in 2482.8211ms 200 application/json; charset=utf-8 +2017-07-10 15:43:39.794 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:43:41.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:41.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:41.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:41.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:41.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:41.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:41.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:41.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:41.610 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:41.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:41.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4377.8334ms +2017-07-10 15:43:41.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:41.681 +05:30 [Information] Request finished in 4442.5514ms 200 application/json; charset=utf-8 +2017-07-10 15:43:41.698 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:43:41.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3641.8054ms +2017-07-10 15:43:41.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:43:41.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:43:41.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:43:41.744 +05:30 [Information] Request finished in 3707.305ms 200 application/json; charset=utf-8 +2017-07-10 15:43:41.745 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" completed keep alive response. +2017-07-10 15:43:41.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:41.822 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:41.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:41.824 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:41.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3805.9086ms +2017-07-10 15:43:41.831 +05:30 [Information] Request finished in 3822.4484ms 200 application/json; charset=utf-8 +2017-07-10 15:43:41.832 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:42.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 15:43:42.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:42.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:42.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:42.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3468.02ms +2017-07-10 15:43:42.278 +05:30 [Information] Request finished in 3486.8326ms 200 application/json; charset=utf-8 +2017-07-10 15:43:42.278 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" completed keep alive response. +2017-07-10 15:43:43.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:43.007 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:43.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:43.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:43.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4982.2667ms +2017-07-10 15:43:43.015 +05:30 [Information] Request finished in 5006.566ms 200 application/json; charset=utf-8 +2017-07-10 15:43:43.015 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" completed keep alive response. +2017-07-10 15:43:44.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:44.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:44.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:44.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:44.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3152.6463ms +2017-07-10 15:43:44.901 +05:30 [Information] Request finished in 3196.0542ms 200 application/json; charset=utf-8 +2017-07-10 15:43:44.901 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:43:45.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:43:45.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:43:45.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:43:45.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:43:45.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:43:45.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:43:46.349 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 15:43:46.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 15:43:46.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 15:43:46.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:43:46.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:43:46.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:43:46.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 15:43:46.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 15:43:46.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 15:43:46.887 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 15:43:46.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 15:43:46.889 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 15:43:47.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:48.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:48.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:48.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:48.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:48.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 1977.4404ms +2017-07-10 15:43:48.370 +05:30 [Information] Request finished in 2039.4794ms 200 application/json; charset=utf-8 +2017-07-10 15:43:48.371 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:49.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:49.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:49.120 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:49.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:49.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:49.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3435.7761ms +2017-07-10 15:43:49.126 +05:30 [Information] Request finished in 3462.956ms 200 application/json; charset=utf-8 +2017-07-10 15:43:49.128 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:43:49.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:49.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:49.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:49.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:49.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:49.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3576.2114ms +2017-07-10 15:43:49.268 +05:30 [Information] Request finished in 3604.7467ms 200 application/json; charset=utf-8 +2017-07-10 15:43:49.269 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:43:49.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:49.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:49.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:49.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:49.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:49.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:49.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3272.2939ms +2017-07-10 15:43:49.639 +05:30 [Information] Request finished in 3298.3843ms 200 application/json; charset=utf-8 +2017-07-10 15:43:49.640 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" completed keep alive response. +2017-07-10 15:43:50.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 15:43:50.196 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:50.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:50.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:50.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3308.8877ms +2017-07-10 15:43:50.202 +05:30 [Information] Request finished in 3315.4144ms 200 application/json; charset=utf-8 +2017-07-10 15:43:50.203 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" completed keep alive response. +2017-07-10 15:43:50.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:50.369 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:50.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:50.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:50.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4014.939ms +2017-07-10 15:43:50.379 +05:30 [Information] Request finished in 4050.5542ms 200 application/json; charset=utf-8 +2017-07-10 15:43:50.380 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" completed keep alive response. +2017-07-10 15:43:53.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:43:53.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:43:53.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:43:53.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:43:53.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:43:53.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:43:55.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:55.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:55.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:55.511 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:55.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:55.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:55.536 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 2530.5467ms +2017-07-10 15:43:55.548 +05:30 [Information] Request finished in 2553.4658ms 200 application/json; charset=utf-8 +2017-07-10 15:43:55.548 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" completed keep alive response. +2017-07-10 15:43:55.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:55.555 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:55.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:55.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:55.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2551.8041ms +2017-07-10 15:43:55.569 +05:30 [Information] Request finished in 2575.6274ms 200 application/json; charset=utf-8 +2017-07-10 15:43:55.570 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" completed keep alive response. +2017-07-10 15:43:55.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:43:55.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:43:55.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:43:55.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:43:55.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:43:55.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:43:56.983 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:57.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:43:57.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:43:57.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:43:57.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:43:57.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:43:57.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 1674.6926ms +2017-07-10 15:43:57.385 +05:30 [Information] Request finished in 1718.4679ms 200 application/json; charset=utf-8 +2017-07-10 15:43:57.385 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" completed keep alive response. +2017-07-10 15:44:23.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:44:23.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:44:23.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:44:23.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:44:23.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 27646.4423ms +2017-07-10 15:44:23.376 +05:30 [Information] Request finished in 27706.3081ms 200 application/json; charset=utf-8 +2017-07-10 15:44:23.385 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" completed keep alive response. +2017-07-10 15:45:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" received FIN. +2017-07-10 15:45:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" received FIN. +2017-07-10 15:45:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" received FIN. +2017-07-10 15:45:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" received FIN. +2017-07-10 15:45:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" received FIN. +2017-07-10 15:45:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" disconnecting. +2017-07-10 15:45:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" disconnecting. +2017-07-10 15:45:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" disconnecting. +2017-07-10 15:45:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" sending FIN. +2017-07-10 15:45:27.322 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" disconnecting. +2017-07-10 15:45:27.329 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" sending FIN. +2017-07-10 15:45:27.330 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" sending FIN. +2017-07-10 15:45:27.330 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" sending FIN. +2017-07-10 15:45:27.331 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" sent FIN with status "0". +2017-07-10 15:45:27.331 +05:30 [Debug] Connection id ""0HL67F75CGTMS"" stopped. +2017-07-10 15:45:27.324 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" disconnecting. +2017-07-10 15:45:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" received FIN. +2017-07-10 15:45:27.332 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" sent FIN with status "0". +2017-07-10 15:45:27.339 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" received FIN. +2017-07-10 15:45:27.340 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" disconnecting. +2017-07-10 15:45:27.340 +05:30 [Debug] Connection id ""0HL67F75CGTMU"" stopped. +2017-07-10 15:45:27.346 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" sending FIN. +2017-07-10 15:45:27.351 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" sending FIN. +2017-07-10 15:45:27.346 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" disconnecting. +2017-07-10 15:45:27.351 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" sent FIN with status "0". +2017-07-10 15:45:27.354 +05:30 [Debug] Connection id ""0HL67F75CGTMV"" stopped. +2017-07-10 15:45:27.354 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" sent FIN with status "0". +2017-07-10 15:45:27.354 +05:30 [Debug] Connection id ""0HL67F75CGTN2"" stopped. +2017-07-10 15:45:27.353 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" sent FIN with status "0". +2017-07-10 15:45:27.356 +05:30 [Debug] Connection id ""0HL67F75CGTN1"" stopped. +2017-07-10 15:45:27.356 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" sent FIN with status "0". +2017-07-10 15:45:27.357 +05:30 [Debug] Connection id ""0HL67F75CGTN3"" stopped. +2017-07-10 15:45:27.357 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" sending FIN. +2017-07-10 15:45:27.358 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" sent FIN with status "0". +2017-07-10 15:45:27.359 +05:30 [Debug] Connection id ""0HL67F75CGTN0"" stopped. +2017-07-10 15:47:55.910 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" started. +2017-07-10 15:47:55.914 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:47:55.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:47:55.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:47:58.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:47:58.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:47:58.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:47:58.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:47:58.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3076.9869ms +2017-07-10 15:47:59.001 +05:30 [Information] Request finished in 3086.4813ms 200 application/json; charset=utf-8 +2017-07-10 15:47:59.002 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" completed keep alive response. +2017-07-10 15:47:59.009 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:47:59.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:47:59.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:48:02.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:48:02.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:48:02.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:48:02.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:48:02.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3056.2307ms +2017-07-10 15:48:02.075 +05:30 [Information] Request finished in 3070.8079ms 200 application/json; charset=utf-8 +2017-07-10 15:48:02.076 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" completed keep alive response. +2017-07-10 15:48:02.087 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:48:02.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:48:02.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:48:05.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:48:05.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:48:05.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:48:05.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:48:05.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3051.5501ms +2017-07-10 15:48:05.144 +05:30 [Information] Request finished in 3059.0901ms 200 application/json; charset=utf-8 +2017-07-10 15:48:05.145 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" completed keep alive response. +2017-07-10 15:48:05.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:48:05.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:48:05.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:48:07.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:48:07.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:48:07.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:48:07.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:48:07.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2171.9657ms +2017-07-10 15:48:07.331 +05:30 [Information] Request finished in 2178.256ms 200 application/json; charset=utf-8 +2017-07-10 15:48:07.332 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" completed keep alive response. +2017-07-10 15:48:07.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:48:07.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:48:07.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:48:10.415 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:48:10.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:48:10.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:48:10.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:48:10.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3149.1522ms +2017-07-10 15:48:10.493 +05:30 [Information] Request finished in 3155.1234ms 200 application/json; charset=utf-8 +2017-07-10 15:48:10.494 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" completed keep alive response. +2017-07-10 15:49:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" received FIN. +2017-07-10 15:49:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" disconnecting. +2017-07-10 15:49:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" sending FIN. +2017-07-10 15:49:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" sent FIN with status "0". +2017-07-10 15:49:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTN4"" stopped. +2017-07-10 15:51:34.958 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" started. +2017-07-10 15:51:34.959 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:51:34.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:51:34.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:51:38.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:51:38.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:38.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:38.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:38.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.1803ms +2017-07-10 15:51:38.015 +05:30 [Information] Request finished in 3055.3381ms 200 application/json; charset=utf-8 +2017-07-10 15:51:38.015 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:38.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:51:38.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:51:38.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:51:41.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:51:41.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:41.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:41.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:41.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3061.1348ms +2017-07-10 15:51:41.088 +05:30 [Information] Request finished in 3069.628ms 200 application/json; charset=utf-8 +2017-07-10 15:51:41.088 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:41.098 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:51:41.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:51:41.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:51:44.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:51:44.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:44.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:44.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:44.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3104.1073ms +2017-07-10 15:51:44.210 +05:30 [Information] Request finished in 3111.7205ms 200 application/json; charset=utf-8 +2017-07-10 15:51:44.210 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:44.214 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:51:44.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:51:44.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:51:47.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:47.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:47.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:47.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:47.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3137.3567ms +2017-07-10 15:51:47.359 +05:30 [Information] Request finished in 3143.438ms 200 application/json; charset=utf-8 +2017-07-10 15:51:47.359 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:47.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:51:47.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:51:47.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:51:50.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:50.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:50.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:50.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:50.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.837ms +2017-07-10 15:51:50.471 +05:30 [Information] Request finished in 3106.8849ms 200 application/json; charset=utf-8 +2017-07-10 15:51:50.471 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:52.374 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" started. +2017-07-10 15:51:52.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:51:52.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:51:52.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:51:52.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:51:52.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:51:52.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:51:54.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:54.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:54.676 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:51:54.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:54.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:54.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2269.0144ms +2017-07-10 15:51:54.682 +05:30 [Information] Request finished in 2305.5582ms 200 application/json; charset=utf-8 +2017-07-10 15:51:54.682 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" completed keep alive response. +2017-07-10 15:51:55.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:55.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:55.548 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:51:55.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:55.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:55.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3152.8115ms +2017-07-10 15:51:55.557 +05:30 [Information] Request finished in 3180.5592ms 200 application/json; charset=utf-8 +2017-07-10 15:51:55.558 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:51:56.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:51:56.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:51:56.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:51:56.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:51:56.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:51:56.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:51:59.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:59.598 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:51:59.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:51:59.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:51:59.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:51:59.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:51:59.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3540.9541ms +2017-07-10 15:51:59.985 +05:30 [Information] Request finished in 3605.1986ms 200 application/json; charset=utf-8 +2017-07-10 15:51:59.986 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" completed keep alive response. +2017-07-10 15:51:59.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:52:00.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:52:00.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:52:00.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:52:00.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3577.7591ms +2017-07-10 15:52:00.030 +05:30 [Information] Request finished in 3639.8524ms 200 application/json; charset=utf-8 +2017-07-10 15:52:00.031 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:52:00.361 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:52:00.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:52:00.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:52:00.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:52:00.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:52:00.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:52:03.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:52:03.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:52:03.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:52:03.760 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:52:03.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:52:03.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:52:03.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3399.1346ms +2017-07-10 15:52:03.769 +05:30 [Information] Request finished in 3598.6561ms 200 application/json; charset=utf-8 +2017-07-10 15:52:03.770 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" completed keep alive response. +2017-07-10 15:52:13.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:52:13.234 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:52:13.234 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:52:13.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:52:13.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 12839.4504ms +2017-07-10 15:52:13.254 +05:30 [Information] Request finished in 13077.6381ms 200 application/json; charset=utf-8 +2017-07-10 15:52:13.261 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" completed keep alive response. +2017-07-10 15:53:27.295 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" received FIN. +2017-07-10 15:53:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" disconnecting. +2017-07-10 15:53:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" sending FIN. +2017-07-10 15:53:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" sent FIN with status "0". +2017-07-10 15:53:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" received FIN. +2017-07-10 15:53:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" disconnecting. +2017-07-10 15:53:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" sending FIN. +2017-07-10 15:53:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" sent FIN with status "0". +2017-07-10 15:53:27.318 +05:30 [Debug] Connection id ""0HL67F75CGTN5"" stopped. +2017-07-10 15:53:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTN6"" stopped. +2017-07-10 15:55:17.488 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" started. +2017-07-10 15:55:17.494 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:55:17.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:55:17.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:55:20.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:55:20.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:20.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:20.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:20.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.3439ms +2017-07-10 15:55:20.545 +05:30 [Information] Request finished in 3054.9766ms 200 application/json; charset=utf-8 +2017-07-10 15:55:20.546 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:20.549 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:55:20.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:55:20.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:55:23.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:55:23.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:23.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:23.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:23.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.8689ms +2017-07-10 15:55:23.608 +05:30 [Information] Request finished in 3059.9515ms 200 application/json; charset=utf-8 +2017-07-10 15:55:23.610 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:23.619 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:55:23.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:55:23.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:55:25.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:55:25.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:25.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:25.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:25.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2195.8856ms +2017-07-10 15:55:25.826 +05:30 [Information] Request finished in 2207.3131ms 200 application/json; charset=utf-8 +2017-07-10 15:55:25.827 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:25.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:55:25.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:55:25.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:55:28.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:28.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:28.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:28.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:28.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3110.2178ms +2017-07-10 15:55:28.947 +05:30 [Information] Request finished in 3116.2839ms 200 application/json; charset=utf-8 +2017-07-10 15:55:28.947 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:28.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:55:28.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:55:28.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:55:32.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:32.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:32.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:32.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:32.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3163.8264ms +2017-07-10 15:55:32.127 +05:30 [Information] Request finished in 3173.7376ms 200 application/json; charset=utf-8 +2017-07-10 15:55:32.128 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:34.220 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" started. +2017-07-10 15:55:34.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:55:34.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:55:34.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:55:34.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:55:34.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:55:34.224 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:55:37.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:37.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:37.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:37.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:37.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:37.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:37.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3145.6628ms +2017-07-10 15:55:37.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:37.375 +05:30 [Information] Request finished in 3152.8949ms 200 application/json; charset=utf-8 +2017-07-10 15:55:37.375 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:37.376 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:55:37.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:37.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:37.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3157.2329ms +2017-07-10 15:55:37.387 +05:30 [Information] Request finished in 3165.5679ms 200 application/json; charset=utf-8 +2017-07-10 15:55:37.388 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:38.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:55:38.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:55:38.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:55:38.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:55:38.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:55:38.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:55:39.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:40.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:40.041 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:40.047 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:40.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:40.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 1638.4401ms +2017-07-10 15:55:40.124 +05:30 [Information] Request finished in 1663.7256ms 200 application/json; charset=utf-8 +2017-07-10 15:55:40.134 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:40.262 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" started. +2017-07-10 15:55:40.348 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:55:40.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:55:40.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:55:40.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:55:40.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:55:40.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:55:41.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:41.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:41.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:41.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:41.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:41.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3381.9628ms +2017-07-10 15:55:41.850 +05:30 [Information] Request finished in 3404.5274ms 200 application/json; charset=utf-8 +2017-07-10 15:55:41.850 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:55:42.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:42.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:42.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:42.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:42.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:42.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 2369.6829ms +2017-07-10 15:55:42.749 +05:30 [Information] Request finished in 2453.4197ms 200 application/json; charset=utf-8 +2017-07-10 15:55:42.750 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:55:43.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:55:46.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:55:46.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:55:46.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:55:46.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:55:46.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6200.5885ms +2017-07-10 15:55:46.603 +05:30 [Information] Request finished in 6305.0229ms 200 application/json; charset=utf-8 +2017-07-10 15:55:46.604 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:56:21.551 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:56:21.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:56:21.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:56:24.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:56:24.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:56:24.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:56:24.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:56:24.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.808ms +2017-07-10 15:56:24.611 +05:30 [Information] Request finished in 3061.5367ms 200 application/json; charset=utf-8 +2017-07-10 15:56:24.611 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:56:24.614 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:56:24.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:56:24.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:56:27.685 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:56:27.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:56:27.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:56:27.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:56:27.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3078.3155ms +2017-07-10 15:56:27.702 +05:30 [Information] Request finished in 3088.2382ms 200 application/json; charset=utf-8 +2017-07-10 15:56:27.702 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:56:27.722 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:56:27.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:56:27.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:56:30.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:56:30.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:56:30.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:56:30.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:56:30.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3057.5324ms +2017-07-10 15:56:30.844 +05:30 [Information] Request finished in 3110.0019ms 200 application/json; charset=utf-8 +2017-07-10 15:56:30.845 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:56:30.851 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:56:30.852 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:56:30.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:56:33.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:56:33.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:56:33.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:56:33.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:56:33.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3108.8279ms +2017-07-10 15:56:33.966 +05:30 [Information] Request finished in 3115.1609ms 200 application/json; charset=utf-8 +2017-07-10 15:56:33.967 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:56:33.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:56:33.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:56:33.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:56:37.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:56:37.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:56:37.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:56:37.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:56:37.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3168.8345ms +2017-07-10 15:56:37.147 +05:30 [Information] Request finished in 3176.2411ms 200 application/json; charset=utf-8 +2017-07-10 15:56:37.148 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:57:08.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 15:57:08.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 15:57:08.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 15:57:11.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:57:11.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:11.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:11.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:11.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.7157ms +2017-07-10 15:57:11.156 +05:30 [Information] Request finished in 3073.861ms 200 application/json; charset=utf-8 +2017-07-10 15:57:11.157 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:57:11.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 15:57:11.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 15:57:11.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 15:57:14.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 15:57:14.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:14.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:14.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:14.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3100.7148ms +2017-07-10 15:57:14.291 +05:30 [Information] Request finished in 3131.1468ms 200 application/json; charset=utf-8 +2017-07-10 15:57:14.292 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:57:14.299 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 15:57:14.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 15:57:14.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 15:57:17.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 15:57:17.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:17.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:17.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:17.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.8581ms +2017-07-10 15:57:17.356 +05:30 [Information] Request finished in 3055.6348ms 200 application/json; charset=utf-8 +2017-07-10 15:57:17.357 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:57:17.361 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 15:57:17.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 15:57:17.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 15:57:20.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:20.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:20.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:20.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:20.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3127.326ms +2017-07-10 15:57:20.500 +05:30 [Information] Request finished in 3137.2431ms 200 application/json; charset=utf-8 +2017-07-10 15:57:20.501 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:57:20.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 15:57:20.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 15:57:20.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 15:57:23.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:23.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:23.628 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:23.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:23.632 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.8481ms +2017-07-10 15:57:23.636 +05:30 [Information] Request finished in 3125.3786ms 200 application/json; charset=utf-8 +2017-07-10 15:57:23.637 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:57:25.540 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 15:57:25.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 15:57:25.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 15:57:25.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 15:57:25.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 15:57:25.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 15:57:26.075 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" started. +2017-07-10 15:57:26.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 15:57:26.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 15:57:26.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 15:57:26.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 15:57:26.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 15:57:26.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 15:57:28.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:28.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:28.837 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:28.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:28.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:28.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:28.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3302.2402ms +2017-07-10 15:57:28.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:28.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:28.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:28.877 +05:30 [Information] Request finished in 3337.0208ms 200 application/json; charset=utf-8 +2017-07-10 15:57:28.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:28.878 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:57:28.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3334.9871ms +2017-07-10 15:57:28.884 +05:30 [Information] Request finished in 3364.0842ms 200 application/json; charset=utf-8 +2017-07-10 15:57:28.885 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:57:29.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:29.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:32.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:32.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:32.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:32.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:32.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 5951.3414ms +2017-07-10 15:57:32.193 +05:30 [Information] Request finished in 6113.004ms 200 application/json; charset=utf-8 +2017-07-10 15:57:32.194 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" completed keep alive response. +2017-07-10 15:57:34.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:34.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:34.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:34.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:34.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 8119.9981ms +2017-07-10 15:57:34.309 +05:30 [Information] Request finished in 8228.117ms 200 application/json; charset=utf-8 +2017-07-10 15:57:34.310 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" completed keep alive response. +2017-07-10 15:57:34.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 15:57:34.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 15:57:34.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 15:57:34.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 15:57:34.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 15:57:34.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 15:57:36.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:37.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 15:57:37.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:37.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:37.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:37.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:37.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3274.7941ms +2017-07-10 15:57:37.688 +05:30 [Information] Request finished in 3313.1069ms 200 application/json; charset=utf-8 +2017-07-10 15:57:37.690 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" completed keep alive response. +2017-07-10 15:57:41.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 15:57:41.639 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 15:57:41.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 15:57:41.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 15:57:41.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 7239.17ms +2017-07-10 15:57:41.667 +05:30 [Information] Request finished in 7290.6612ms 200 application/json; charset=utf-8 +2017-07-10 15:57:41.670 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" completed keep alive response. +2017-07-10 15:59:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" received FIN. +2017-07-10 15:59:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" received FIN. +2017-07-10 15:59:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" received FIN. +2017-07-10 15:59:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" disconnecting. +2017-07-10 15:59:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" sending FIN. +2017-07-10 15:59:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" received FIN. +2017-07-10 15:59:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" sent FIN with status "0". +2017-07-10 15:59:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" disconnecting. +2017-07-10 15:59:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTN9"" stopped. +2017-07-10 15:59:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" sending FIN. +2017-07-10 15:59:27.305 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" sent FIN with status "0". +2017-07-10 15:59:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" disconnecting. +2017-07-10 15:59:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" disconnecting. +2017-07-10 15:59:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" sending FIN. +2017-07-10 15:59:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTNA"" stopped. +2017-07-10 15:59:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" sent FIN with status "0". +2017-07-10 15:59:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" sending FIN. +2017-07-10 15:59:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" sent FIN with status "0". +2017-07-10 15:59:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTN8"" stopped. +2017-07-10 15:59:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTN7"" stopped. +2017-07-10 16:04:10.754 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" started. +2017-07-10 16:04:10.755 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:04:10.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:04:10.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:04:13.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:04:13.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:13.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:13.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:13.934 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3164.331ms +2017-07-10 16:04:13.937 +05:30 [Information] Request finished in 3181.319ms 200 application/json; charset=utf-8 +2017-07-10 16:04:13.939 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:13.944 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:04:13.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:04:13.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:04:16.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:04:16.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:16.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:16.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:17.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.2687ms +2017-07-10 16:04:17.003 +05:30 [Information] Request finished in 3059.8979ms 200 application/json; charset=utf-8 +2017-07-10 16:04:17.003 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:17.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:04:17.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:04:17.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:04:20.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:04:20.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:20.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:20.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:20.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3072.0461ms +2017-07-10 16:04:20.091 +05:30 [Information] Request finished in 3079.7695ms 200 application/json; charset=utf-8 +2017-07-10 16:04:20.093 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:20.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:04:20.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:04:20.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:04:23.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:23.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:23.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:23.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:23.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3107.4597ms +2017-07-10 16:04:23.217 +05:30 [Information] Request finished in 3117.7171ms 200 application/json; charset=utf-8 +2017-07-10 16:04:23.218 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:23.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:04:23.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:04:23.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:04:26.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:26.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:26.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:26.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:26.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3112.3051ms +2017-07-10 16:04:26.344 +05:30 [Information] Request finished in 3119.8988ms 200 application/json; charset=utf-8 +2017-07-10 16:04:26.345 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:30.339 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" started. +2017-07-10 16:04:30.369 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:04:30.370 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:04:30.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:04:30.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:04:30.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:04:30.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:04:30.936 +05:30 [Debug] Connection id ""0HL67F75CGTND"" started. +2017-07-10 16:04:30.941 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" started. +2017-07-10 16:04:30.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:04:30.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:04:30.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:04:30.957 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:04:30.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:04:30.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:04:33.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:33.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:33.527 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:33.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:33.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:33.531 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3146.6616ms +2017-07-10 16:04:33.534 +05:30 [Information] Request finished in 3163.118ms 200 application/json; charset=utf-8 +2017-07-10 16:04:33.535 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:04:33.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:33.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:33.678 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:33.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:33.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:33.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3308.5643ms +2017-07-10 16:04:33.684 +05:30 [Information] Request finished in 3343.1846ms 200 application/json; charset=utf-8 +2017-07-10 16:04:33.684 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:34.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:34.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:34.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:34.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:34.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:34.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:34.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3431.6361ms +2017-07-10 16:04:34.394 +05:30 [Information] Request finished in 3452.0295ms 200 application/json; charset=utf-8 +2017-07-10 16:04:34.395 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:04:34.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:04:34.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:04:34.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:04:34.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:04:34.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:04:34.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:04:34.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:34.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:34.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:34.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:34.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3627.3553ms +2017-07-10 16:04:34.593 +05:30 [Information] Request finished in 3638.6923ms 200 application/json; charset=utf-8 +2017-07-10 16:04:34.594 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:04:37.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:37.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:37.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:37.963 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:37.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:37.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:37.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3475.2959ms +2017-07-10 16:04:37.978 +05:30 [Information] Request finished in 3505.5882ms 200 application/json; charset=utf-8 +2017-07-10 16:04:37.980 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:04:43.251 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:04:43.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:04:43.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:04:46.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:04:46.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:46.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:46.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:46.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.1857ms +2017-07-10 16:04:46.300 +05:30 [Information] Request finished in 3048.9912ms 200 application/json; charset=utf-8 +2017-07-10 16:04:46.301 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:04:46.306 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:04:46.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:04:46.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:04:49.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:49.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:04:49.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:49.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:49.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14664.9589ms +2017-07-10 16:04:49.200 +05:30 [Information] Request finished in 14724.1871ms 200 application/json; charset=utf-8 +2017-07-10 16:04:49.201 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:04:49.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:04:49.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:49.660 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:49.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:49.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3355.5099ms +2017-07-10 16:04:49.668 +05:30 [Information] Request finished in 3363.1072ms 200 application/json; charset=utf-8 +2017-07-10 16:04:49.668 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:04:49.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:04:49.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:04:49.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:04:52.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:04:52.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:52.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:52.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:52.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.3549ms +2017-07-10 16:04:52.734 +05:30 [Information] Request finished in 3056.1886ms 200 application/json; charset=utf-8 +2017-07-10 16:04:52.735 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:04:52.747 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:04:52.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:04:52.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:04:55.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:56.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:56.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:56.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:56.013 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3262.8943ms +2017-07-10 16:04:56.017 +05:30 [Information] Request finished in 3274.1211ms 200 application/json; charset=utf-8 +2017-07-10 16:04:56.018 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:04:56.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:04:56.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:04:56.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:04:59.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:04:59.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:04:59.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:04:59.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:04:59.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.7512ms +2017-07-10 16:04:59.148 +05:30 [Information] Request finished in 3122.3454ms 200 application/json; charset=utf-8 +2017-07-10 16:04:59.148 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:05:25.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:25.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:25.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:26.132 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:26.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:26.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:26.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:26.162 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:26.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:26.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:26.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:26.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:26.952 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" started. +2017-07-10 16:05:26.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:26.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:26.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:27.472 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" started. +2017-07-10 16:05:27.684 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:27.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:27.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:28.006 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" started. +2017-07-10 16:05:28.535 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" started. +2017-07-10 16:05:28.685 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:28.687 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:28.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:29.062 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" started. +2017-07-10 16:05:29.614 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" started. +2017-07-10 16:05:29.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:29.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:29.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:30.129 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" started. +2017-07-10 16:05:30.677 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" started. +2017-07-10 16:05:30.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:30.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:30.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:31.180 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" started. +2017-07-10 16:05:31.686 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:31.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:31.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:31.702 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" started. +2017-07-10 16:05:32.709 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" started. +2017-07-10 16:05:32.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:32.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:32.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:32.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:32.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:32.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:32.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:32.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7191.3765ms +2017-07-10 16:05:32.763 +05:30 [Information] Request finished in 7198.3766ms 200 application/json; charset=utf-8 +2017-07-10 16:05:32.764 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:05:32.774 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:32.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:32.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:33.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:33.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:33.682 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" started. +2017-07-10 16:05:33.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:34.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:34.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:34.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:34.682 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" started. +2017-07-10 16:05:35.723 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" started. +2017-07-10 16:05:35.753 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:35.754 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:35.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:35.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:35.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:35.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:35.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:35.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:35.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:35.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:35.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:35.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:35.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:35.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9666.891ms +2017-07-10 16:05:35.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:35.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:35.824 +05:30 [Information] Request finished in 9693.184ms 200 application/json; charset=utf-8 +2017-07-10 16:05:35.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9655.4212ms +2017-07-10 16:05:35.826 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:05:35.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9656.955ms +2017-07-10 16:05:35.835 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:35.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:35.839 +05:30 [Information] Request finished in 9672.8747ms 200 application/json; charset=utf-8 +2017-07-10 16:05:35.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:35.841 +05:30 [Information] Request finished in 9677.0554ms 200 application/json; charset=utf-8 +2017-07-10 16:05:35.841 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:05:35.846 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:05:35.853 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:35.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:35.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:35.857 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:35.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:35.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:36.702 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" started. +2017-07-10 16:05:36.741 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:36.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:36.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:36.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:36.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:36.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:36.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:36.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9796.2349ms +2017-07-10 16:05:36.756 +05:30 [Information] Request finished in 9802.6542ms 200 application/json; charset=utf-8 +2017-07-10 16:05:36.757 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:05:36.760 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:36.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:36.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:37.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:37.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:37.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:37.688 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" started. +2017-07-10 16:05:38.705 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:38.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:38.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:38.717 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" started. +2017-07-10 16:05:39.691 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:39.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:39.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:39.726 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" started. +2017-07-10 16:05:40.692 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:40.692 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" started. +2017-07-10 16:05:40.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:40.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:40.750 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:40.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:40.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:40.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:40.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13063.4893ms +2017-07-10 16:05:40.761 +05:30 [Information] Request finished in 13077.6113ms 200 application/json; charset=utf-8 +2017-07-10 16:05:40.761 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:05:40.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:40.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:40.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:41.716 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" started. +2017-07-10 16:05:41.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:41.725 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:41.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:41.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:41.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:41.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:41.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:41.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13042.9552ms +2017-07-10 16:05:41.737 +05:30 [Information] Request finished in 13053.5517ms 200 application/json; charset=utf-8 +2017-07-10 16:05:41.737 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" completed keep alive response. +2017-07-10 16:05:42.688 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" started. +2017-07-10 16:05:42.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:42.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:42.758 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:42.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:42.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:42.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:42.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:42.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13089.8459ms +2017-07-10 16:05:42.779 +05:30 [Information] Request finished in 13098.0448ms 200 application/json; charset=utf-8 +2017-07-10 16:05:42.780 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:05:42.785 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:42.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:42.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:43.716 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:43.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:43.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:43.734 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" started. +2017-07-10 16:05:44.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:44.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:44.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:44.704 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" started. +2017-07-10 16:05:45.693 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:45.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:45.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:45.705 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" started. +2017-07-10 16:05:46.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:46.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:46.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:46.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:46.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15578.0243ms +2017-07-10 16:05:46.269 +05:30 [Information] Request finished in 15587.024ms 200 application/json; charset=utf-8 +2017-07-10 16:05:46.269 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:05:46.273 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:46.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:46.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:46.689 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" started. +2017-07-10 16:05:47.181 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:47.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:47.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:47.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:47.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:47.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:47.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:47.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15559.3459ms +2017-07-10 16:05:47.257 +05:30 [Information] Request finished in 15573.0477ms 200 application/json; charset=utf-8 +2017-07-10 16:05:47.258 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:05:47.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:47.358 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:47.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:47.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:47.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:47.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:47.365 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:47.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:47.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:47.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:47.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:47.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:47.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 14601.8515ms +2017-07-10 16:05:47.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14656.9023ms +2017-07-10 16:05:47.395 +05:30 [Information] Request finished in 14625.5821ms 200 application/json; charset=utf-8 +2017-07-10 16:05:47.397 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:05:47.400 +05:30 [Information] Request finished in 14690.3202ms 200 application/json; charset=utf-8 +2017-07-10 16:05:47.405 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:05:47.410 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:47.411 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:47.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:47.425 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" started. +2017-07-10 16:05:47.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:47.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:47.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:47.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:47.457 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:47.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:47.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13773.7206ms +2017-07-10 16:05:47.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:47.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:47.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:47.467 +05:30 [Information] Request finished in 13788.6322ms 200 application/json; charset=utf-8 +2017-07-10 16:05:47.469 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" completed keep alive response. +2017-07-10 16:05:47.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:47.472 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:47.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12788.1525ms +2017-07-10 16:05:47.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:47.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:47.477 +05:30 [Information] Request finished in 12798.9956ms 200 application/json; charset=utf-8 +2017-07-10 16:05:47.478 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:05:47.483 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:47.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:47.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:48.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:48.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:48.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:48.223 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" started. +2017-07-10 16:05:49.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:49.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:49.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:49.238 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" started. +2017-07-10 16:05:50.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:05:50.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:05:50.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:05:50.203 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" started. +2017-07-10 16:05:51.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.190 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" started. +2017-07-10 16:05:51.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15590.634ms +2017-07-10 16:05:51.352 +05:30 [Information] Request finished in 15625.6334ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.353 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" completed keep alive response. +2017-07-10 16:05:51.355 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:51.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:51.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:51.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:51.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:51.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15605.9856ms +2017-07-10 16:05:51.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.474 +05:30 [Information] Request finished in 15635.5469ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.477 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" completed keep alive response. +2017-07-10 16:05:51.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15613.915ms +2017-07-10 16:05:51.491 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15604.3051ms +2017-07-10 16:05:51.497 +05:30 [Information] Request finished in 15644.0613ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.505 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:05:51.520 +05:30 [Information] Request finished in 15664.9244ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.521 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:05:51.575 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" started. +2017-07-10 16:05:51.575 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" started. +2017-07-10 16:05:51.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.612 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:51.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:51.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:51.661 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:51.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14917.2806ms +2017-07-10 16:05:51.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.734 +05:30 [Information] Request finished in 14985.531ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.734 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:05:51.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:51.740 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14038.5173ms +2017-07-10 16:05:51.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.756 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.758 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.764 +05:30 [Information] Request finished in 14069.3224ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.765 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" completed keep alive response. +2017-07-10 16:05:51.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.770 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:51.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:51.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:51.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13055.0004ms +2017-07-10 16:05:51.782 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 12074.3ms +2017-07-10 16:05:51.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 14997.845ms +2017-07-10 16:05:51.796 +05:30 [Information] Request finished in 12112.9792ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.795 +05:30 [Information] Request finished in 13098.9102ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.798 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" completed keep alive response. +2017-07-10 16:05:51.797 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:05:51.805 +05:30 [Information] Request finished in 15039.5813ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.807 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:51.812 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:05:51.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:51.813 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" started. +2017-07-10 16:05:51.808 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:51.831 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" started. +2017-07-10 16:05:51.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:51.888 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:51.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:51.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:51.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:51.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:51.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:51.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11129.4425ms +2017-07-10 16:05:51.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11204.8377ms +2017-07-10 16:05:51.906 +05:30 [Information] Request finished in 11139.2153ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.907 +05:30 [Information] Request finished in 11218.1267ms 200 application/json; charset=utf-8 +2017-07-10 16:05:51.914 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:05:51.915 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" completed keep alive response. +2017-07-10 16:05:51.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:51.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:51.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:51.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:52.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:52.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:52.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:52.691 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" started. +2017-07-10 16:05:53.702 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:53.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:53.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:53.718 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" started. +2017-07-10 16:05:54.693 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:05:54.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:05:54.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:05:54.703 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" started. +2017-07-10 16:05:55.678 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:05:55.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:05:55.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:05:55.706 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" started. +2017-07-10 16:05:56.696 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" started. +2017-07-10 16:05:56.715 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:56.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:56.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:56.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:56.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:56.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:56.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:56.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13976.9339ms +2017-07-10 16:05:56.746 +05:30 [Information] Request finished in 14024.6631ms 200 application/json; charset=utf-8 +2017-07-10 16:05:56.747 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" completed keep alive response. +2017-07-10 16:05:56.750 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:56.752 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:56.753 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:57.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:57.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:57.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:57.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:57.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15553.7353ms +2017-07-10 16:05:57.292 +05:30 [Information] Request finished in 15565.162ms 200 application/json; charset=utf-8 +2017-07-10 16:05:57.293 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" completed keep alive response. +2017-07-10 16:05:57.297 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:05:57.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:05:57.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:05:57.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:57.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:57.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:57.690 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" started. +2017-07-10 16:05:58.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:05:58.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:58.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:58.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:58.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15578.1193ms +2017-07-10 16:05:58.382 +05:30 [Information] Request finished in 15595.6123ms 200 application/json; charset=utf-8 +2017-07-10 16:05:58.383 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:05:58.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:05:58.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:05:58.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:05:58.404 +05:30 [Debug] Connection id ""0HL67F75CGTON"" started. +2017-07-10 16:05:59.188 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:05:59.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:05:59.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:05:59.195 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" started. +2017-07-10 16:05:59.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:05:59.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:05:59.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:05:59.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:05:59.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15605.0887ms +2017-07-10 16:05:59.336 +05:30 [Information] Request finished in 15633.4469ms 200 application/json; charset=utf-8 +2017-07-10 16:05:59.337 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" completed keep alive response. +2017-07-10 16:05:59.341 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:05:59.342 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:05:59.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:00.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:00.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:00.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:00.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:00.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:00.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:00.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:00.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15557.0539ms +2017-07-10 16:06:00.258 +05:30 [Information] Request finished in 15575.2847ms 200 application/json; charset=utf-8 +2017-07-10 16:06:00.259 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:06:00.267 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:00.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:00.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:01.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:01.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:01.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:01.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:01.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:01.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:01.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:01.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15587.372ms +2017-07-10 16:06:01.311 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:01.314 +05:30 [Information] Request finished in 15623.8152ms 200 application/json; charset=utf-8 +2017-07-10 16:06:01.314 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:01.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15036.8146ms +2017-07-10 16:06:01.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:01.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:01.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:01.327 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:01.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:01.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:01.332 +05:30 [Information] Request finished in 15051.8887ms 200 application/json; charset=utf-8 +2017-07-10 16:06:01.332 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" completed keep alive response. +2017-07-10 16:06:01.349 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:01.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:01.350 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:02.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:02.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:02.224 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:02.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:02.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:02.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:02.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:02.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15540.866ms +2017-07-10 16:06:02.731 +05:30 [Information] Request finished in 15549.396ms 200 application/json; charset=utf-8 +2017-07-10 16:06:02.732 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" completed keep alive response. +2017-07-10 16:06:02.743 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:02.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:02.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:02.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:02.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:02.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:02.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:02.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15547.9578ms +2017-07-10 16:06:02.931 +05:30 [Information] Request finished in 15576.5445ms 200 application/json; charset=utf-8 +2017-07-10 16:06:02.932 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" completed keep alive response. +2017-07-10 16:06:02.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:02.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:02.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:03.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:03.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:03.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:03.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:03.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:03.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:03.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:03.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:03.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:03.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:03.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:03.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15657.7529ms +2017-07-10 16:06:03.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:03.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:03.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:03.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:03.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15611.7922ms +2017-07-10 16:06:03.106 +05:30 [Information] Request finished in 15693.2512ms 200 application/json; charset=utf-8 +2017-07-10 16:06:03.108 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" completed keep alive response. +2017-07-10 16:06:03.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15622.1572ms +2017-07-10 16:06:03.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:03.116 +05:30 [Information] Request finished in 15624.8849ms 200 application/json; charset=utf-8 +2017-07-10 16:06:03.117 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:06:03.120 +05:30 [Information] Request finished in 15643.5792ms 200 application/json; charset=utf-8 +2017-07-10 16:06:03.122 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" completed keep alive response. +2017-07-10 16:06:03.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15652.7978ms +2017-07-10 16:06:03.133 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:03.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:03.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:03.139 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:06:03.142 +05:30 [Information] Request finished in 15676.6598ms 200 application/json; charset=utf-8 +2017-07-10 16:06:03.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:06:03.160 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" completed keep alive response. +2017-07-10 16:06:03.160 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:03.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:06:03.165 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:03.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:03.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:03.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:03.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:03.684 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:03.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:03.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:03.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:03.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:03.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:03.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:03.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15555.7548ms +2017-07-10 16:06:03.779 +05:30 [Information] Request finished in 15566.1509ms 200 application/json; charset=utf-8 +2017-07-10 16:06:03.780 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" completed keep alive response. +2017-07-10 16:06:03.785 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:03.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:03.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:04.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:04.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:04.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:04.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:04.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:04.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:04.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:04.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15565.9857ms +2017-07-10 16:06:04.791 +05:30 [Information] Request finished in 15575.4509ms 200 application/json; charset=utf-8 +2017-07-10 16:06:04.793 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:06:04.797 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:04.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:04.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:05.861 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:05.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:05.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:05.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:05.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:05.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:05.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:05.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:05.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:05.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:05.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:05.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:05.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:05.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:05.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:05.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:05.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:05.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 11206.5242ms +2017-07-10 16:06:05.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:05.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:05.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:05.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:05.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:05.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 13232.7566ms +2017-07-10 16:06:05.934 +05:30 [Information] Request finished in 11232.1411ms 200 application/json; charset=utf-8 +2017-07-10 16:06:05.935 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:06:05.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:05.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 12219.1474ms +2017-07-10 16:06:05.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 14001.1329ms +2017-07-10 16:06:05.948 +05:30 [Information] Request finished in 13258.9238ms 200 application/json; charset=utf-8 +2017-07-10 16:06:05.949 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" completed keep alive response. +2017-07-10 16:06:05.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:05.959 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:05.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:05.963 +05:30 [Information] Request finished in 12269.5494ms 200 application/json; charset=utf-8 +2017-07-10 16:06:05.964 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" completed keep alive response. +2017-07-10 16:06:05.970 +05:30 [Information] Request finished in 14037.0861ms 200 application/json; charset=utf-8 +2017-07-10 16:06:05.972 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" completed keep alive response. +2017-07-10 16:06:05.977 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:05.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:05.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:05.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 15744.4331ms +2017-07-10 16:06:05.997 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:05.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:05.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.003 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:06.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:06.006 +05:30 [Information] Request finished in 15817.159ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.007 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:06:06.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:06.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:06.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:06.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:06.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:06.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:06.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 10373.7262ms +2017-07-10 16:06:06.068 +05:30 [Information] Request finished in 10390.4415ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.069 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:06:06.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:06.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:06.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:06.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:06.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:06.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:06.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:06.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:06.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:06.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:06.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:06.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:06.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:06.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:06.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15032.672ms +2017-07-10 16:06:06.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:06.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:06.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 14726.8396ms +2017-07-10 16:06:06.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:06.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:06.240 +05:30 [Information] Request finished in 15058.6286ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.249 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:06:06.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:06.263 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:06.248 +05:30 [Information] Request finished in 14763.7115ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:06.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14633.9174ms +2017-07-10 16:06:06.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.274 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:06:06.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14861.7033ms +2017-07-10 16:06:06.291 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:06.289 +05:30 [Information] Request finished in 14704.5028ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.297 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" completed keep alive response. +2017-07-10 16:06:06.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:06.302 +05:30 [Information] Request finished in 14941.6931ms 200 application/json; charset=utf-8 +2017-07-10 16:06:06.304 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:06.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:06.306 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" completed keep alive response. +2017-07-10 16:06:06.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:06.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:06.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:06.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:07.178 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:07.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:07.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:07.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:07.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:07.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.443 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:07.488 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.489 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:07.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:07.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15734.8845ms +2017-07-10 16:06:07.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.541 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:07.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15752.8936ms +2017-07-10 16:06:07.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:07.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15728.094ms +2017-07-10 16:06:07.586 +05:30 [Information] Request finished in 15788.4717ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.587 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" completed keep alive response. +2017-07-10 16:06:07.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15808.9028ms +2017-07-10 16:06:07.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:07.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:07.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:07.609 +05:30 [Information] Request finished in 15787.6612ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.610 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:06:07.611 +05:30 [Information] Request finished in 15805.6011ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.618 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" completed keep alive response. +2017-07-10 16:06:07.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.652 +05:30 [Information] Request finished in 15863.8305ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.652 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:07.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15805.6974ms +2017-07-10 16:06:07.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:07.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:07.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:07.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 15679.7698ms +2017-07-10 16:06:07.725 +05:30 [Information] Request finished in 15869.5251ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.731 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" completed keep alive response. +2017-07-10 16:06:07.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:07.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:07.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:07.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.762 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:07.768 +05:30 [Information] Request finished in 15835.362ms 200 application/json; charset=utf-8 +2017-07-10 16:06:07.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:07.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:07.821 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:06:07.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15882.649ms +2017-07-10 16:06:07.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:07.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:07.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:07.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:07.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:07.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:07.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.035 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:08.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:08.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:08.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10297.1365ms +2017-07-10 16:06:08.238 +05:30 [Information] Request finished in 16048.3864ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.238 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" completed keep alive response. +2017-07-10 16:06:08.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 11228.6239ms +2017-07-10 16:06:08.312 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:08.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:08.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:08.335 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:08.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:08.341 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:08.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:08.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.386 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:08.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:08.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:08.399 +05:30 [Information] Request finished in 11566.4678ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.405 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" completed keep alive response. +2017-07-10 16:06:08.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:08.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.475 +05:30 [Information] Request finished in 10558.3374ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.476 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:06:08.492 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:08.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:08.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:08.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:08.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:08.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:08.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:08.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:08.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:08.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:08.522 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:08.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:08.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:08.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11287.0539ms +2017-07-10 16:06:08.542 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:08.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.648 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:08.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:08.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:08.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 9199.2225ms +2017-07-10 16:06:08.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.704 +05:30 [Information] Request finished in 11880.1067ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.705 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" completed keep alive response. +2017-07-10 16:06:08.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:08.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:08.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:08.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:08.731 +05:30 [Information] Request finished in 9352.9309ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.732 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:06:08.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9501.1999ms +2017-07-10 16:06:08.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8516.9868ms +2017-07-10 16:06:08.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:08.766 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:08.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:08.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:08.770 +05:30 [Information] Request finished in 9565.1581ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.772 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" completed keep alive response. +2017-07-10 16:06:08.818 +05:30 [Information] Request finished in 8579.9925ms 200 application/json; charset=utf-8 +2017-07-10 16:06:08.818 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:06:08.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:08.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:08.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:08.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:08.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8490.9077ms +2017-07-10 16:06:09.013 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:09.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:09.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:09.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 11419.5555ms +2017-07-10 16:06:09.237 +05:30 [Information] Request finished in 8749.6309ms 200 application/json; charset=utf-8 +2017-07-10 16:06:09.263 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" completed keep alive response. +2017-07-10 16:06:09.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:09.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:09.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:09.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:09.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:09.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:09.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.769 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:09.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:09.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:09.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:09.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:09.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:09.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:09.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 6135.7742ms +2017-07-10 16:06:09.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:09.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:09.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.209 +05:30 [Information] Request finished in 6278.9917ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.211 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:06:10.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.600 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:10.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4699.3359ms +2017-07-10 16:06:10.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:10.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:10.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5821.3854ms +2017-07-10 16:06:10.630 +05:30 [Information] Request finished in 4777.1349ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.632 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" completed keep alive response. +2017-07-10 16:06:10.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2278.948ms +2017-07-10 16:06:10.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:10.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.657 +05:30 [Information] Request finished in 5936.4331ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.659 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:10.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.671 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:10.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:10.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:10.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4325.4421ms +2017-07-10 16:06:10.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:10.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:10.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:10.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1950.4184ms +2017-07-10 16:06:10.808 +05:30 [Information] Request finished in 2418.5173ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.814 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" completed keep alive response. +2017-07-10 16:06:10.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:10.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:10.894 +05:30 [Information] Request finished in 11940.8532ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.898 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" completed keep alive response. +2017-07-10 16:06:10.927 +05:30 [Information] Request finished in 2094.1074ms 200 application/json; charset=utf-8 +2017-07-10 16:06:10.929 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" completed keep alive response. +2017-07-10 16:06:10.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2664.105ms +2017-07-10 16:06:11.074 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3995.3653ms +2017-07-10 16:06:11.095 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4801.5915ms +2017-07-10 16:06:11.126 +05:30 [Information] Request finished in 2803.9017ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.127 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" completed keep alive response. +2017-07-10 16:06:11.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2386.4193ms +2017-07-10 16:06:11.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.298 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4098.9929ms +2017-07-10 16:06:11.320 +05:30 [Information] Request finished in 2511.9377ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.321 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:06:11.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:11.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:11.366 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.410 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:11.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2764.3584ms +2017-07-10 16:06:11.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2836.189ms +2017-07-10 16:06:11.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5052.1423ms +2017-07-10 16:06:11.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:11.453 +05:30 [Information] Request finished in 4847.6906ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.454 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" completed keep alive response. +2017-07-10 16:06:11.456 +05:30 [Information] Request finished in 3190.1953ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.466 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:06:11.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.489 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.536 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.557 +05:30 [Information] Request finished in 4147.3353ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.558 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" completed keep alive response. +2017-07-10 16:06:11.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2897.2162ms +2017-07-10 16:06:11.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8322.7101ms +2017-07-10 16:06:11.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9342.8602ms +2017-07-10 16:06:11.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5442.1627ms +2017-07-10 16:06:11.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9832.883ms +2017-07-10 16:06:11.601 +05:30 [Information] Request finished in 9398.3073ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.603 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" completed keep alive response. +2017-07-10 16:06:11.604 +05:30 [Information] Request finished in 3084.5518ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.606 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:06:11.621 +05:30 [Information] Request finished in 3191.9532ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.622 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:11.626 +05:30 [Information] Request finished in 5623.9761ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.628 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:06:11.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5362.9341ms +2017-07-10 16:06:11.641 +05:30 [Information] Request finished in 5105.2869ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.642 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:06:11.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5234.7172ms +2017-07-10 16:06:11.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.668 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:11.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:11.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:11.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3517.7993ms +2017-07-10 16:06:11.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1889.9894ms +2017-07-10 16:06:11.685 +05:30 [Information] Request finished in 5504.1947ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.686 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" completed keep alive response. +2017-07-10 16:06:11.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:11.695 +05:30 [Information] Request finished in 3803.3283ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.698 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:06:11.702 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:11.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:11.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:11.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:11.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.793 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.792 +05:30 [Information] Request finished in 2867.2812ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.800 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" completed keep alive response. +2017-07-10 16:06:11.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.792 +05:30 [Information] Request finished in 5461.6801ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.810 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:06:11.831 +05:30 [Information] Request finished in 10253.5125ms 200 application/json; charset=utf-8 +2017-07-10 16:06:11.833 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" completed keep alive response. +2017-07-10 16:06:11.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:11.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 8345.8567ms +2017-07-10 16:06:11.896 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2981.0477ms +2017-07-10 16:06:11.900 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:11.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:11.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:11.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:11.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:11.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:11.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:11.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:11.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:11.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:11.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:11.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:11.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:11.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:11.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:11.980 +05:30 [Information] Request finished in 5367.0483ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.005 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:06:12.028 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:12.004 +05:30 [Information] Request finished in 8762.422ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5893.5656ms +2017-07-10 16:06:12.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:12.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.043 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" completed keep alive response. +2017-07-10 16:06:12.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:12.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:12.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.111 +05:30 [Information] Request finished in 6131.3097ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.112 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" completed keep alive response. +2017-07-10 16:06:12.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10758.4396ms +2017-07-10 16:06:12.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8627.6231ms +2017-07-10 16:06:12.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4497.4711ms +2017-07-10 16:06:12.155 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:12.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:12.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:12.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:12.153 +05:30 [Information] Request finished in 8466.9596ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.168 +05:30 [Information] Request finished in 9389.6578ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.168 +05:30 [Debug] Connection id ""0HL67F75CGTON"" completed keep alive response. +2017-07-10 16:06:12.173 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" completed keep alive response. +2017-07-10 16:06:12.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.178 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3848.5762ms +2017-07-10 16:06:12.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 6129.2852ms +2017-07-10 16:06:12.203 +05:30 [Information] Request finished in 10809.6537ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.204 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" completed keep alive response. +2017-07-10 16:06:12.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:12.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:12.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:12.245 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:12.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:12.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:12.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 8428.194ms +2017-07-10 16:06:12.297 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.305 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.332 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.339 +05:30 [Information] Request finished in 8517.5298ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.347 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" completed keep alive response. +2017-07-10 16:06:12.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3612.8658ms +2017-07-10 16:06:12.445 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:12.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:12.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:12.463 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:12.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:12.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:12.481 +05:30 [Information] Request finished in 6220.3147ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.524 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" completed keep alive response. +2017-07-10 16:06:12.536 +05:30 [Information] Request finished in 4404.5866ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.537 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" completed keep alive response. +2017-07-10 16:06:12.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3966.9495ms +2017-07-10 16:06:12.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.614 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.643 +05:30 [Information] Request finished in 4276.7885ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.644 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" completed keep alive response. +2017-07-10 16:06:12.661 +05:30 [Information] Request finished in 4210.194ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.666 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" completed keep alive response. +2017-07-10 16:06:12.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11225.638ms +2017-07-10 16:06:12.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.729 +05:30 [Information] Request finished in 4584.4526ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.730 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:06:12.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:12.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:12.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:12.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:12.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:12.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 1451.4803ms +2017-07-10 16:06:12.794 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:12.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:12.798 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:12.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:12.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9007.8386ms +2017-07-10 16:06:12.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:12.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:12.803 +05:30 [Information] Request finished in 3446.2805ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.808 +05:30 [Information] Request finished in 2118.6279ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.835 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:12.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 7940.8532ms +2017-07-10 16:06:12.831 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" completed keep alive response. +2017-07-10 16:06:12.853 +05:30 [Information] Request finished in 4573.7562ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.867 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:06:12.878 +05:30 [Information] Request finished in 9691.2529ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.880 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" completed keep alive response. +2017-07-10 16:06:12.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.901 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:12.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:12.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:12.914 +05:30 [Information] Request finished in 8082.4201ms 200 application/json; charset=utf-8 +2017-07-10 16:06:12.915 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" completed keep alive response. +2017-07-10 16:06:12.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:12.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:12.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:12.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:12.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:12.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:12.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:12.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:13.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:13.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:13.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:13.118 +05:30 [Information] Request finished in 11374.6558ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.119 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" completed keep alive response. +2017-07-10 16:06:13.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.145 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 9228.5437ms +2017-07-10 16:06:13.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4802.5996ms +2017-07-10 16:06:13.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:13.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.226 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:13.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:13.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:13.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 1477.3422ms +2017-07-10 16:06:13.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:13.262 +05:30 [Information] Request finished in 1762.0108ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.264 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:06:13.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1569.7814ms +2017-07-10 16:06:13.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6930.8444ms +2017-07-10 16:06:13.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5476.2421ms +2017-07-10 16:06:13.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:13.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:13.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:13.319 +05:30 [Information] Request finished in 1667.865ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.324 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" completed keep alive response. +2017-07-10 16:06:13.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4059.3407ms +2017-07-10 16:06:13.385 +05:30 [Information] Request finished in 10023.5044ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.413 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" completed keep alive response. +2017-07-10 16:06:13.401 +05:30 [Information] Request finished in 6964.0126ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.417 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" completed keep alive response. +2017-07-10 16:06:13.413 +05:30 [Information] Request finished in 5658.6914ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.422 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" completed keep alive response. +2017-07-10 16:06:13.431 +05:30 [Information] Request finished in 5563.5776ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.436 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:06:13.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:13.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.468 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 10514.68ms +2017-07-10 16:06:13.499 +05:30 [Information] Request finished in 4524.3027ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.500 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:06:13.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:13.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:13.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:13.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:13.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:13.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2432.3022ms +2017-07-10 16:06:13.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:13.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:13.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:13.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:13.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:13.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:13.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:13.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:13.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:13.789 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:06:13.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:06:13.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:06:13.821 +05:30 [Information] Request finished in 2699.4401ms 200 application/json; charset=utf-8 +2017-07-10 16:06:13.821 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" completed keep alive response. +2017-07-10 16:06:13.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 1820.1273ms +2017-07-10 16:06:13.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2587.2296ms +2017-07-10 16:06:13.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:14.061 +05:30 [Information] Request finished in 2279.9839ms 200 application/json; charset=utf-8 +2017-07-10 16:06:14.069 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:14.131 +05:30 [Information] Request finished in 3056.5184ms 200 application/json; charset=utf-8 +2017-07-10 16:06:14.134 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" completed keep alive response. +2017-07-10 16:06:14.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:14.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:14.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:14.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:14.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:14.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:14.313 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:14.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:14.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:14.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:14.454 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3639.5465ms +2017-07-10 16:06:14.503 +05:30 [Information] Request finished in 10564.4873ms 200 application/json; charset=utf-8 +2017-07-10 16:06:14.503 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:06:14.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:14.625 +05:30 [Information] Request finished in 3854.8903ms 200 application/json; charset=utf-8 +2017-07-10 16:06:14.626 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" completed keep alive response. +2017-07-10 16:06:14.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:14.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:14.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:14.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:14.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 15586.7112ms +2017-07-10 16:06:14.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:14.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.852 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:14.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:14.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:14.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:14.947 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:14.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:14.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:14.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:14.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3853.579ms +2017-07-10 16:06:14.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:14.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:15.019 +05:30 [Information] Request finished in 4085.0209ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.023 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" completed keep alive response. +2017-07-10 16:06:15.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:15.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:15.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2823.3608ms +2017-07-10 16:06:15.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2499.8283ms +2017-07-10 16:06:15.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:15.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4307.6979ms +2017-07-10 16:06:15.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:15.097 +05:30 [Information] Request finished in 2923.059ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.102 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" completed keep alive response. +2017-07-10 16:06:15.118 +05:30 [Information] Request finished in 2680.5445ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.121 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" completed keep alive response. +2017-07-10 16:06:15.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:15.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3162.9038ms +2017-07-10 16:06:15.229 +05:30 [Information] Request finished in 4824.9112ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3473.2972ms +2017-07-10 16:06:15.256 +05:30 [Information] Request finished in 3358.8861ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.256 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:06:15.270 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" completed keep alive response. +2017-07-10 16:06:15.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2466.273ms +2017-07-10 16:06:15.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:15.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:15.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:15.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:15.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:15.411 +05:30 [Information] Request finished in 2788.0688ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.417 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" completed keep alive response. +2017-07-10 16:06:15.440 +05:30 [Information] Request finished in 5865.741ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.441 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" completed keep alive response. +2017-07-10 16:06:15.459 +05:30 [Information] Request finished in 16450.1901ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.460 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" completed keep alive response. +2017-07-10 16:06:15.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3070.6344ms +2017-07-10 16:06:15.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:15.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:15.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:15.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:15.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:15.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:15.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:15.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.695 +05:30 [Information] Request finished in 3551ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4017.3955ms +2017-07-10 16:06:15.713 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:06:15.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3680.8891ms +2017-07-10 16:06:15.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:15.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:15.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:15.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:15.882 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:15.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:15.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:15.912 +05:30 [Information] Request finished in 4189.4805ms 200 application/json; charset=utf-8 +2017-07-10 16:06:15.927 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:06:16.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:16.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:16.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:16.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:16.105 +05:30 [Information] Request finished in 4089.5443ms 200 application/json; charset=utf-8 +2017-07-10 16:06:16.106 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" completed keep alive response. +2017-07-10 16:06:16.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:16.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:16.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:16.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:16.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3368.5199ms +2017-07-10 16:06:16.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:16.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.297 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:16.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:16.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:16.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:16.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:16.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:16.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4820.8427ms +2017-07-10 16:06:16.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:16.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:16.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:16.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:16.510 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:16.526 +05:30 [Information] Request finished in 4011.3022ms 200 application/json; charset=utf-8 +2017-07-10 16:06:16.526 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" completed keep alive response. +2017-07-10 16:06:16.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4601.7893ms +2017-07-10 16:06:16.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:16.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:16.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:16.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4412.7031ms +2017-07-10 16:06:16.729 +05:30 [Information] Request finished in 4732.6766ms 200 application/json; charset=utf-8 +2017-07-10 16:06:16.733 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" completed keep alive response. +2017-07-10 16:06:16.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4560.9125ms +2017-07-10 16:06:16.779 +05:30 [Information] Request finished in 5066.5653ms 200 application/json; charset=utf-8 +2017-07-10 16:06:16.784 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:06:16.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:16.858 +05:30 [Information] Request finished in 4987.2188ms 200 application/json; charset=utf-8 +2017-07-10 16:06:16.891 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:06:16.894 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:16.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:16.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:16.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:16.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:16.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:16.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:16.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:16.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:16.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:16.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:16.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:17.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5214.2556ms +2017-07-10 16:06:17.199 +05:30 [Information] Request finished in 5259.1439ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.199 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" completed keep alive response. +2017-07-10 16:06:17.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.308 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:17.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:17.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:17.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:17.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:17.408 +05:30 [Information] Request finished in 5559.0535ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.409 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:06:17.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:17.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:17.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:17.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:17.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:17.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5339.521ms +2017-07-10 16:06:17.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5241.9602ms +2017-07-10 16:06:17.714 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:17.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:17.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:17.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:06:17.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4796.3252ms +2017-07-10 16:06:17.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:17.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4976.1522ms +2017-07-10 16:06:17.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4943.0998ms +2017-07-10 16:06:17.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:17.784 +05:30 [Information] Request finished in 5024.0791ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.785 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:06:17.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:17.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:17.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:17.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:17.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:17.840 +05:30 [Information] Request finished in 4899.9939ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.840 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:17.879 +05:30 [Information] Request finished in 6449.3677ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.903 +05:30 [Information] Request finished in 5845.5489ms 200 application/json; charset=utf-8 +2017-07-10 16:06:17.907 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:06:17.906 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:06:17.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:17.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:17.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:17.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3504.9837ms +2017-07-10 16:06:17.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:17.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:18.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.307 +05:30 [Information] Request finished in 3926.6017ms 200 application/json; charset=utf-8 +2017-07-10 16:06:18.387 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:18.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4438.0131ms +2017-07-10 16:06:18.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:18.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5370.5672ms +2017-07-10 16:06:18.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:18.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:18.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:18.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:18.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:18.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:18.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:18.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:18.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:18.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:18.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:18.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:18.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:18.778 +05:30 [Information] Request finished in 4933.7846ms 200 application/json; charset=utf-8 +2017-07-10 16:06:18.780 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:06:18.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:18.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:18.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:18.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5578.9016ms +2017-07-10 16:06:18.890 +05:30 [Information] Request finished in 5754.8882ms 200 application/json; charset=utf-8 +2017-07-10 16:06:18.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:18.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:18.928 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:06:18.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:18.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:18.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:18.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:18.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:19.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:19.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:19.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:19.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:19.132 +05:30 [Information] Request finished in 6012.2335ms 200 application/json; charset=utf-8 +2017-07-10 16:06:19.133 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" completed keep alive response. +2017-07-10 16:06:19.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6192.8319ms +2017-07-10 16:06:19.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5857.1843ms +2017-07-10 16:06:19.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:19.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.286 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:19.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:19.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:19.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5478.8648ms +2017-07-10 16:06:19.489 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:19.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:19.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:19.517 +05:30 [Information] Request finished in 7053.3358ms 200 application/json; charset=utf-8 +2017-07-10 16:06:19.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.555 +05:30 [Debug] Connection id ""0HL67F75CGTON"" completed keep alive response. +2017-07-10 16:06:19.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:19.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.620 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6671.9576ms +2017-07-10 16:06:19.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:19.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4469.97ms +2017-07-10 16:06:19.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3425.4273ms +2017-07-10 16:06:19.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:19.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:19.781 +05:30 [Information] Request finished in 6037.9061ms 200 application/json; charset=utf-8 +2017-07-10 16:06:19.789 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" completed keep alive response. +2017-07-10 16:06:19.831 +05:30 [Information] Request finished in 5161.5911ms 200 application/json; charset=utf-8 +2017-07-10 16:06:19.831 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:06:19.871 +05:30 [Information] Request finished in 6149.8511ms 200 application/json; charset=utf-8 +2017-07-10 16:06:19.872 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" completed keep alive response. +2017-07-10 16:06:19.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:19.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:19.966 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:19.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:19.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:19.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2922.473ms +2017-07-10 16:06:20.029 +05:30 [Information] Request finished in 3738.2508ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.030 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" completed keep alive response. +2017-07-10 16:06:20.058 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:20.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:20.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:20.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.101 +05:30 [Information] Request finished in 3130.3566ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.101 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:06:20.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:20.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 6405.2034ms +2017-07-10 16:06:20.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:20.267 +05:30 [Information] Request finished in 6767.6009ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.269 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" completed keep alive response. +2017-07-10 16:06:20.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5487.3845ms +2017-07-10 16:06:20.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:20.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:20.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:20.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.434 +05:30 [Information] Request finished in 6162.581ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.435 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" completed keep alive response. +2017-07-10 16:06:20.508 +05:30 [Information] Request finished in 5981.8154ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.516 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:06:20.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:20.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:20.606 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:20.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:20.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.756 +05:30 [Information] Request finished in 6887.4173ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.757 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" completed keep alive response. +2017-07-10 16:06:20.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4182.6903ms +2017-07-10 16:06:20.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:20.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:20.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:20.961 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:20.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:20.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:20.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:20.983 +05:30 [Information] Request finished in 5168.2723ms 200 application/json; charset=utf-8 +2017-07-10 16:06:20.985 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" completed keep alive response. +2017-07-10 16:06:21.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:21.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:21.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:21.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:21.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:21.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:21.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4908.6265ms +2017-07-10 16:06:21.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:21.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:21.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:21.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:21.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:21.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:21.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:21.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 8233.5223ms +2017-07-10 16:06:21.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:21.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:21.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:21.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:21.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:21.977 +05:30 [Information] Request finished in 5688.9986ms 200 application/json; charset=utf-8 +2017-07-10 16:06:21.985 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:06:22.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2383.6556ms +2017-07-10 16:06:22.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4221.1ms +2017-07-10 16:06:22.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3361.3393ms +2017-07-10 16:06:22.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4857.7243ms +2017-07-10 16:06:22.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4407.9082ms +2017-07-10 16:06:22.171 +05:30 [Information] Request finished in 4801.715ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.171 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" completed keep alive response. +2017-07-10 16:06:22.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:22.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:22.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:22.219 +05:30 [Information] Request finished in 5078.7018ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.220 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" completed keep alive response. +2017-07-10 16:06:22.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:22.259 +05:30 [Information] Request finished in 2766.2971ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.260 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:06:22.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5134.1943ms +2017-07-10 16:06:22.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:22.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3551.6459ms +2017-07-10 16:06:22.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4267.2783ms +2017-07-10 16:06:22.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.404 +05:30 [Information] Request finished in 5753.0247ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.406 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" completed keep alive response. +2017-07-10 16:06:22.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6225.2374ms +2017-07-10 16:06:22.471 +05:30 [Information] Request finished in 4895.0329ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.475 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:06:22.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.479 +05:30 [Information] Request finished in 4153.3925ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.484 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:06:22.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:22.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:22.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:22.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:22.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4418.5146ms +2017-07-10 16:06:22.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 10302.3545ms +2017-07-10 16:06:22.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:22.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:22.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:22.703 +05:30 [Information] Request finished in 10469.3781ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:22.709 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" completed keep alive response. +2017-07-10 16:06:22.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:22.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5048.3887ms +2017-07-10 16:06:22.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2597.3616ms +2017-07-10 16:06:22.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:22.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:22.948 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:22.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:22.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:22.960 +05:30 [Information] Request finished in 5822.706ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.962 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" completed keep alive response. +2017-07-10 16:06:22.964 +05:30 [Information] Request finished in 3201.3532ms 200 application/json; charset=utf-8 +2017-07-10 16:06:22.969 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:06:22.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7443.5691ms +2017-07-10 16:06:22.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3782.1933ms +2017-07-10 16:06:22.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6839.5301ms +2017-07-10 16:06:22.990 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:22.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:22.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:22.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:22.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.005 +05:30 [Information] Request finished in 9002.1218ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.006 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" completed keep alive response. +2017-07-10 16:06:23.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 6515.5609ms +2017-07-10 16:06:23.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3704.4793ms +2017-07-10 16:06:23.013 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6316.6529ms +2017-07-10 16:06:23.017 +05:30 [Information] Request finished in 8311.14ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.020 +05:30 [Information] Request finished in 4305.8701ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.025 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:06:23.020 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" completed keep alive response. +2017-07-10 16:06:23.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.039 +05:30 [Information] Request finished in 3981.1113ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.041 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" completed keep alive response. +2017-07-10 16:06:23.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3872.7451ms +2017-07-10 16:06:23.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.106 +05:30 [Information] Request finished in 3776.0722ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 8388.1869ms +2017-07-10 16:06:23.134 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:23.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.199 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 9689.0734ms +2017-07-10 16:06:23.253 +05:30 [Information] Request finished in 7352.9604ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.254 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" completed keep alive response. +2017-07-10 16:06:23.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:23.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:23.270 +05:30 [Information] Request finished in 9012.6278ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.278 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:06:23.286 +05:30 [Information] Request finished in 9684.0654ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.290 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" completed keep alive response. +2017-07-10 16:06:23.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 10370.7794ms +2017-07-10 16:06:23.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 8473.6846ms +2017-07-10 16:06:23.315 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.326 +05:30 [Information] Request finished in 4602.3624ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.326 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:06:23.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.369 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:23.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:23.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:23.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.399 +05:30 [Information] Request finished in 10769.0834ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.405 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" completed keep alive response. +2017-07-10 16:06:23.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 9989.6816ms +2017-07-10 16:06:23.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:23.475 +05:30 [Information] Request finished in 9802.0457ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:23.492 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" completed keep alive response. +2017-07-10 16:06:23.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:23.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:23.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:23.572 +05:30 [Information] Request finished in 11398.9158ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.576 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" completed keep alive response. +2017-07-10 16:06:23.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5497.2165ms +2017-07-10 16:06:23.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:23.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:23.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:23.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:23.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:23.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:23.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:23.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:23.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:23.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:23.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:23.759 +05:30 [Information] Request finished in 7549.8558ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 10688.5017ms +2017-07-10 16:06:23.777 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" completed keep alive response. +2017-07-10 16:06:23.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3766.5348ms +2017-07-10 16:06:23.795 +05:30 [Information] Request finished in 5872.7971ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.795 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:06:23.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:23.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:23.844 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:23.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:23.877 +05:30 [Information] Request finished in 3924.6302ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.891 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:23.930 +05:30 [Information] Request finished in 10927.2318ms 200 application/json; charset=utf-8 +2017-07-10 16:06:23.933 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" completed keep alive response. +2017-07-10 16:06:24.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:24.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:24.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:24.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:24.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:24.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:24.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:24.275 +05:30 [Information] Request finished in 9137.9039ms 200 application/json; charset=utf-8 +2017-07-10 16:06:24.275 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" completed keep alive response. +2017-07-10 16:06:24.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:24.435 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:24.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:24.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:24.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:24.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:24.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:24.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:24.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3973.5709ms +2017-07-10 16:06:24.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:24.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:24.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3629.1295ms +2017-07-10 16:06:24.818 +05:30 [Information] Request finished in 10635.1049ms 200 application/json; charset=utf-8 +2017-07-10 16:06:24.819 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" completed keep alive response. +2017-07-10 16:06:24.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:24.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:24.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:24.872 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:24.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:24.891 +05:30 [Information] Request finished in 4670.0149ms 200 application/json; charset=utf-8 +2017-07-10 16:06:24.892 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:06:24.891 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:24.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:24.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:24.929 +05:30 [Information] Request finished in 9028.4555ms 200 application/json; charset=utf-8 +2017-07-10 16:06:24.930 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" completed keep alive response. +2017-07-10 16:06:24.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:24.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:24.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2201.5817ms +2017-07-10 16:06:24.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:24.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:24.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:24.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:06:25.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:06:25.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:06:25.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4337.1751ms +2017-07-10 16:06:25.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:25.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:25.119 +05:30 [Information] Request finished in 2488.872ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.124 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:06:25.102 +05:30 [Information] Request finished in 4904.0822ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.131 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:06:25.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3486.0026ms +2017-07-10 16:06:25.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:25.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:25.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:25.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:25.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.348 +05:30 [Information] Request finished in 4417.9995ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.349 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:06:25.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2284.116ms +2017-07-10 16:06:25.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:25.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:25.386 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:25.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:25.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 12909.0559ms +2017-07-10 16:06:25.465 +05:30 [Information] Request finished in 2375.6977ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.471 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" completed keep alive response. +2017-07-10 16:06:25.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:25.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:25.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:25.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:25.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:25.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:25.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:25.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:25.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2123.1357ms +2017-07-10 16:06:25.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:25.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:25.765 +05:30 [Information] Request finished in 13979.6476ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.765 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" completed keep alive response. +2017-07-10 16:06:25.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:25.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:25.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 9461.0269ms +2017-07-10 16:06:25.913 +05:30 [Information] Request finished in 6944.5552ms 200 application/json; charset=utf-8 +2017-07-10 16:06:25.913 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" completed keep alive response. +2017-07-10 16:06:25.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2054.8534ms +2017-07-10 16:06:25.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:25.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:25.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.025 +05:30 [Information] Request finished in 4592.7545ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.035 +05:30 [Debug] Connection id ""0HL67F75CGTON"" completed keep alive response. +2017-07-10 16:06:26.064 +05:30 [Information] Request finished in 2408.3972ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.065 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" completed keep alive response. +2017-07-10 16:06:26.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:26.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:26.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:26.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4209.9414ms +2017-07-10 16:06:26.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.288 +05:30 [Information] Request finished in 2448.3815ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.288 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" completed keep alive response. +2017-07-10 16:06:26.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.312 +05:30 [Information] Request finished in 5228.3368ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.316 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" completed keep alive response. +2017-07-10 16:06:26.334 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:26.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:26.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:26.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3878.0428ms +2017-07-10 16:06:26.543 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:26.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2390.0266ms +2017-07-10 16:06:26.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:26.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2076.9671ms +2017-07-10 16:06:26.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.747 +05:30 [Information] Request finished in 4319.2915ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.749 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" completed keep alive response. +2017-07-10 16:06:26.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:26.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:26.865 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:26.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:26.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:26.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3747.7849ms +2017-07-10 16:06:26.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:26.963 +05:30 [Information] Request finished in 4151.2313ms 200 application/json; charset=utf-8 +2017-07-10 16:06:26.965 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" completed keep alive response. +2017-07-10 16:06:26.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3954.4782ms +2017-07-10 16:06:26.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:26.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:26.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:26.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.039 +05:30 [Information] Request finished in 4004.4396ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.040 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" completed keep alive response. +2017-07-10 16:06:27.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:27.246 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:27.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:27.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:27.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:27.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:27.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:27.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:27.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4603.5628ms +2017-07-10 16:06:27.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:27.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3233.089ms +2017-07-10 16:06:27.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.530 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.598 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:27.623 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4473.2926ms +2017-07-10 16:06:27.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4444.5841ms +2017-07-10 16:06:27.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:27.695 +05:30 [Information] Request finished in 4619.7258ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.696 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" completed keep alive response. +2017-07-10 16:06:27.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2639.4531ms +2017-07-10 16:06:27.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4261.2515ms +2017-07-10 16:06:27.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4053.4729ms +2017-07-10 16:06:27.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:27.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:27.792 +05:30 [Information] Request finished in 6859.8394ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.793 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" completed keep alive response. +2017-07-10 16:06:27.795 +05:30 [Information] Request finished in 2796.7066ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.800 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" completed keep alive response. +2017-07-10 16:06:27.806 +05:30 [Information] Request finished in 4497.7124ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.807 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" completed keep alive response. +2017-07-10 16:06:27.818 +05:30 [Information] Request finished in 4285.5707ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.820 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" completed keep alive response. +2017-07-10 16:06:27.824 +05:30 [Information] Request finished in 4579.4621ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.826 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" completed keep alive response. +2017-07-10 16:06:27.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4469.9872ms +2017-07-10 16:06:27.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:27.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:27.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:27.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:27.889 +05:30 [Information] Request finished in 4809.1432ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.897 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" completed keep alive response. +2017-07-10 16:06:27.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3338.2285ms +2017-07-10 16:06:27.969 +05:30 [Information] Request finished in 4582.8327ms 200 application/json; charset=utf-8 +2017-07-10 16:06:27.971 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" completed keep alive response. +2017-07-10 16:06:27.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4528.2944ms +2017-07-10 16:06:28.026 +05:30 [Information] Request finished in 2879.9713ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.026 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" completed keep alive response. +2017-07-10 16:06:28.034 +05:30 [Information] Request finished in 2909.7756ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.036 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" completed keep alive response. +2017-07-10 16:06:28.047 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:28.076 +05:30 [Information] Request finished in 4735.7926ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.081 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" completed keep alive response. +2017-07-10 16:06:28.110 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:28.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:28.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:28.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:28.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:28.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:28.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.258 +05:30 [Information] Request finished in 3976.7021ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.259 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" completed keep alive response. +2017-07-10 16:06:28.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3009.0821ms +2017-07-10 16:06:28.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:28.290 +05:30 [Information] Request finished in 10198.1098ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3404.6429ms +2017-07-10 16:06:28.309 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" completed keep alive response. +2017-07-10 16:06:28.333 +05:30 [Information] Request finished in 4838.9653ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.337 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:06:28.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:28.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:28.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:28.400 +05:30 [Information] Request finished in 3844.2525ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.437 +05:30 [Debug] Connection id ""0HL67F75CGTND"" completed keep alive response. +2017-07-10 16:06:28.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:28.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:28.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:28.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:28.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2856.7569ms +2017-07-10 16:06:28.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.559 +05:30 [Information] Request finished in 3661.7558ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.560 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" completed keep alive response. +2017-07-10 16:06:28.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3562.1295ms +2017-07-10 16:06:28.572 +05:30 [Information] Request finished in 4541.1696ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.574 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" completed keep alive response. +2017-07-10 16:06:28.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:28.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:06:28.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:28.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 7743.4502ms +2017-07-10 16:06:28.918 +05:30 [Information] Request finished in 8573.4367ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.919 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" completed keep alive response. +2017-07-10 16:06:28.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:28.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:28.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:06:28.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:06:28.947 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:06:28.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:28.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2602.8828ms +2017-07-10 16:06:28.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2786.4969ms +2017-07-10 16:06:28.971 +05:30 [Information] Request finished in 3165.5132ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.973 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" completed keep alive response. +2017-07-10 16:06:28.985 +05:30 [Information] Request finished in 2890.7349ms 200 application/json; charset=utf-8 +2017-07-10 16:06:28.986 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" completed keep alive response. +2017-07-10 16:06:29.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:29.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:29.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:29.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:29.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3380.7041ms +2017-07-10 16:06:29.121 +05:30 [Information] Request finished in 3733.4086ms 200 application/json; charset=utf-8 +2017-07-10 16:06:29.121 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" completed keep alive response. +2017-07-10 16:06:29.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:29.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:29.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:29.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:29.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2396.1192ms +2017-07-10 16:06:29.650 +05:30 [Information] Request finished in 2550.9301ms 200 application/json; charset=utf-8 +2017-07-10 16:06:29.651 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" completed keep alive response. +2017-07-10 16:06:30.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.338 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2411.683ms +2017-07-10 16:06:30.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.374 +05:30 [Information] Request finished in 2528.1034ms 200 application/json; charset=utf-8 +2017-07-10 16:06:30.374 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" completed keep alive response. +2017-07-10 16:06:30.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3489.1302ms +2017-07-10 16:06:30.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:30.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:30.397 +05:30 [Information] Request finished in 4477.9454ms 200 application/json; charset=utf-8 +2017-07-10 16:06:30.398 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" completed keep alive response. +2017-07-10 16:06:30.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:30.431 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:30.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:30.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:30.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3459.7692ms +2017-07-10 16:06:30.445 +05:30 [Information] Request finished in 3585.6352ms 200 application/json; charset=utf-8 +2017-07-10 16:06:30.445 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" completed keep alive response. +2017-07-10 16:06:30.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.841 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:30.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3596.8435ms +2017-07-10 16:06:30.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2534.7105ms +2017-07-10 16:06:30.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:30.984 +05:30 [Information] Request finished in 3984.1749ms 200 application/json; charset=utf-8 +2017-07-10 16:06:30.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:30.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3607.5194ms +2017-07-10 16:06:30.985 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" completed keep alive response. +2017-07-10 16:06:30.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:30.996 +05:30 [Information] Request finished in 2630.663ms 200 application/json; charset=utf-8 +2017-07-10 16:06:30.997 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" completed keep alive response. +2017-07-10 16:06:31.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:31.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:31.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:31.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:31.018 +05:30 [Information] Request finished in 4684.9755ms 200 application/json; charset=utf-8 +2017-07-10 16:06:31.021 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" completed keep alive response. +2017-07-10 16:06:31.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2504.1285ms +2017-07-10 16:06:31.117 +05:30 [Information] Request finished in 2622.8306ms 200 application/json; charset=utf-8 +2017-07-10 16:06:31.117 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" completed keep alive response. +2017-07-10 16:06:31.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:31.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:31.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:31.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:31.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:31.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2380.6488ms +2017-07-10 16:06:31.373 +05:30 [Information] Request finished in 2432.0013ms 200 application/json; charset=utf-8 +2017-07-10 16:06:31.374 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" completed keep alive response. +2017-07-10 16:06:31.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:06:31.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:31.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:06:31.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:31.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:06:31.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:31.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3284.5801ms +2017-07-10 16:06:31.434 +05:30 [Information] Request finished in 3600.0442ms 200 application/json; charset=utf-8 +2017-07-10 16:06:31.434 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" completed keep alive response. +2017-07-10 16:06:31.501 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:31.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:31.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:31.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:31.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3391.1231ms +2017-07-10 16:06:31.584 +05:30 [Information] Request finished in 3562.9548ms 200 application/json; charset=utf-8 +2017-07-10 16:06:31.585 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" completed keep alive response. +2017-07-10 16:06:32.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:32.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:32.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:32.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:32.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1241.8626ms +2017-07-10 16:06:32.658 +05:30 [Information] Request finished in 1265.7812ms 200 application/json; charset=utf-8 +2017-07-10 16:06:32.658 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:06:33.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:33.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:33.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:33.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:33.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2234.9479ms +2017-07-10 16:06:33.256 +05:30 [Information] Request finished in 2258.9625ms 200 application/json; charset=utf-8 +2017-07-10 16:06:33.257 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:06:33.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:33.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:06:33.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:33.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:33.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:33.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3333.5893ms +2017-07-10 16:06:33.779 +05:30 [Information] Request finished in 3363.9836ms 200 application/json; charset=utf-8 +2017-07-10 16:06:33.780 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" completed keep alive response. +2017-07-10 16:06:33.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:06:33.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:06:33.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:06:33.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3421.5972ms +2017-07-10 16:06:33.912 +05:30 [Information] Request finished in 3491.3609ms 200 application/json; charset=utf-8 +2017-07-10 16:06:33.913 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" completed keep alive response. +2017-07-10 16:07:25.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:07:25.545 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:07:25.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:07:25.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:07:25.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:07:25.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:07:27.295 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" received FIN. +2017-07-10 16:07:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTON"" received FIN. +2017-07-10 16:07:27.295 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" received FIN. +2017-07-10 16:07:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" received FIN. +2017-07-10 16:07:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" disconnecting. +2017-07-10 16:07:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" sending FIN. +2017-07-10 16:07:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" sent FIN with status "0". +2017-07-10 16:07:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTNP"" stopped. +2017-07-10 16:07:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" received FIN. +2017-07-10 16:07:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" received FIN. +2017-07-10 16:07:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" disconnecting. +2017-07-10 16:07:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" disconnecting. +2017-07-10 16:07:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" received FIN. +2017-07-10 16:07:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" disconnecting. +2017-07-10 16:07:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" received FIN. +2017-07-10 16:07:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTON"" disconnecting. +2017-07-10 16:07:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" sending FIN. +2017-07-10 16:07:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" sending FIN. +2017-07-10 16:07:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" disconnecting. +2017-07-10 16:07:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" sent FIN with status "0". +2017-07-10 16:07:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" disconnecting. +2017-07-10 16:07:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" sending FIN. +2017-07-10 16:07:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" disconnecting. +2017-07-10 16:07:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTON"" sending FIN. +2017-07-10 16:07:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTOM"" stopped. +2017-07-10 16:07:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" sent FIN with status "0". +2017-07-10 16:07:27.315 +05:30 [Debug] Connection id ""0HL67F75CGTOK"" stopped. +2017-07-10 16:07:27.315 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" sending FIN. +2017-07-10 16:07:27.315 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" sending FIN. +2017-07-10 16:07:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" sending FIN. +2017-07-10 16:07:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTON"" sent FIN with status "0". +2017-07-10 16:07:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" sent FIN with status "0". +2017-07-10 16:07:27.317 +05:30 [Debug] Connection id ""0HL67F75CGTON"" stopped. +2017-07-10 16:07:27.317 +05:30 [Debug] Connection id ""0HL67F75CGTOO"" stopped. +2017-07-10 16:07:27.319 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" sent FIN with status "0". +2017-07-10 16:07:27.319 +05:30 [Debug] Connection id ""0HL67F75CGTNC"" stopped. +2017-07-10 16:07:27.318 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" sent FIN with status "0". +2017-07-10 16:07:27.320 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" sent FIN with status "0". +2017-07-10 16:07:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTNT"" stopped. +2017-07-10 16:07:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTNS"" stopped. +2017-07-10 16:07:27.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:27.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:27.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:27.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:27.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:27.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2210.3847ms +2017-07-10 16:07:27.765 +05:30 [Information] Request finished in 2233.7637ms 200 application/json; charset=utf-8 +2017-07-10 16:07:27.766 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" completed keep alive response. +2017-07-10 16:07:28.293 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" received FIN. +2017-07-10 16:07:28.293 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" received FIN. +2017-07-10 16:07:28.294 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" received FIN. +2017-07-10 16:07:28.295 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" received FIN. +2017-07-10 16:07:28.295 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" received FIN. +2017-07-10 16:07:28.295 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" disconnecting. +2017-07-10 16:07:28.297 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" disconnecting. +2017-07-10 16:07:28.298 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" disconnecting. +2017-07-10 16:07:28.298 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" disconnecting. +2017-07-10 16:07:28.294 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" disconnecting. +2017-07-10 16:07:28.295 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" received FIN. +2017-07-10 16:07:28.305 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" sending FIN. +2017-07-10 16:07:28.311 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" sending FIN. +2017-07-10 16:07:28.304 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" received FIN. +2017-07-10 16:07:28.314 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" received FIN. +2017-07-10 16:07:28.316 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" disconnecting. +2017-07-10 16:07:28.316 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" received FIN. +2017-07-10 16:07:28.317 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" received FIN. +2017-07-10 16:07:28.317 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" received FIN. +2017-07-10 16:07:28.318 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" received FIN. +2017-07-10 16:07:28.318 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" sending FIN. +2017-07-10 16:07:28.319 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" sent FIN with status "0". +2017-07-10 16:07:28.319 +05:30 [Debug] Connection id ""0HL67F75CGTO5"" stopped. +2017-07-10 16:07:28.305 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" disconnecting. +2017-07-10 16:07:28.320 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" disconnecting. +2017-07-10 16:07:28.320 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" sending FIN. +2017-07-10 16:07:28.321 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" sent FIN with status "0". +2017-07-10 16:07:28.317 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" disconnecting. +2017-07-10 16:07:28.318 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" disconnecting. +2017-07-10 16:07:28.343 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" disconnecting. +2017-07-10 16:07:28.342 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:07:28.342 +05:30 [Debug] Connection id ""0HL67F75CGTNF"" stopped. +2017-07-10 16:07:28.313 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" sending FIN. +2017-07-10 16:07:28.340 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" disconnecting. +2017-07-10 16:07:28.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:07:28.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:07:28.359 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" sending FIN. +2017-07-10 16:07:28.362 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" sending FIN. +2017-07-10 16:07:28.363 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" sending FIN. +2017-07-10 16:07:28.384 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" sending FIN. +2017-07-10 16:07:28.385 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" sending FIN. +2017-07-10 16:07:28.383 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" sending FIN. +2017-07-10 16:07:28.387 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" sending FIN. +2017-07-10 16:07:28.389 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" sent FIN with status "0". +2017-07-10 16:07:28.387 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" sent FIN with status "0". +2017-07-10 16:07:28.390 +05:30 [Debug] Connection id ""0HL67F75CGTNV"" stopped. +2017-07-10 16:07:28.390 +05:30 [Debug] Connection id ""0HL67F75CGTOE"" stopped. +2017-07-10 16:07:28.392 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" sent FIN with status "0". +2017-07-10 16:07:28.392 +05:30 [Debug] Connection id ""0HL67F75CGTO8"" stopped. +2017-07-10 16:07:28.392 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" sent FIN with status "0". +2017-07-10 16:07:28.393 +05:30 [Debug] Connection id ""0HL67F75CGTO4"" stopped. +2017-07-10 16:07:28.393 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" sent FIN with status "0". +2017-07-10 16:07:28.394 +05:30 [Debug] Connection id ""0HL67F75CGTNG"" stopped. +2017-07-10 16:07:28.394 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" sent FIN with status "0". +2017-07-10 16:07:28.395 +05:30 [Debug] Connection id ""0HL67F75CGTNU"" stopped. +2017-07-10 16:07:28.395 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" sent FIN with status "0". +2017-07-10 16:07:28.396 +05:30 [Debug] Connection id ""0HL67F75CGTO2"" stopped. +2017-07-10 16:07:28.391 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" sent FIN with status "0". +2017-07-10 16:07:28.402 +05:30 [Debug] Connection id ""0HL67F75CGTNB"" stopped. +2017-07-10 16:07:28.405 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" sent FIN with status "0". +2017-07-10 16:07:28.406 +05:30 [Debug] Connection id ""0HL67F75CGTOJ"" stopped. +2017-07-10 16:07:28.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:07:28.406 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" sent FIN with status "0". +2017-07-10 16:07:28.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:07:28.408 +05:30 [Debug] Connection id ""0HL67F75CGTOF"" stopped. +2017-07-10 16:07:28.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:07:28.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:28.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:28.671 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:28.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:28.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:28.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3125.905ms +2017-07-10 16:07:28.680 +05:30 [Information] Request finished in 3147.8707ms 200 application/json; charset=utf-8 +2017-07-10 16:07:28.680 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" completed keep alive response. +2017-07-10 16:07:31.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:31.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:32.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:32.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:32.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:32.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:32.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3751.7454ms +2017-07-10 16:07:32.125 +05:30 [Information] Request finished in 3801.8481ms 200 application/json; charset=utf-8 +2017-07-10 16:07:32.125 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" completed keep alive response. +2017-07-10 16:07:32.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:32.163 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:32.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:32.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:32.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3754.578ms +2017-07-10 16:07:32.170 +05:30 [Information] Request finished in 3767.5532ms 200 application/json; charset=utf-8 +2017-07-10 16:07:32.171 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" completed keep alive response. +2017-07-10 16:07:32.198 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" received FIN. +2017-07-10 16:07:32.200 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" received FIN. +2017-07-10 16:07:32.201 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" received FIN. +2017-07-10 16:07:32.201 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" received FIN. +2017-07-10 16:07:32.202 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" received FIN. +2017-07-10 16:07:32.202 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" received FIN. +2017-07-10 16:07:32.202 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" disconnecting. +2017-07-10 16:07:32.203 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" received FIN. +2017-07-10 16:07:32.206 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" sending FIN. +2017-07-10 16:07:32.207 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" sent FIN with status "0". +2017-07-10 16:07:32.207 +05:30 [Debug] Connection id ""0HL67F75CGTO6"" stopped. +2017-07-10 16:07:32.208 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" disconnecting. +2017-07-10 16:07:32.209 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" sending FIN. +2017-07-10 16:07:32.204 +05:30 [Debug] Connection id ""0HL67F75CGTND"" received FIN. +2017-07-10 16:07:32.201 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" disconnecting. +2017-07-10 16:07:32.202 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" disconnecting. +2017-07-10 16:07:32.203 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" disconnecting. +2017-07-10 16:07:32.203 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" disconnecting. +2017-07-10 16:07:32.203 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" disconnecting. +2017-07-10 16:07:32.232 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" sent FIN with status "0". +2017-07-10 16:07:32.242 +05:30 [Debug] Connection id ""0HL67F75CGTND"" disconnecting. +2017-07-10 16:07:32.242 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" received FIN. +2017-07-10 16:07:32.252 +05:30 [Debug] Connection id ""0HL67F75CGTO0"" stopped. +2017-07-10 16:07:32.260 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" received FIN. +2017-07-10 16:07:32.261 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" sending FIN. +2017-07-10 16:07:32.261 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" disconnecting. +2017-07-10 16:07:32.270 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" received FIN. +2017-07-10 16:07:32.281 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" disconnecting. +2017-07-10 16:07:32.281 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" received FIN. +2017-07-10 16:07:32.279 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" sending FIN. +2017-07-10 16:07:32.282 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" sending FIN. +2017-07-10 16:07:32.282 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" disconnecting. +2017-07-10 16:07:32.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:07:32.281 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" received FIN. +2017-07-10 16:07:32.270 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" disconnecting. +2017-07-10 16:07:32.282 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" sending FIN. +2017-07-10 16:07:32.288 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:07:32.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:07:32.303 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" disconnecting. +2017-07-10 16:07:32.302 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" received FIN. +2017-07-10 16:07:32.305 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" sending FIN. +2017-07-10 16:07:32.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:07:32.312 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" received FIN. +2017-07-10 16:07:32.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:07:32.312 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" sent FIN with status "0". +2017-07-10 16:07:32.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:07:32.315 +05:30 [Debug] Connection id ""0HL67F75CGTNQ"" stopped. +2017-07-10 16:07:32.318 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" sent FIN with status "0". +2017-07-10 16:07:32.319 +05:30 [Debug] Connection id ""0HL67F75CGTNM"" stopped. +2017-07-10 16:07:32.312 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" disconnecting. +2017-07-10 16:07:32.319 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" sent FIN with status "0". +2017-07-10 16:07:32.320 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" disconnecting. +2017-07-10 16:07:32.321 +05:30 [Debug] Connection id ""0HL67F75CGTOC"" stopped. +2017-07-10 16:07:32.314 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" received FIN. +2017-07-10 16:07:32.322 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" sent FIN with status "0". +2017-07-10 16:07:32.324 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" received FIN. +2017-07-10 16:07:32.325 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" received FIN. +2017-07-10 16:07:32.326 +05:30 [Debug] Connection id ""0HL67F75CGTND"" sending FIN. +2017-07-10 16:07:32.325 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" disconnecting. +2017-07-10 16:07:32.326 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" sending FIN. +2017-07-10 16:07:32.327 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" sending FIN. +2017-07-10 16:07:32.324 +05:30 [Debug] Connection id ""0HL67F75CGTNE"" stopped. +2017-07-10 16:07:32.328 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" sending FIN. +2017-07-10 16:07:32.329 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" sending FIN. +2017-07-10 16:07:32.329 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" sending FIN. +2017-07-10 16:07:32.330 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" sending FIN. +2017-07-10 16:07:32.328 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" sent FIN with status "0". +2017-07-10 16:07:32.330 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" sending FIN. +2017-07-10 16:07:32.332 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" sending FIN. +2017-07-10 16:07:32.332 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" sent FIN with status "0". +2017-07-10 16:07:32.333 +05:30 [Debug] Connection id ""0HL67F75CGTNR"" stopped. +2017-07-10 16:07:32.333 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" sent FIN with status "0". +2017-07-10 16:07:32.331 +05:30 [Debug] Connection id ""0HL67F75CGTOA"" stopped. +2017-07-10 16:07:32.333 +05:30 [Debug] Connection id ""0HL67F75CGTO9"" stopped. +2017-07-10 16:07:32.334 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" sent FIN with status "0". +2017-07-10 16:07:32.335 +05:30 [Debug] Connection id ""0HL67F75CGTNN"" stopped. +2017-07-10 16:07:32.335 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" sent FIN with status "0". +2017-07-10 16:07:32.324 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" disconnecting. +2017-07-10 16:07:32.328 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" disconnecting. +2017-07-10 16:07:32.336 +05:30 [Debug] Connection id ""0HL67F75CGTOH"" stopped. +2017-07-10 16:07:32.340 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" sent FIN with status "0". +2017-07-10 16:07:32.341 +05:30 [Debug] Connection id ""0HL67F75CGTNH"" stopped. +2017-07-10 16:07:32.341 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" sent FIN with status "0". +2017-07-10 16:07:32.342 +05:30 [Debug] Connection id ""0HL67F75CGTOB"" stopped. +2017-07-10 16:07:32.342 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" sent FIN with status "0". +2017-07-10 16:07:32.343 +05:30 [Debug] Connection id ""0HL67F75CGTNJ"" stopped. +2017-07-10 16:07:32.345 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" sent FIN with status "0". +2017-07-10 16:07:32.346 +05:30 [Debug] Connection id ""0HL67F75CGTO3"" stopped. +2017-07-10 16:07:32.346 +05:30 [Debug] Connection id ""0HL67F75CGTND"" sent FIN with status "0". +2017-07-10 16:07:32.347 +05:30 [Debug] Connection id ""0HL67F75CGTND"" stopped. +2017-07-10 16:07:32.347 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" sending FIN. +2017-07-10 16:07:32.348 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" sending FIN. +2017-07-10 16:07:32.348 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" sent FIN with status "0". +2017-07-10 16:07:32.349 +05:30 [Debug] Connection id ""0HL67F75CGTNL"" stopped. +2017-07-10 16:07:32.350 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" sent FIN with status "0". +2017-07-10 16:07:32.350 +05:30 [Debug] Connection id ""0HL67F75CGTO1"" stopped. +2017-07-10 16:07:35.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:35.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:07:35.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:35.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:35.628 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:35.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:35.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3320.0209ms +2017-07-10 16:07:35.648 +05:30 [Information] Request finished in 3384.9639ms 200 application/json; charset=utf-8 +2017-07-10 16:07:35.649 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" completed keep alive response. +2017-07-10 16:07:47.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:07:47.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:07:47.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:07:47.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:07:47.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14706.0244ms +2017-07-10 16:07:47.052 +05:30 [Information] Request finished in 14789.7953ms 200 application/json; charset=utf-8 +2017-07-10 16:07:47.053 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" completed keep alive response. +2017-07-10 16:09:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" received FIN. +2017-07-10 16:09:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" received FIN. +2017-07-10 16:09:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" disconnecting. +2017-07-10 16:09:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" received FIN. +2017-07-10 16:09:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" disconnecting. +2017-07-10 16:09:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" received FIN. +2017-07-10 16:09:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" disconnecting. +2017-07-10 16:09:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" received FIN. +2017-07-10 16:09:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" sending FIN. +2017-07-10 16:09:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" disconnecting. +2017-07-10 16:09:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" sending FIN. +2017-07-10 16:09:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" sending FIN. +2017-07-10 16:09:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" sending FIN. +2017-07-10 16:09:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" received FIN. +2017-07-10 16:09:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" received FIN. +2017-07-10 16:09:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" disconnecting. +2017-07-10 16:09:27.307 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" disconnecting. +2017-07-10 16:09:27.307 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" received FIN. +2017-07-10 16:09:27.305 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" sent FIN with status "0". +2017-07-10 16:09:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTNI"" stopped. +2017-07-10 16:09:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" sending FIN. +2017-07-10 16:09:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" sent FIN with status "0". +2017-07-10 16:09:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTNK"" stopped. +2017-07-10 16:09:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" sending FIN. +2017-07-10 16:09:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" sent FIN with status "0". +2017-07-10 16:09:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTNO"" stopped. +2017-07-10 16:09:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" sent FIN with status "0". +2017-07-10 16:09:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" sent FIN with status "0". +2017-07-10 16:09:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTOI"" stopped. +2017-07-10 16:09:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" disconnecting. +2017-07-10 16:09:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTOL"" stopped. +2017-07-10 16:09:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" sent FIN with status "0". +2017-07-10 16:09:27.317 +05:30 [Debug] Connection id ""0HL67F75CGTOD"" stopped. +2017-07-10 16:09:27.317 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" sending FIN. +2017-07-10 16:09:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" disconnecting. +2017-07-10 16:09:27.319 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" sending FIN. +2017-07-10 16:09:27.319 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" sent FIN with status "0". +2017-07-10 16:09:27.320 +05:30 [Debug] Connection id ""0HL67F75CGTOG"" stopped. +2017-07-10 16:09:27.318 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" sent FIN with status "0". +2017-07-10 16:09:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTO7"" stopped. +2017-07-10 16:11:30.460 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" started. +2017-07-10 16:11:30.461 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:11:30.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:11:30.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:11:32.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:11:32.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:32.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:32.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:32.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2124.1448ms +2017-07-10 16:11:32.593 +05:30 [Information] Request finished in 2131.664ms 200 application/json; charset=utf-8 +2017-07-10 16:11:32.594 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:32.599 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:11:32.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:11:32.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:11:35.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:11:35.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:35.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:35.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:35.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3048.2526ms +2017-07-10 16:11:35.656 +05:30 [Information] Request finished in 3055.6937ms 200 application/json; charset=utf-8 +2017-07-10 16:11:35.658 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:35.684 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:11:35.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:11:35.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:11:38.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:11:38.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:38.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:38.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:38.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3060.9782ms +2017-07-10 16:11:38.757 +05:30 [Information] Request finished in 3081.3027ms 200 application/json; charset=utf-8 +2017-07-10 16:11:38.757 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:38.765 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:11:38.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:11:38.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:11:41.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:41.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:41.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:41.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:41.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3169.2612ms +2017-07-10 16:11:41.942 +05:30 [Information] Request finished in 3176.798ms 200 application/json; charset=utf-8 +2017-07-10 16:11:41.942 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:41.951 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:11:41.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:11:41.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:11:44.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:45.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:45.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:45.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:45.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3089.9267ms +2017-07-10 16:11:45.049 +05:30 [Information] Request finished in 3100.5072ms 200 application/json; charset=utf-8 +2017-07-10 16:11:45.050 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:51.229 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" started. +2017-07-10 16:11:51.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:11:51.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:11:51.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:11:51.306 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:11:51.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:11:51.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:11:54.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:54.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:54.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:11:54.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:54.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:54.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:54.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3204.4907ms +2017-07-10 16:11:54.517 +05:30 [Information] Request finished in 3287.1572ms 200 application/json; charset=utf-8 +2017-07-10 16:11:54.546 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" completed keep alive response. +2017-07-10 16:11:54.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:54.548 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:11:54.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:54.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:54.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3257.8087ms +2017-07-10 16:11:54.556 +05:30 [Information] Request finished in 3345.1767ms 200 application/json; charset=utf-8 +2017-07-10 16:11:54.556 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:55.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:11:55.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:11:55.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:11:55.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:11:55.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:11:55.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:11:58.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:58.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:11:58.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:58.634 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:11:58.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:58.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:58.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3554.0345ms +2017-07-10 16:11:58.676 +05:30 [Information] Request finished in 3595.3176ms 200 application/json; charset=utf-8 +2017-07-10 16:11:58.677 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" completed keep alive response. +2017-07-10 16:11:58.694 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:11:58.706 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:11:58.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:11:58.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:11:58.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3786.7081ms +2017-07-10 16:11:58.938 +05:30 [Information] Request finished in 3852.2706ms 200 application/json; charset=utf-8 +2017-07-10 16:11:58.940 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:11:59.214 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:11:59.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:11:59.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:11:59.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:11:59.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:11:59.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:12:02.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:12:02.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:12:02.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:12:02.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:12:02.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:12:02.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:12:02.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3242.2824ms +2017-07-10 16:12:02.526 +05:30 [Information] Request finished in 3346.978ms 200 application/json; charset=utf-8 +2017-07-10 16:12:02.527 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" completed keep alive response. +2017-07-10 16:12:07.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:12:07.537 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:12:07.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:12:07.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:12:07.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8352.7574ms +2017-07-10 16:12:07.581 +05:30 [Information] Request finished in 8426.7082ms 200 application/json; charset=utf-8 +2017-07-10 16:12:07.582 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" completed keep alive response. +2017-07-10 16:13:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" received FIN. +2017-07-10 16:13:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" received FIN. +2017-07-10 16:13:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" disconnecting. +2017-07-10 16:13:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" sending FIN. +2017-07-10 16:13:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" sent FIN with status "0". +2017-07-10 16:13:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTOQ"" stopped. +2017-07-10 16:13:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" disconnecting. +2017-07-10 16:13:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" sending FIN. +2017-07-10 16:13:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" sent FIN with status "0". +2017-07-10 16:13:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTOP"" stopped. +2017-07-10 16:19:59.694 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" started. +2017-07-10 16:19:59.711 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:19:59.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:19:59.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:20:02.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:20:02.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:02.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:02.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:02.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3257.2549ms +2017-07-10 16:20:02.993 +05:30 [Information] Request finished in 3294.8747ms 200 application/json; charset=utf-8 +2017-07-10 16:20:02.994 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:02.997 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:20:02.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:20:02.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:20:06.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:20:06.030 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:06.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:06.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:06.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3034.6918ms +2017-07-10 16:20:06.037 +05:30 [Information] Request finished in 3040.7341ms 200 application/json; charset=utf-8 +2017-07-10 16:20:06.038 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:06.047 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:20:06.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:20:06.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:20:09.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:20:09.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:09.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:09.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:09.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.9248ms +2017-07-10 16:20:09.109 +05:30 [Information] Request finished in 3062.7169ms 200 application/json; charset=utf-8 +2017-07-10 16:20:09.110 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:09.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:20:09.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:20:09.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:20:12.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:12.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:12.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:12.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:12.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3152.3729ms +2017-07-10 16:20:12.316 +05:30 [Information] Request finished in 3197.9545ms 200 application/json; charset=utf-8 +2017-07-10 16:20:12.317 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:12.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:20:12.325 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:20:12.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:20:15.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:15.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:15.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:15.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:15.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3246.6001ms +2017-07-10 16:20:15.577 +05:30 [Information] Request finished in 3253.5357ms 200 application/json; charset=utf-8 +2017-07-10 16:20:15.577 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:17.602 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" started. +2017-07-10 16:20:17.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:20:17.621 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:20:17.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:20:17.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:20:17.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:20:17.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:20:18.166 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" started. +2017-07-10 16:20:18.191 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" started. +2017-07-10 16:20:18.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:20:18.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:20:18.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:20:18.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:20:18.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:20:18.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:20:20.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:20.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:20.988 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:20.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:20.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:21.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:21.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:21.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:21.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:21.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3399.2293ms +2017-07-10 16:20:21.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:21.043 +05:30 [Information] Request finished in 3430.5482ms 200 application/json; charset=utf-8 +2017-07-10 16:20:21.046 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:20:21.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3408.4555ms +2017-07-10 16:20:21.072 +05:30 [Information] Request finished in 3452.8489ms 200 application/json; charset=utf-8 +2017-07-10 16:20:21.073 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:21.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:21.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:21.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:21.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:21.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:21.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:21.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3677.3563ms +2017-07-10 16:20:21.949 +05:30 [Information] Request finished in 3755.159ms 200 application/json; charset=utf-8 +2017-07-10 16:20:21.950 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:20:22.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:22.172 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:22.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:22.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:22.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4202.942ms +2017-07-10 16:20:22.502 +05:30 [Information] Request finished in 4301.9244ms 200 application/json; charset=utf-8 +2017-07-10 16:20:22.503 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:20:22.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:20:22.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:20:22.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:20:22.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:20:22.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:20:22.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:20:25.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:25.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:20:26.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:26.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:26.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:26.224 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:26.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3580.987ms +2017-07-10 16:20:26.244 +05:30 [Information] Request finished in 3625.3911ms 200 application/json; charset=utf-8 +2017-07-10 16:20:26.244 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:20:29.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:20:29.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:20:29.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:20:29.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:20:29.993 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 7341.4667ms +2017-07-10 16:20:30.000 +05:30 [Information] Request finished in 7376.9174ms 200 application/json; charset=utf-8 +2017-07-10 16:20:30.001 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:21:00.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:21:00.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:21:00.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:21:03.872 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:21:03.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:03.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:03.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:03.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.8817ms +2017-07-10 16:21:03.883 +05:30 [Information] Request finished in 3068.9837ms 200 application/json; charset=utf-8 +2017-07-10 16:21:03.884 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:21:03.890 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:21:03.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:21:03.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:21:06.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:21:06.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:06.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:06.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:06.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3067.0145ms +2017-07-10 16:21:06.965 +05:30 [Information] Request finished in 3076.6208ms 200 application/json; charset=utf-8 +2017-07-10 16:21:06.966 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:21:06.981 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:21:06.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:21:06.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:21:10.029 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:21:10.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:10.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:10.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:10.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3040.9662ms +2017-07-10 16:21:10.040 +05:30 [Information] Request finished in 3063.7363ms 200 application/json; charset=utf-8 +2017-07-10 16:21:10.041 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:21:10.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:21:10.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:21:10.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:21:13.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:13.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:13.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:13.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:13.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3104.9008ms +2017-07-10 16:21:13.159 +05:30 [Information] Request finished in 3110.6094ms 200 application/json; charset=utf-8 +2017-07-10 16:21:13.160 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:21:13.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:21:13.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:21:13.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:21:16.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:16.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:16.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:16.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:16.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3111.26ms +2017-07-10 16:21:16.282 +05:30 [Information] Request finished in 3117.5085ms 200 application/json; charset=utf-8 +2017-07-10 16:21:16.283 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:21:17.719 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:21:17.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:21:17.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:21:17.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:21:17.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:21:17.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:21:18.204 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:21:18.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:21:18.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:21:18.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:21:18.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:21:18.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:21:20.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:20.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:20.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:20.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:20.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:20.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:20.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3229.7161ms +2017-07-10 16:21:20.972 +05:30 [Information] Request finished in 3271.7109ms 200 application/json; charset=utf-8 +2017-07-10 16:21:20.974 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:21:20.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:20.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:20.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:20.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:21.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3273.1309ms +2017-07-10 16:21:21.004 +05:30 [Information] Request finished in 3304.6329ms 200 application/json; charset=utf-8 +2017-07-10 16:21:21.005 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:21:21.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:21.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:21.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:21.654 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:21.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:21.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:21.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3458.9442ms +2017-07-10 16:21:21.672 +05:30 [Information] Request finished in 3473.0635ms 200 application/json; charset=utf-8 +2017-07-10 16:21:21.672 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:21:21.780 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:21:21.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:21:21.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:21:21.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:21:21.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:21.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:21:21.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:21:21.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:21.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:21.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:21.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3549.5105ms +2017-07-10 16:21:21.817 +05:30 [Information] Request finished in 3608.5851ms 200 application/json; charset=utf-8 +2017-07-10 16:21:21.818 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:21:24.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:24.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:21:25.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:25.164 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:25.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:25.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:25.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3374.8171ms +2017-07-10 16:21:25.172 +05:30 [Information] Request finished in 3409.7542ms 200 application/json; charset=utf-8 +2017-07-10 16:21:25.175 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:21:30.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:21:30.071 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:21:30.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:21:30.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:21:30.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8294.3662ms +2017-07-10 16:21:30.104 +05:30 [Information] Request finished in 8351.355ms 200 application/json; charset=utf-8 +2017-07-10 16:21:30.105 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:22:00.877 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 16:22:00.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 16:22:00.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 16:22:03.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:22:04.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:04.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:04.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:04.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3176.2226ms +2017-07-10 16:22:04.060 +05:30 [Information] Request finished in 3182.2093ms 200 application/json; charset=utf-8 +2017-07-10 16:22:04.061 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:22:04.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:22:04.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:22:04.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:22:07.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:07.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:07.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:07.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:07.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3168.3644ms +2017-07-10 16:22:07.305 +05:30 [Information] Request finished in 3176.2759ms 200 application/json; charset=utf-8 +2017-07-10 16:22:07.306 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:22:07.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:22:07.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:22:07.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:22:10.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:10.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:10.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:10.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:10.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3133.2465ms +2017-07-10 16:22:10.458 +05:30 [Information] Request finished in 3143.0129ms 200 application/json; charset=utf-8 +2017-07-10 16:22:10.459 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:22:16.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:22:16.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:22:16.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:22:17.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:22:17.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:22:17.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:22:17.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:22:17.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:22:17.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:22:18.955 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" started. +2017-07-10 16:22:18.957 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" started. +2017-07-10 16:22:18.960 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 16:22:18.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 16:22:18.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 16:22:18.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:22:18.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:22:18.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:22:18.990 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 16:22:18.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 16:22:19.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 16:22:19.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:19.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:19.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:19.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:19.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2329.5238ms +2017-07-10 16:22:19.277 +05:30 [Information] Request finished in 2378.5475ms 200 application/json; charset=utf-8 +2017-07-10 16:22:19.278 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:22:19.322 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:22:19.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:22:19.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:22:20.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:20.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:20.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:20.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:20.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:20.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:20.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3382.2624ms +2017-07-10 16:22:20.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:20.481 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:20.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:20.512 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:20.525 +05:30 [Information] Request finished in 3509.7778ms 200 application/json; charset=utf-8 +2017-07-10 16:22:20.526 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:22:20.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3491.8837ms +2017-07-10 16:22:20.559 +05:30 [Information] Request finished in 3533.1306ms 200 application/json; charset=utf-8 +2017-07-10 16:22:20.561 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:22:20.580 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 16:22:20.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 16:22:20.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 16:22:21.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:21.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:21.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:21.621 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:21.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2267.3673ms +2017-07-10 16:22:21.627 +05:30 [Information] Request finished in 2327.5967ms 200 application/json; charset=utf-8 +2017-07-10 16:22:21.627 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:22:22.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:22.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:22.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:22.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:22.373 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:22.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:22.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:22.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3431.7182ms +2017-07-10 16:22:22.425 +05:30 [Information] Request finished in 3448.3169ms 200 application/json; charset=utf-8 +2017-07-10 16:22:22.444 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" completed keep alive response. +2017-07-10 16:22:22.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:22:22.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:22:22.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:22:22.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:22:22.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:22:22.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:22:22.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:22.620 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:22.620 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:22.621 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:22.623 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3657.0348ms +2017-07-10 16:22:22.626 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" received FIN. +2017-07-10 16:22:22.626 +05:30 [Information] Request finished in 3670.0947ms 200 application/json; charset=utf-8 +2017-07-10 16:22:22.627 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" completed keep alive response. +2017-07-10 16:22:22.628 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" disconnecting. +2017-07-10 16:22:22.628 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" sending FIN. +2017-07-10 16:22:22.629 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" sent FIN with status "0". +2017-07-10 16:22:22.629 +05:30 [Debug] Connection id ""0HL67F75CGTOU"" stopped. +2017-07-10 16:22:23.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 16:22:23.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:23.723 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:23.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:23.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:23.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4700.1357ms +2017-07-10 16:22:23.732 +05:30 [Information] Request finished in 4768.9457ms 200 application/json; charset=utf-8 +2017-07-10 16:22:23.732 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" completed keep alive response. +2017-07-10 16:22:23.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:23.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:23.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:23.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3190.7654ms +2017-07-10 16:22:23.778 +05:30 [Information] Request finished in 3197.8346ms 200 application/json; charset=utf-8 +2017-07-10 16:22:23.779 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:22:23.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 16:22:23.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 16:22:23.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 16:22:23.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 16:22:23.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:22:23.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 16:22:23.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:22:23.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 16:22:23.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:22:24.798 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" started. +2017-07-10 16:22:24.801 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:22:24.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:22:24.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:22:25.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:25.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:25.671 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:25.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:25.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:25.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3116.6954ms +2017-07-10 16:22:25.678 +05:30 [Information] Request finished in 3133.2882ms 200 application/json; charset=utf-8 +2017-07-10 16:22:25.679 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:22:25.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:25.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:25.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:25.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:25.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:25.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3365.8339ms +2017-07-10 16:22:25.930 +05:30 [Information] Request finished in 3385.3228ms 200 application/json; charset=utf-8 +2017-07-10 16:22:25.931 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:22:26.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:26.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:26.332 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:26.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:26.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:26.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2384.7587ms +2017-07-10 16:22:26.339 +05:30 [Information] Request finished in 2416.3868ms 200 application/json; charset=utf-8 +2017-07-10 16:22:26.340 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" completed keep alive response. +2017-07-10 16:22:27.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:27.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:27.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:27.195 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:27.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:27.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:27.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3237.8411ms +2017-07-10 16:22:27.203 +05:30 [Information] Request finished in 3279.0225ms 200 application/json; charset=utf-8 +2017-07-10 16:22:27.203 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" completed keep alive response. +2017-07-10 16:22:27.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:27.747 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:27.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:27.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:27.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3790.6018ms +2017-07-10 16:22:28.051 +05:30 [Information] Request finished in 3987.7452ms 200 application/json; charset=utf-8 +2017-07-10 16:22:28.051 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:22:28.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:22:28.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:28.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:28.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:28.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3270.7157ms +2017-07-10 16:22:28.079 +05:30 [Information] Request finished in 3277.9201ms 200 application/json; charset=utf-8 +2017-07-10 16:22:28.079 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" completed keep alive response. +2017-07-10 16:22:28.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:22:28.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:22:28.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:22:31.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:22:31.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:31.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:31.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:31.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.2911ms +2017-07-10 16:22:31.134 +05:30 [Information] Request finished in 3051.1905ms 200 application/json; charset=utf-8 +2017-07-10 16:22:31.135 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" completed keep alive response. +2017-07-10 16:22:31.141 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 16:22:31.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 16:22:31.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 16:22:34.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 16:22:34.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:34.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:34.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:34.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3162.7055ms +2017-07-10 16:22:34.315 +05:30 [Information] Request finished in 3173.588ms 200 application/json; charset=utf-8 +2017-07-10 16:22:34.316 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" completed keep alive response. +2017-07-10 16:22:46.315 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:22:46.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:22:46.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:22:46.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:22:46.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:22:46.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:22:48.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:48.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:48.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:48.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:48.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:48.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2488.3615ms +2017-07-10 16:22:48.818 +05:30 [Information] Request finished in 2504.3063ms 200 application/json; charset=utf-8 +2017-07-10 16:22:48.819 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" completed keep alive response. +2017-07-10 16:22:49.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:49.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:49.701 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:49.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:49.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:49.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3390.8305ms +2017-07-10 16:22:49.718 +05:30 [Information] Request finished in 3406.0112ms 200 application/json; charset=utf-8 +2017-07-10 16:22:49.719 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" completed keep alive response. +2017-07-10 16:22:49.794 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:22:49.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:22:49.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:22:49.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:22:49.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:22:49.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:22:52.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:52.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:22:53.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:53.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:53.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:53.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:53.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3267.0498ms +2017-07-10 16:22:53.086 +05:30 [Information] Request finished in 3297.7715ms 200 application/json; charset=utf-8 +2017-07-10 16:22:53.087 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" completed keep alive response. +2017-07-10 16:22:57.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:22:57.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:22:57.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:22:57.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:22:57.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8176.5825ms +2017-07-10 16:22:57.987 +05:30 [Information] Request finished in 8195.1792ms 200 application/json; charset=utf-8 +2017-07-10 16:22:57.988 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" completed keep alive response. +2017-07-10 16:25:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" received FIN. +2017-07-10 16:25:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" disconnecting. +2017-07-10 16:25:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" sending FIN. +2017-07-10 16:25:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" sent FIN with status "0". +2017-07-10 16:25:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTP0"" stopped. +2017-07-10 16:25:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" received FIN. +2017-07-10 16:25:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" disconnecting. +2017-07-10 16:25:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" sending FIN. +2017-07-10 16:25:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" sent FIN with status "0". +2017-07-10 16:25:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTOS"" stopped. +2017-07-10 16:25:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" received FIN. +2017-07-10 16:25:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" received FIN. +2017-07-10 16:25:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" received FIN. +2017-07-10 16:25:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" received FIN. +2017-07-10 16:25:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" disconnecting. +2017-07-10 16:25:27.312 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" disconnecting. +2017-07-10 16:25:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" disconnecting. +2017-07-10 16:25:27.318 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" disconnecting. +2017-07-10 16:25:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" sending FIN. +2017-07-10 16:25:27.324 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" sending FIN. +2017-07-10 16:25:27.324 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" sending FIN. +2017-07-10 16:25:27.325 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" sending FIN. +2017-07-10 16:25:27.326 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" sent FIN with status "0". +2017-07-10 16:25:27.326 +05:30 [Debug] Connection id ""0HL67F75CGTP1"" stopped. +2017-07-10 16:25:27.327 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" sent FIN with status "0". +2017-07-10 16:25:27.329 +05:30 [Debug] Connection id ""0HL67F75CGTOV"" stopped. +2017-07-10 16:25:27.330 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" sent FIN with status "0". +2017-07-10 16:25:27.333 +05:30 [Debug] Connection id ""0HL67F75CGTOR"" stopped. +2017-07-10 16:25:27.334 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" sent FIN with status "0". +2017-07-10 16:25:27.335 +05:30 [Debug] Connection id ""0HL67F75CGTOT"" stopped. +2017-07-10 16:30:51.835 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" started. +2017-07-10 16:30:51.839 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:30:51.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:30:51.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:30:54.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:30:54.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:30:54.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:30:54.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:30:54.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3097.3422ms +2017-07-10 16:30:54.944 +05:30 [Information] Request finished in 3105.9424ms 200 application/json; charset=utf-8 +2017-07-10 16:30:54.944 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:30:54.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:30:54.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:30:54.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:30:57.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:30:57.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:30:57.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:30:57.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:30:57.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2126.6784ms +2017-07-10 16:30:57.083 +05:30 [Information] Request finished in 2135.7003ms 200 application/json; charset=utf-8 +2017-07-10 16:30:57.084 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:30:57.093 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:30:57.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:30:57.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:31:00.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:31:00.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:00.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:00.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:00.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3067.527ms +2017-07-10 16:31:00.167 +05:30 [Information] Request finished in 3074.3023ms 200 application/json; charset=utf-8 +2017-07-10 16:31:00.168 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:31:00.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:31:00.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:31:00.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:31:03.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:03.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:03.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:03.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:03.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3114.0363ms +2017-07-10 16:31:03.295 +05:30 [Information] Request finished in 3119.5479ms 200 application/json; charset=utf-8 +2017-07-10 16:31:03.295 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:31:03.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:31:03.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:31:03.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:31:06.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:06.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:06.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:06.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:06.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3123.671ms +2017-07-10 16:31:06.431 +05:30 [Information] Request finished in 3130.8035ms 200 application/json; charset=utf-8 +2017-07-10 16:31:06.432 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:31:08.025 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" started. +2017-07-10 16:31:08.027 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:31:08.027 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:31:08.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:31:08.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:31:08.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:31:08.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:31:08.425 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" started. +2017-07-10 16:31:08.426 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" started. +2017-07-10 16:31:08.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:31:08.429 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:31:08.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:31:08.431 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:31:08.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:31:08.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:31:10.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:11.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:11.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:11.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:11.163 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:11.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:11.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:11.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:11.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:11.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:11.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3150.7235ms +2017-07-10 16:31:11.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:11.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3155.4637ms +2017-07-10 16:31:11.210 +05:30 [Information] Request finished in 3162.4754ms 200 application/json; charset=utf-8 +2017-07-10 16:31:11.212 +05:30 [Information] Request finished in 3184.5049ms 200 application/json; charset=utf-8 +2017-07-10 16:31:11.212 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:31:11.212 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" completed keep alive response. +2017-07-10 16:31:11.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:12.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:12.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:12.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:12.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:12.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 4277.5403ms +2017-07-10 16:31:12.721 +05:30 [Information] Request finished in 4292.2526ms 200 application/json; charset=utf-8 +2017-07-10 16:31:12.722 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" completed keep alive response. +2017-07-10 16:31:12.787 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:31:12.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:31:12.796 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:31:12.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:31:12.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:31:12.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:31:13.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:13.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:13.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:13.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:13.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 5132.2536ms +2017-07-10 16:31:13.573 +05:30 [Information] Request finished in 5145.1284ms 200 application/json; charset=utf-8 +2017-07-10 16:31:13.574 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" completed keep alive response. +2017-07-10 16:31:15.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:15.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:31:16.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:16.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:16.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:16.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:16.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3329.3844ms +2017-07-10 16:31:16.142 +05:30 [Information] Request finished in 3354.5293ms 200 application/json; charset=utf-8 +2017-07-10 16:31:16.143 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" completed keep alive response. +2017-07-10 16:31:24.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:31:24.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:31:24.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:31:24.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:31:24.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 11399.9758ms +2017-07-10 16:31:24.233 +05:30 [Information] Request finished in 11444.9198ms 200 application/json; charset=utf-8 +2017-07-10 16:31:24.235 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" completed keep alive response. +2017-07-10 16:33:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" received FIN. +2017-07-10 16:33:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" received FIN. +2017-07-10 16:33:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" disconnecting. +2017-07-10 16:33:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" sending FIN. +2017-07-10 16:33:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" sent FIN with status "0". +2017-07-10 16:33:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTP4"" stopped. +2017-07-10 16:33:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" disconnecting. +2017-07-10 16:33:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" sending FIN. +2017-07-10 16:33:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" sent FIN with status "0". +2017-07-10 16:33:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTP2"" stopped. +2017-07-10 16:33:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" received FIN. +2017-07-10 16:33:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" received FIN. +2017-07-10 16:33:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" disconnecting. +2017-07-10 16:33:27.313 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" disconnecting. +2017-07-10 16:33:27.314 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" sending FIN. +2017-07-10 16:33:27.315 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" sending FIN. +2017-07-10 16:33:27.316 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" sent FIN with status "0". +2017-07-10 16:33:27.317 +05:30 [Debug] Connection id ""0HL67F75CGTP3"" stopped. +2017-07-10 16:33:27.318 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" sent FIN with status "0". +2017-07-10 16:33:27.319 +05:30 [Debug] Connection id ""0HL67F75CGTP5"" stopped. +2017-07-10 16:56:02.836 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" started. +2017-07-10 16:56:02.838 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:56:02.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:56:02.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:56:10.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:56:10.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:10.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:10.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:10.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7198.948ms +2017-07-10 16:56:10.044 +05:30 [Information] Request finished in 7205.1108ms 200 application/json; charset=utf-8 +2017-07-10 16:56:10.044 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:10.049 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:56:10.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:56:10.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:56:12.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:56:12.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:12.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:12.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:12.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2119.0523ms +2017-07-10 16:56:12.179 +05:30 [Information] Request finished in 2130.0162ms 200 application/json; charset=utf-8 +2017-07-10 16:56:12.179 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:12.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:56:12.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:56:12.236 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:56:14.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:56:14.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:14.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:14.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:14.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2107.2885ms +2017-07-10 16:56:14.375 +05:30 [Information] Request finished in 2136.2525ms 200 application/json; charset=utf-8 +2017-07-10 16:56:14.376 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:14.383 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:56:14.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:56:14.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:56:17.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:56:17.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:17.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:17.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:17.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.6548ms +2017-07-10 16:56:17.446 +05:30 [Information] Request finished in 3064.0766ms 200 application/json; charset=utf-8 +2017-07-10 16:56:17.447 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:17.456 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:56:17.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:56:17.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:56:20.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:56:20.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:20.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:20.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:20.528 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.0299ms +2017-07-10 16:56:20.530 +05:30 [Information] Request finished in 3073.5495ms 200 application/json; charset=utf-8 +2017-07-10 16:56:20.531 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:20.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:56:20.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:56:20.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:56:23.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:23.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:23.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:23.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:23.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3115.9356ms +2017-07-10 16:56:23.655 +05:30 [Information] Request finished in 3120.6977ms 200 application/json; charset=utf-8 +2017-07-10 16:56:23.656 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:23.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:56:23.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:56:23.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:56:26.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:26.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:26.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:26.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:26.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.2907ms +2017-07-10 16:56:26.781 +05:30 [Information] Request finished in 3119.2864ms 200 application/json; charset=utf-8 +2017-07-10 16:56:26.782 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:31.366 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" started. +2017-07-10 16:56:31.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 16:56:31.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 16:56:31.372 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 16:56:31.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 16:56:31.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 16:56:31.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 16:56:31.913 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" started. +2017-07-10 16:56:31.945 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" started. +2017-07-10 16:56:32.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 16:56:32.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 16:56:32.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 16:56:32.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 16:56:32.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 16:56:32.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 16:56:33.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:33.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:33.747 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:33.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:33.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:33.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2372.1229ms +2017-07-10 16:56:33.753 +05:30 [Information] Request finished in 2384.7607ms 200 application/json; charset=utf-8 +2017-07-10 16:56:33.753 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:56:34.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:34.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:34.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:34.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:34.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:34.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3135.0173ms +2017-07-10 16:56:34.514 +05:30 [Information] Request finished in 3147.8151ms 200 application/json; charset=utf-8 +2017-07-10 16:56:34.515 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:35.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:35.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:38.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:38.297 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:38.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:38.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:38.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 6143.2914ms +2017-07-10 16:56:38.310 +05:30 [Information] Request finished in 6173.7816ms 200 application/json; charset=utf-8 +2017-07-10 16:56:38.311 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" completed keep alive response. +2017-07-10 16:56:38.460 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 16:56:38.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 16:56:38.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 16:56:38.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 16:56:38.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 16:56:38.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 16:56:41.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:41.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:56:41.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:41.761 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:41.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:41.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:41.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3292.0656ms +2017-07-10 16:56:41.766 +05:30 [Information] Request finished in 3345.6329ms 200 application/json; charset=utf-8 +2017-07-10 16:56:41.766 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" completed keep alive response. +2017-07-10 16:56:43.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:43.230 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:43.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:43.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:43.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 11218.2317ms +2017-07-10 16:56:43.266 +05:30 [Information] Request finished in 11318.2751ms 200 application/json; charset=utf-8 +2017-07-10 16:56:43.266 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" completed keep alive response. +2017-07-10 16:56:54.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:56:54.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 16:56:54.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:56:54.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:56:54.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 15850.9169ms +2017-07-10 16:56:54.349 +05:30 [Information] Request finished in 15902.0359ms 200 application/json; charset=utf-8 +2017-07-10 16:56:54.350 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:57:46.344 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" received FIN. +2017-07-10 16:57:46.344 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" received FIN. +2017-07-10 16:57:46.345 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" disconnecting. +2017-07-10 16:57:46.345 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" disconnecting. +2017-07-10 16:57:46.347 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" sending FIN. +2017-07-10 16:57:46.346 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" received FIN. +2017-07-10 16:57:46.349 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" sending FIN. +2017-07-10 16:57:46.350 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" sent FIN with status "0". +2017-07-10 16:57:46.351 +05:30 [Debug] Connection id ""0HL67F75CGTP8"" stopped. +2017-07-10 16:57:46.349 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" disconnecting. +2017-07-10 16:57:46.353 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" sending FIN. +2017-07-10 16:57:46.352 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" sent FIN with status "0". +2017-07-10 16:57:46.354 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" sent FIN with status "0". +2017-07-10 16:57:46.354 +05:30 [Debug] Connection id ""0HL67F75CGTP6"" stopped. +2017-07-10 16:57:46.356 +05:30 [Debug] Connection id ""0HL67F75CGTP9"" stopped. +2017-07-10 16:57:46.353 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:57:46.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:57:46.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:57:48.251 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" started. +2017-07-10 16:57:48.253 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 16:57:48.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 16:57:48.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 16:57:49.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:57:49.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:49.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:49.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:49.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3050.296ms +2017-07-10 16:57:49.411 +05:30 [Information] Request finished in 3061.4072ms 200 application/json; charset=utf-8 +2017-07-10 16:57:49.412 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:57:49.414 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:57:49.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:57:49.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:57:51.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:57:51.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:51.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:51.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:51.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3051.3514ms +2017-07-10 16:57:51.309 +05:30 [Information] Request finished in 3056.525ms 200 application/json; charset=utf-8 +2017-07-10 16:57:51.310 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" completed keep alive response. +2017-07-10 16:57:51.312 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 16:57:51.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 16:57:51.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 16:57:52.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:57:52.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:52.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:52.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:52.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3067.4145ms +2017-07-10 16:57:52.492 +05:30 [Information] Request finished in 3077.1796ms 200 application/json; charset=utf-8 +2017-07-10 16:57:52.493 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:57:52.503 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:57:52.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:57:52.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:57:54.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 16:57:54.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:54.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:54.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:54.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3069.3489ms +2017-07-10 16:57:54.389 +05:30 [Information] Request finished in 3075.9225ms 200 application/json; charset=utf-8 +2017-07-10 16:57:54.390 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" completed keep alive response. +2017-07-10 16:57:54.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 16:57:54.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 16:57:54.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 16:57:54.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:57:54.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:54.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:54.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:54.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2109.4374ms +2017-07-10 16:57:54.619 +05:30 [Information] Request finished in 2116.0498ms 200 application/json; charset=utf-8 +2017-07-10 16:57:54.619 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:57:54.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:57:54.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:57:54.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:57:57.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 16:57:57.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:57.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:57.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:57.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3077.8341ms +2017-07-10 16:57:57.486 +05:30 [Information] Request finished in 3087.4331ms 200 application/json; charset=utf-8 +2017-07-10 16:57:57.487 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" completed keep alive response. +2017-07-10 16:57:57.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 16:57:57.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 16:57:57.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 16:57:57.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:57:57.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:57:57.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:57:57.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:57:57.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3102.0348ms +2017-07-10 16:57:57.731 +05:30 [Information] Request finished in 3106.9233ms 200 application/json; charset=utf-8 +2017-07-10 16:57:57.731 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:57:57.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:57:57.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:57:57.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:58:00.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:58:00.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:58:00.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:58:00.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:58:00.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3117.4046ms +2017-07-10 16:58:00.620 +05:30 [Information] Request finished in 3125.9653ms 200 application/json; charset=utf-8 +2017-07-10 16:58:00.620 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" completed keep alive response. +2017-07-10 16:58:00.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 16:58:00.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 16:58:00.630 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 16:58:00.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:58:00.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:58:00.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:58:00.838 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:58:00.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3102.5996ms +2017-07-10 16:58:00.844 +05:30 [Information] Request finished in 3109.5709ms 200 application/json; charset=utf-8 +2017-07-10 16:58:00.845 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" completed keep alive response. +2017-07-10 16:58:03.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 16:58:03.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 16:58:03.784 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 16:58:03.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 16:58:03.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3169.5003ms +2017-07-10 16:58:03.807 +05:30 [Information] Request finished in 3178.8364ms 200 application/json; charset=utf-8 +2017-07-10 16:58:03.808 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" completed keep alive response. +2017-07-10 16:59:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" received FIN. +2017-07-10 16:59:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" received FIN. +2017-07-10 16:59:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" disconnecting. +2017-07-10 16:59:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" sending FIN. +2017-07-10 16:59:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" sent FIN with status "0". +2017-07-10 16:59:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPA"" stopped. +2017-07-10 16:59:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" disconnecting. +2017-07-10 16:59:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" sending FIN. +2017-07-10 16:59:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" sent FIN with status "0". +2017-07-10 16:59:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTP7"" stopped. +2017-07-10 17:06:13.025 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" started. +2017-07-10 17:06:13.029 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:06:13.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:06:13.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:06:16.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:06:16.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:16.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:16.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:16.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3181.4051ms +2017-07-10 17:06:16.215 +05:30 [Information] Request finished in 3186.0391ms 200 application/json; charset=utf-8 +2017-07-10 17:06:16.216 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:16.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:06:16.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:06:16.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:06:19.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:06:19.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:19.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:19.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:19.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3036.3349ms +2017-07-10 17:06:19.261 +05:30 [Information] Request finished in 3042.603ms 200 application/json; charset=utf-8 +2017-07-10 17:06:19.261 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:19.270 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:06:19.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:06:19.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:06:22.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:06:22.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:22.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:22.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:22.349 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.8564ms +2017-07-10 17:06:22.359 +05:30 [Information] Request finished in 3088.8077ms 200 application/json; charset=utf-8 +2017-07-10 17:06:22.362 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:22.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:06:22.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:06:22.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:06:25.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:25.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:25.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:25.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:25.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3137.2348ms +2017-07-10 17:06:25.518 +05:30 [Information] Request finished in 3147.3632ms 200 application/json; charset=utf-8 +2017-07-10 17:06:25.519 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:25.525 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:06:25.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:06:25.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:06:28.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:28.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:28.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:28.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:28.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3134.2264ms +2017-07-10 17:06:28.683 +05:30 [Information] Request finished in 3158.8353ms 200 application/json; charset=utf-8 +2017-07-10 17:06:28.684 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:33.560 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" started. +2017-07-10 17:06:33.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:06:33.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:06:33.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:06:33.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:06:33.616 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:06:33.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:06:34.194 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" started. +2017-07-10 17:06:34.196 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" started. +2017-07-10 17:06:34.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:06:34.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:06:34.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:06:34.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:06:34.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:06:34.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:06:36.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:36.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:36.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:36.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:36.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:36.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:36.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:36.949 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:36.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:36.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3329.1037ms +2017-07-10 17:06:36.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:36.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3354.2704ms +2017-07-10 17:06:36.978 +05:30 [Information] Request finished in 3393.2337ms 200 application/json; charset=utf-8 +2017-07-10 17:06:36.982 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" completed keep alive response. +2017-07-10 17:06:36.996 +05:30 [Information] Request finished in 3430.1212ms 200 application/json; charset=utf-8 +2017-07-10 17:06:37.000 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:37.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:37.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:37.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:37.774 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:37.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:37.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:37.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3490.0612ms +2017-07-10 17:06:37.780 +05:30 [Information] Request finished in 3561.667ms 200 application/json; charset=utf-8 +2017-07-10 17:06:37.781 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" completed keep alive response. +2017-07-10 17:06:37.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:37.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:37.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:37.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:37.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3582.2597ms +2017-07-10 17:06:37.830 +05:30 [Information] Request finished in 3611.2366ms 200 application/json; charset=utf-8 +2017-07-10 17:06:37.831 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" completed keep alive response. +2017-07-10 17:06:37.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:06:37.904 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:06:37.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:06:37.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:06:37.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:06:37.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:06:41.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:41.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:06:41.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:41.353 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:41.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:41.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:41.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3437.8771ms +2017-07-10 17:06:41.358 +05:30 [Information] Request finished in 3455.3196ms 200 application/json; charset=utf-8 +2017-07-10 17:06:41.359 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" completed keep alive response. +2017-07-10 17:06:52.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:06:52.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:06:52.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:06:52.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:06:52.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14226.021ms +2017-07-10 17:06:52.162 +05:30 [Information] Request finished in 14253.9796ms 200 application/json; charset=utf-8 +2017-07-10 17:06:52.163 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:06:58.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:06:58.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:06:58.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:06:58.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:06:58.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:06:58.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:06:58.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:06:58.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:06:58.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:06:59.633 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:06:59.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:06:59.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:07:02.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:02.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:02.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:02.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:02.620 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:02.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:02.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:02.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3655.0123ms +2017-07-10 17:07:02.632 +05:30 [Information] Request finished in 3669.1128ms 200 application/json; charset=utf-8 +2017-07-10 17:07:02.633 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" completed keep alive response. +2017-07-10 17:07:02.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:07:02.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:02.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:02.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:02.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3142.8143ms +2017-07-10 17:07:02.843 +05:30 [Information] Request finished in 3216.2148ms 200 application/json; charset=utf-8 +2017-07-10 17:07:02.844 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:07:02.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:02.879 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:07:02.880 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:02.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:07:02.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:07:02.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:02.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:02.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3914.2536ms +2017-07-10 17:07:02.889 +05:30 [Information] Request finished in 3926.9788ms 200 application/json; charset=utf-8 +2017-07-10 17:07:02.890 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" completed keep alive response. +2017-07-10 17:07:04.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:04.091 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:04.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:04.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:04.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5130.8684ms +2017-07-10 17:07:04.108 +05:30 [Information] Request finished in 5144.6239ms 200 application/json; charset=utf-8 +2017-07-10 17:07:04.109 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" completed keep alive response. +2017-07-10 17:07:04.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:07:04.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:04.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:04.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:04.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2111.5205ms +2017-07-10 17:07:05.001 +05:30 [Information] Request finished in 2121.1642ms 200 application/json; charset=utf-8 +2017-07-10 17:07:05.001 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" completed keep alive response. +2017-07-10 17:07:05.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:07:05.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:07:05.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:07:07.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:07:07.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:07.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:07.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:07.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2164.0661ms +2017-07-10 17:07:07.191 +05:30 [Information] Request finished in 2173.1049ms 200 application/json; charset=utf-8 +2017-07-10 17:07:07.191 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:07:09.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:07:09.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:07:09.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:07:09.580 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:07:09.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:07:09.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:07:11.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:12.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:12.031 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:12.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:12.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:12.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2457.9093ms +2017-07-10 17:07:12.040 +05:30 [Information] Request finished in 2489.5477ms 200 application/json; charset=utf-8 +2017-07-10 17:07:12.041 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" completed keep alive response. +2017-07-10 17:07:12.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:12.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:12.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:12.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:12.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:12.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3357.3003ms +2017-07-10 17:07:12.959 +05:30 [Information] Request finished in 3405.658ms 200 application/json; charset=utf-8 +2017-07-10 17:07:12.960 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" completed keep alive response. +2017-07-10 17:07:13.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:07:13.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:07:13.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:07:13.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:07:13.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:07:13.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:07:16.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:16.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:07:16.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:16.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:16.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:16.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:16.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3311.7154ms +2017-07-10 17:07:16.344 +05:30 [Information] Request finished in 3332.266ms 200 application/json; charset=utf-8 +2017-07-10 17:07:16.344 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" completed keep alive response. +2017-07-10 17:07:21.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:07:21.161 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:07:21.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:07:21.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:07:21.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8148.5835ms +2017-07-10 17:07:21.186 +05:30 [Information] Request finished in 8177.8216ms 200 application/json; charset=utf-8 +2017-07-10 17:07:21.187 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" completed keep alive response. +2017-07-10 17:09:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" received FIN. +2017-07-10 17:09:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" received FIN. +2017-07-10 17:09:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" disconnecting. +2017-07-10 17:09:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" received FIN. +2017-07-10 17:09:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" sending FIN. +2017-07-10 17:09:27.299 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" received FIN. +2017-07-10 17:09:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" sent FIN with status "0". +2017-07-10 17:09:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" disconnecting. +2017-07-10 17:09:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTPC"" stopped. +2017-07-10 17:09:27.305 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" sending FIN. +2017-07-10 17:09:27.302 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" disconnecting. +2017-07-10 17:09:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" disconnecting. +2017-07-10 17:09:27.307 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" sending FIN. +2017-07-10 17:09:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" sent FIN with status "0". +2017-07-10 17:09:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTPD"" stopped. +2017-07-10 17:09:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" sent FIN with status "0". +2017-07-10 17:09:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTPE"" stopped. +2017-07-10 17:09:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" sending FIN. +2017-07-10 17:09:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" sent FIN with status "0". +2017-07-10 17:09:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPB"" stopped. +2017-07-10 17:09:28.175 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" started. +2017-07-10 17:09:28.190 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:09:28.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:09:28.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:09:31.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:09:31.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:31.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:31.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:31.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3195.5145ms +2017-07-10 17:09:31.392 +05:30 [Information] Request finished in 3216.0092ms 200 application/json; charset=utf-8 +2017-07-10 17:09:31.392 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:31.396 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:09:31.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:09:31.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:09:34.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:09:34.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:34.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:34.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:34.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3079.3329ms +2017-07-10 17:09:34.486 +05:30 [Information] Request finished in 3087.1341ms 200 application/json; charset=utf-8 +2017-07-10 17:09:34.487 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:34.507 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:09:34.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:09:34.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:09:36.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:09:36.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:36.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:36.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:36.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2216.1678ms +2017-07-10 17:09:36.740 +05:30 [Information] Request finished in 2232.1838ms 200 application/json; charset=utf-8 +2017-07-10 17:09:36.742 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:36.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:09:36.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:09:36.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:09:39.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:39.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:39.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:39.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:39.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3114.1455ms +2017-07-10 17:09:39.933 +05:30 [Information] Request finished in 3181.0836ms 200 application/json; charset=utf-8 +2017-07-10 17:09:39.934 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:39.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:09:39.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:09:39.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:09:43.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:43.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:43.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:43.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:43.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3261.0929ms +2017-07-10 17:09:43.207 +05:30 [Information] Request finished in 3268.5098ms 200 application/json; charset=utf-8 +2017-07-10 17:09:43.208 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:45.883 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" started. +2017-07-10 17:09:45.941 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:09:45.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:09:45.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:09:45.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:09:45.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:09:45.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:09:46.568 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" started. +2017-07-10 17:09:46.572 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" started. +2017-07-10 17:09:46.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:09:46.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:09:46.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:09:46.929 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:09:46.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:09:47.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:09:48.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:48.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:48.620 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:09:48.620 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:48.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:48.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 2018.0318ms +2017-07-10 17:09:48.879 +05:30 [Information] Request finished in 2301.2182ms 200 application/json; charset=utf-8 +2017-07-10 17:09:48.880 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" completed keep alive response. +2017-07-10 17:09:49.001 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" started. +2017-07-10 17:09:49.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:09:49.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:09:49.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:09:49.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:09:49.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:09:49.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:09:49.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:49.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:49.565 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:09:49.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:49.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:49.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3624.3896ms +2017-07-10 17:09:49.575 +05:30 [Information] Request finished in 3686.5729ms 200 application/json; charset=utf-8 +2017-07-10 17:09:49.575 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" completed keep alive response. +2017-07-10 17:09:49.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:49.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:49.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:09:49.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:49.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:49.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3757.3239ms +2017-07-10 17:09:49.717 +05:30 [Information] Request finished in 3829.1833ms 200 application/json; charset=utf-8 +2017-07-10 17:09:49.718 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" completed keep alive response. +2017-07-10 17:09:49.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:50.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:50.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:09:50.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:50.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:50.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2868.2191ms +2017-07-10 17:09:50.178 +05:30 [Information] Request finished in 3487.1094ms 200 application/json; charset=utf-8 +2017-07-10 17:09:50.179 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" completed keep alive response. +2017-07-10 17:09:52.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:52.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:09:52.663 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:09:52.664 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:09:52.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:09:52.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:09:52.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3435.3821ms +2017-07-10 17:09:52.674 +05:30 [Information] Request finished in 3542.0218ms 200 application/json; charset=utf-8 +2017-07-10 17:09:52.675 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" completed keep alive response. +2017-07-10 17:10:05.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:10:05.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:10:05.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:10:05.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:10:05.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 16233.1929ms +2017-07-10 17:10:05.387 +05:30 [Information] Request finished in 16404.8806ms 200 application/json; charset=utf-8 +2017-07-10 17:10:05.388 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" completed keep alive response. +2017-07-10 17:11:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" received FIN. +2017-07-10 17:11:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" received FIN. +2017-07-10 17:11:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" disconnecting. +2017-07-10 17:11:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" received FIN. +2017-07-10 17:11:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" received FIN. +2017-07-10 17:11:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" sending FIN. +2017-07-10 17:11:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" received FIN. +2017-07-10 17:11:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" disconnecting. +2017-07-10 17:11:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" disconnecting. +2017-07-10 17:11:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" sent FIN with status "0". +2017-07-10 17:11:27.304 +05:30 [Debug] Connection id ""0HL67F75CGTPG"" stopped. +2017-07-10 17:11:27.303 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" sending FIN. +2017-07-10 17:11:27.305 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" sending FIN. +2017-07-10 17:11:27.305 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" sent FIN with status "0". +2017-07-10 17:11:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" disconnecting. +2017-07-10 17:11:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" sending FIN. +2017-07-10 17:11:27.306 +05:30 [Debug] Connection id ""0HL67F75CGTPJ"" stopped. +2017-07-10 17:11:27.307 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" sent FIN with status "0". +2017-07-10 17:11:27.307 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" sent FIN with status "0". +2017-07-10 17:11:27.309 +05:30 [Debug] Connection id ""0HL67F75CGTPF"" stopped. +2017-07-10 17:11:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" disconnecting. +2017-07-10 17:11:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" sending FIN. +2017-07-10 17:11:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTPI"" stopped. +2017-07-10 17:11:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" sent FIN with status "0". +2017-07-10 17:11:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPH"" stopped. +2017-07-10 17:12:32.710 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" started. +2017-07-10 17:12:32.713 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:12:32.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:12:32.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:12:34.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:12:34.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:34.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:34.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:34.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2104.5082ms +2017-07-10 17:12:34.824 +05:30 [Information] Request finished in 2110.5763ms 200 application/json; charset=utf-8 +2017-07-10 17:12:34.824 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:34.827 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:12:34.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:12:34.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:12:37.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:12:37.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:37.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:37.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:37.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3106.09ms +2017-07-10 17:12:37.941 +05:30 [Information] Request finished in 3113.064ms 200 application/json; charset=utf-8 +2017-07-10 17:12:37.942 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:37.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:12:37.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:12:37.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:12:41.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:12:41.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:41.027 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:41.029 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:41.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3078.3029ms +2017-07-10 17:12:41.035 +05:30 [Information] Request finished in 3085.8238ms 200 application/json; charset=utf-8 +2017-07-10 17:12:41.036 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:41.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:12:41.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:12:41.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:12:44.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:44.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:44.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:44.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:44.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3138.176ms +2017-07-10 17:12:44.185 +05:30 [Information] Request finished in 3144.4948ms 200 application/json; charset=utf-8 +2017-07-10 17:12:44.186 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:44.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:12:44.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:12:44.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:12:47.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:47.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:47.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:47.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:47.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3136.8822ms +2017-07-10 17:12:47.337 +05:30 [Information] Request finished in 3141.9337ms 200 application/json; charset=utf-8 +2017-07-10 17:12:47.338 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:48.697 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" started. +2017-07-10 17:12:48.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:12:48.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:12:48.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:12:48.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:12:48.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:12:48.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:12:49.111 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" started. +2017-07-10 17:12:49.113 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" started. +2017-07-10 17:12:49.164 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:12:49.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:12:49.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:12:49.228 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:12:49.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:12:49.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:12:51.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:51.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:51.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:12:51.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:51.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:51.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3158.1765ms +2017-07-10 17:12:51.866 +05:30 [Information] Request finished in 3166.9352ms 200 application/json; charset=utf-8 +2017-07-10 17:12:51.866 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:12:51.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:52.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:52.072 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:12:52.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:52.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:52.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3372.1186ms +2017-07-10 17:12:52.081 +05:30 [Information] Request finished in 3380.8028ms 200 application/json; charset=utf-8 +2017-07-10 17:12:52.082 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" completed keep alive response. +2017-07-10 17:12:52.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:52.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:52.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:52.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:12:52.861 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:52.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:52.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3628.178ms +2017-07-10 17:12:52.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:52.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:12:52.869 +05:30 [Information] Request finished in 3749.8448ms 200 application/json; charset=utf-8 +2017-07-10 17:12:52.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:52.871 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" completed keep alive response. +2017-07-10 17:12:52.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:52.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3715.1834ms +2017-07-10 17:12:52.901 +05:30 [Information] Request finished in 3781.7775ms 200 application/json; charset=utf-8 +2017-07-10 17:12:52.903 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" completed keep alive response. +2017-07-10 17:12:52.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:12:52.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:12:52.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:12:52.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:12:52.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:12:52.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:12:56.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:56.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:12:56.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:12:56.332 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:12:56.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:12:56.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:12:56.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3343.5077ms +2017-07-10 17:12:56.346 +05:30 [Information] Request finished in 3364.9261ms 200 application/json; charset=utf-8 +2017-07-10 17:12:56.346 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" completed keep alive response. +2017-07-10 17:13:01.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:13:01.547 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:13:01.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:13:01.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:13:01.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8560.742ms +2017-07-10 17:13:01.574 +05:30 [Information] Request finished in 8588.7628ms 200 application/json; charset=utf-8 +2017-07-10 17:13:01.581 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" completed keep alive response. +2017-07-10 17:14:56.378 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" received FIN. +2017-07-10 17:14:56.381 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" received FIN. +2017-07-10 17:14:56.381 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" started. +2017-07-10 17:14:56.382 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" disconnecting. +2017-07-10 17:14:56.384 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" received FIN. +2017-07-10 17:14:56.383 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" disconnecting. +2017-07-10 17:14:56.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 17:14:56.406 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" received FIN. +2017-07-10 17:14:56.406 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" disconnecting. +2017-07-10 17:14:56.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 17:14:56.405 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" sending FIN. +2017-07-10 17:14:56.431 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" disconnecting. +2017-07-10 17:14:56.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 17:14:56.439 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" sending FIN. +2017-07-10 17:14:56.487 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" sending FIN. +2017-07-10 17:14:56.493 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" sent FIN with status "0". +2017-07-10 17:14:56.440 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" sending FIN. +2017-07-10 17:14:56.497 +05:30 [Debug] Connection id ""0HL67F75CGTPL"" stopped. +2017-07-10 17:14:56.507 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" sent FIN with status "0". +2017-07-10 17:14:56.508 +05:30 [Debug] Connection id ""0HL67F75CGTPN"" stopped. +2017-07-10 17:14:56.498 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" sent FIN with status "0". +2017-07-10 17:14:56.513 +05:30 [Debug] Connection id ""0HL67F75CGTPK"" stopped. +2017-07-10 17:14:56.513 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" sent FIN with status "0". +2017-07-10 17:14:56.514 +05:30 [Debug] Connection id ""0HL67F75CGTPM"" stopped. +2017-07-10 17:14:58.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:14:58.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:14:58.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:14:58.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:14:58.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2261.4972ms +2017-07-10 17:14:58.722 +05:30 [Information] Request finished in 2337.9627ms 200 application/json; charset=utf-8 +2017-07-10 17:14:58.722 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" completed keep alive response. +2017-07-10 17:14:58.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:14:58.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:14:58.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:15:05.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:15:06.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:15:06.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:15:06.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:15:06.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7237.4607ms +2017-07-10 17:15:06.031 +05:30 [Information] Request finished in 7244.3303ms 200 application/json; charset=utf-8 +2017-07-10 17:15:06.031 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" completed keep alive response. +2017-07-10 17:15:06.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:15:06.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:15:06.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:15:09.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:15:09.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:15:09.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:15:09.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:15:09.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3101.3217ms +2017-07-10 17:15:09.146 +05:30 [Information] Request finished in 3107.1375ms 200 application/json; charset=utf-8 +2017-07-10 17:15:09.147 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" completed keep alive response. +2017-07-10 17:17:12.183 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" received FIN. +2017-07-10 17:17:12.188 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" started. +2017-07-10 17:17:12.188 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" disconnecting. +2017-07-10 17:17:12.192 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" sending FIN. +2017-07-10 17:17:12.193 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" sent FIN with status "0". +2017-07-10 17:17:12.193 +05:30 [Debug] Connection id ""0HL67F75CGTPO"" stopped. +2017-07-10 17:17:12.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:17:12.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:17:12.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:17:12.305 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" started. +2017-07-10 17:17:12.308 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" started. +2017-07-10 17:17:12.315 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:17:12.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:17:12.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:17:12.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:17:12.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:17:12.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:17:12.940 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" started. +2017-07-10 17:17:12.941 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" started. +2017-07-10 17:17:12.944 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" started. +2017-07-10 17:17:12.948 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:17:12.949 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:17:12.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:17:13.952 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" started. +2017-07-10 17:17:14.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:17:14.821 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:17:14.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:17:15.355 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:17:15.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:17:15.356 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:17:15.895 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:17:15.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:17:15.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:17:17.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:18.007 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:17:18.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:18.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:18.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5719.0006ms +2017-07-10 17:17:18.122 +05:30 [Information] Request finished in 5792.2866ms 200 application/json; charset=utf-8 +2017-07-10 17:17:18.154 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" completed keep alive response. +2017-07-10 17:17:18.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:18.178 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:17:18.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:18.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:18.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:18.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:18.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:18.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6006.1955ms +2017-07-10 17:17:18.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5823.0937ms +2017-07-10 17:17:18.214 +05:30 [Information] Request finished in 6022.2765ms 200 application/json; charset=utf-8 +2017-07-10 17:17:18.215 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" completed keep alive response. +2017-07-10 17:17:18.217 +05:30 [Information] Request finished in 5899.7949ms 200 application/json; charset=utf-8 +2017-07-10 17:17:18.218 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" completed keep alive response. +2017-07-10 17:17:18.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:17:18.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:17:18.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:17:18.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:18.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:18.699 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:17:18.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:18.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:18.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3879.764ms +2017-07-10 17:17:18.768 +05:30 [Information] Request finished in 3947.8549ms 200 application/json; charset=utf-8 +2017-07-10 17:17:18.770 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" completed keep alive response. +2017-07-10 17:17:18.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:18.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:17:18.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:18.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:18.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5923.9108ms +2017-07-10 17:17:18.878 +05:30 [Information] Request finished in 5934.2451ms 200 application/json; charset=utf-8 +2017-07-10 17:17:18.878 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" completed keep alive response. +2017-07-10 17:17:19.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:17:19.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:19.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:19.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:19.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3169.8757ms +2017-07-10 17:17:19.076 +05:30 [Information] Request finished in 3185.6444ms 200 application/json; charset=utf-8 +2017-07-10 17:17:19.077 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" completed keep alive response. +2017-07-10 17:17:20.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:20.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:17:20.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:20.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:20.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4729.7079ms +2017-07-10 17:17:20.090 +05:30 [Information] Request finished in 4738.3577ms 200 application/json; charset=utf-8 +2017-07-10 17:17:20.090 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" completed keep alive response. +2017-07-10 17:17:21.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:17:21.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:17:21.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:17:21.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:17:21.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3111.7341ms +2017-07-10 17:17:21.339 +05:30 [Information] Request finished in 3119.4062ms 200 application/json; charset=utf-8 +2017-07-10 17:17:21.339 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" completed keep alive response. +2017-07-10 17:19:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" received FIN. +2017-07-10 17:19:27.296 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" received FIN. +2017-07-10 17:19:27.297 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" received FIN. +2017-07-10 17:19:27.301 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" disconnecting. +2017-07-10 17:19:27.298 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" disconnecting. +2017-07-10 17:19:27.300 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" received FIN. +2017-07-10 17:19:27.310 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" received FIN. +2017-07-10 17:19:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" disconnecting. +2017-07-10 17:19:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" disconnecting. +2017-07-10 17:19:27.308 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" received FIN. +2017-07-10 17:19:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" sending FIN. +2017-07-10 17:19:27.311 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" disconnecting. +2017-07-10 17:19:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" received FIN. +2017-07-10 17:19:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" sending FIN. +2017-07-10 17:19:27.321 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" disconnecting. +2017-07-10 17:19:27.327 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" sending FIN. +2017-07-10 17:19:27.327 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" disconnecting. +2017-07-10 17:19:27.328 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" sending FIN. +2017-07-10 17:19:27.333 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" sending FIN. +2017-07-10 17:19:27.335 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" sending FIN. +2017-07-10 17:19:27.334 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" sent FIN with status "0". +2017-07-10 17:19:27.336 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" sending FIN. +2017-07-10 17:19:27.337 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" sent FIN with status "0". +2017-07-10 17:19:27.337 +05:30 [Debug] Connection id ""0HL67F75CGTPQ"" stopped. +2017-07-10 17:19:27.338 +05:30 [Debug] Connection id ""0HL67F75CGTPV"" stopped. +2017-07-10 17:19:27.339 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" sent FIN with status "0". +2017-07-10 17:19:27.340 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" sent FIN with status "0". +2017-07-10 17:19:27.340 +05:30 [Debug] Connection id ""0HL67F75CGTPU"" stopped. +2017-07-10 17:19:27.341 +05:30 [Debug] Connection id ""0HL67F75CGTPT"" stopped. +2017-07-10 17:19:27.341 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" sent FIN with status "0". +2017-07-10 17:19:27.342 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" sent FIN with status "0". +2017-07-10 17:19:27.344 +05:30 [Debug] Connection id ""0HL67F75CGTPS"" stopped. +2017-07-10 17:19:27.344 +05:30 [Debug] Connection id ""0HL67F75CGTPR"" stopped. +2017-07-10 17:19:27.346 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" sent FIN with status "0". +2017-07-10 17:19:27.346 +05:30 [Debug] Connection id ""0HL67F75CGTPP"" stopped. +2017-07-10 17:20:08.124 +05:30 [Debug] Hosting starting +2017-07-10 17:20:08.337 +05:30 [Debug] Connection id ""0HL67H782RB45"" started. +2017-07-10 17:20:08.337 +05:30 [Debug] Connection id ""0HL67H782RB46"" started. +2017-07-10 17:20:08.369 +05:30 [Debug] Hosting started +2017-07-10 17:20:08.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-10 17:20:08.493 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-10 17:20:08.575 +05:30 [Information] Request finished in 113.6115ms 200 +2017-07-10 17:20:08.652 +05:30 [Debug] Connection id ""0HL67H782RB46"" completed keep alive response. +2017-07-10 17:20:09.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-10 17:20:09.450 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a2cc5cfe-2671-4d78-9280-e752a09b173c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-10 17:20:09.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-10 17:20:09.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-10 17:20:09.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-10 17:20:09.818 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:20:09.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:09.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:10.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 474.3308ms +2017-07-10 17:20:10.180 +05:30 [Information] Request finished in 1736.9116ms 200 application/json; charset=utf-8 +2017-07-10 17:20:10.183 +05:30 [Debug] Connection id ""0HL67H782RB45"" completed keep alive response. +2017-07-10 17:20:10.906 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:20:10.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:20:10.914 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:20:14.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:20:18.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:18.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:18.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:18.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7917.1836ms +2017-07-10 17:20:18.849 +05:30 [Information] Request finished in 7990.7989ms 200 application/json; charset=utf-8 +2017-07-10 17:20:18.850 +05:30 [Debug] Connection id ""0HL67H782RB46"" completed keep alive response. +2017-07-10 17:20:19.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:20:19.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:20:19.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:20:22.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:20:22.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:22.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:22.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:22.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3212.7658ms +2017-07-10 17:20:22.515 +05:30 [Information] Request finished in 3219.7486ms 200 application/json; charset=utf-8 +2017-07-10 17:20:22.516 +05:30 [Debug] Connection id ""0HL67H782RB45"" completed keep alive response. +2017-07-10 17:20:22.934 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:20:22.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:20:22.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:20:26.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:20:26.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:26.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:26.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:26.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3103.6381ms +2017-07-10 17:20:26.052 +05:30 [Information] Request finished in 3116.7318ms 200 application/json; charset=utf-8 +2017-07-10 17:20:26.053 +05:30 [Debug] Connection id ""0HL67H782RB46"" completed keep alive response. +2017-07-10 17:20:26.063 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:20:26.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:20:26.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:20:29.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:20:29.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:29.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:29.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:29.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3057.591ms +2017-07-10 17:20:29.137 +05:30 [Information] Request finished in 3077.0578ms 200 application/json; charset=utf-8 +2017-07-10 17:20:29.137 +05:30 [Debug] Connection id ""0HL67H782RB45"" completed keep alive response. +2017-07-10 17:20:29.176 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:20:29.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:20:29.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:20:32.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:20:32.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:32.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:32.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:32.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.6005ms +2017-07-10 17:20:32.239 +05:30 [Information] Request finished in 3069.1814ms 200 application/json; charset=utf-8 +2017-07-10 17:20:32.240 +05:30 [Debug] Connection id ""0HL67H782RB46"" completed keep alive response. +2017-07-10 17:20:32.289 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:20:32.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:20:32.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:20:35.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:20:35.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:35.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:35.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:35.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3244.4015ms +2017-07-10 17:20:35.545 +05:30 [Information] Request finished in 3258.6298ms 200 application/json; charset=utf-8 +2017-07-10 17:20:35.546 +05:30 [Debug] Connection id ""0HL67H782RB45"" completed keep alive response. +2017-07-10 17:20:35.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:20:35.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:20:35.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:20:38.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:20:38.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:20:38.810 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:20:38.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:20:38.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3207.5922ms +2017-07-10 17:20:38.827 +05:30 [Information] Request finished in 3215.2567ms 200 application/json; charset=utf-8 +2017-07-10 17:20:38.828 +05:30 [Debug] Connection id ""0HL67H782RB46"" completed keep alive response. +2017-07-10 17:22:08.307 +05:30 [Debug] Connection id ""0HL67H782RB45"" received FIN. +2017-07-10 17:22:08.307 +05:30 [Debug] Connection id ""0HL67H782RB46"" received FIN. +2017-07-10 17:22:08.311 +05:30 [Debug] Connection id ""0HL67H782RB45"" disconnecting. +2017-07-10 17:22:08.313 +05:30 [Debug] Connection id ""0HL67H782RB45"" sending FIN. +2017-07-10 17:22:08.326 +05:30 [Debug] Connection id ""0HL67H782RB46"" disconnecting. +2017-07-10 17:22:08.332 +05:30 [Debug] Connection id ""0HL67H782RB46"" sending FIN. +2017-07-10 17:22:08.333 +05:30 [Debug] Connection id ""0HL67H782RB45"" sent FIN with status "0". +2017-07-10 17:22:08.336 +05:30 [Debug] Connection id ""0HL67H782RB46"" sent FIN with status "0". +2017-07-10 17:22:08.345 +05:30 [Debug] Connection id ""0HL67H782RB45"" stopped. +2017-07-10 17:22:08.345 +05:30 [Debug] Connection id ""0HL67H782RB46"" stopped. +2017-07-10 17:22:41.391 +05:30 [Debug] Connection id ""0HL67H782RB47"" started. +2017-07-10 17:22:41.396 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:22:41.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:22:41.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:22:43.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:22:43.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:22:43.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:22:43.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:22:43.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2122.9569ms +2017-07-10 17:22:43.523 +05:30 [Information] Request finished in 2130.5231ms 200 application/json; charset=utf-8 +2017-07-10 17:22:43.524 +05:30 [Debug] Connection id ""0HL67H782RB47"" completed keep alive response. +2017-07-10 17:22:43.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:22:43.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:22:43.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:22:46.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:22:46.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:22:46.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:22:46.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:22:46.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.0779ms +2017-07-10 17:22:46.598 +05:30 [Information] Request finished in 3071.9401ms 200 application/json; charset=utf-8 +2017-07-10 17:22:46.599 +05:30 [Debug] Connection id ""0HL67H782RB47"" completed keep alive response. +2017-07-10 17:22:46.605 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:22:46.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:22:46.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:22:49.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:22:49.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:22:49.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:22:49.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:22:49.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3060.9153ms +2017-07-10 17:22:49.672 +05:30 [Information] Request finished in 3067.1999ms 200 application/json; charset=utf-8 +2017-07-10 17:22:49.673 +05:30 [Debug] Connection id ""0HL67H782RB47"" completed keep alive response. +2017-07-10 17:22:49.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:22:49.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:22:49.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:22:52.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:22:52.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:22:52.784 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:22:52.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:22:52.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3106.284ms +2017-07-10 17:22:52.794 +05:30 [Information] Request finished in 3115.2503ms 200 application/json; charset=utf-8 +2017-07-10 17:22:52.795 +05:30 [Debug] Connection id ""0HL67H782RB47"" completed keep alive response. +2017-07-10 17:22:52.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:22:52.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:22:52.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:22:55.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:22:55.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:22:55.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:22:55.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:22:55.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3119.1192ms +2017-07-10 17:22:55.932 +05:30 [Information] Request finished in 3124.9575ms 200 application/json; charset=utf-8 +2017-07-10 17:22:55.932 +05:30 [Debug] Connection id ""0HL67H782RB47"" completed keep alive response. +2017-07-10 17:24:03.666 +05:30 [Debug] Connection id ""0HL67H782RB47"" received FIN. +2017-07-10 17:24:03.666 +05:30 [Debug] Connection id ""0HL67H782RB48"" started. +2017-07-10 17:24:03.667 +05:30 [Debug] Connection id ""0HL67H782RB47"" disconnecting. +2017-07-10 17:24:03.673 +05:30 [Debug] Connection id ""0HL67H782RB47"" sending FIN. +2017-07-10 17:24:03.673 +05:30 [Debug] Connection id ""0HL67H782RB47"" sent FIN with status "0". +2017-07-10 17:24:03.673 +05:30 [Debug] Connection id ""0HL67H782RB47"" stopped. +2017-07-10 17:24:03.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:24:03.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:24:03.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:24:06.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:24:06.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:06.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:06.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:06.758 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3076.8939ms +2017-07-10 17:24:06.761 +05:30 [Information] Request finished in 3080.9177ms 200 application/json; charset=utf-8 +2017-07-10 17:24:06.761 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:06.763 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:24:06.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:24:06.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:24:07.213 +05:30 [Debug] Connection id ""0HL67H782RB49"" started. +2017-07-10 17:24:07.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:24:07.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:24:07.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:24:09.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:24:09.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:09.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:09.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:09.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.3338ms +2017-07-10 17:24:09.840 +05:30 [Information] Request finished in 3076.006ms 200 application/json; charset=utf-8 +2017-07-10 17:24:09.841 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:09.854 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:24:09.855 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:24:09.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:24:10.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:24:10.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:10.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:10.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:10.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3102.8754ms +2017-07-10 17:24:10.354 +05:30 [Information] Request finished in 3136.8468ms 200 application/json; charset=utf-8 +2017-07-10 17:24:10.354 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:10.358 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:24:10.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:24:10.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:24:13.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:24:13.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:13.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:13.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:13.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3171.1367ms +2017-07-10 17:24:13.036 +05:30 [Information] Request finished in 3182.4327ms 200 application/json; charset=utf-8 +2017-07-10 17:24:13.037 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:13.043 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:24:13.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:24:13.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:24:13.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:24:13.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:13.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:13.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:13.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.0617ms +2017-07-10 17:24:13.419 +05:30 [Information] Request finished in 3061.3867ms 200 application/json; charset=utf-8 +2017-07-10 17:24:13.420 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:13.427 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:24:13.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:24:13.428 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:24:15.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:15.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:15.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:15.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:15.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2172.5795ms +2017-07-10 17:24:15.223 +05:30 [Information] Request finished in 2179.7584ms 200 application/json; charset=utf-8 +2017-07-10 17:24:15.223 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:15.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:24:15.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:24:15.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:24:16.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:24:16.488 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:16.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:16.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:16.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.7588ms +2017-07-10 17:24:16.496 +05:30 [Information] Request finished in 3069.5819ms 200 application/json; charset=utf-8 +2017-07-10 17:24:16.497 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:16.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:24:16.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:24:16.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:24:18.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:18.339 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:18.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:18.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:18.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.2093ms +2017-07-10 17:24:18.346 +05:30 [Information] Request finished in 3117.0341ms 200 application/json; charset=utf-8 +2017-07-10 17:24:18.346 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:18.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:18.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:18.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:18.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:18.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2265.2952ms +2017-07-10 17:24:18.783 +05:30 [Information] Request finished in 2276.3134ms 200 application/json; charset=utf-8 +2017-07-10 17:24:18.783 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:18.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:24:18.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:24:18.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:24:21.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:21.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:21.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:21.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:21.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3123.2237ms +2017-07-10 17:24:21.919 +05:30 [Information] Request finished in 3130.0619ms 200 application/json; charset=utf-8 +2017-07-10 17:24:21.920 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:24.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:24:24.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:24:24.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:24:24.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:24:24.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:24:24.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:24:27.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:27.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:27.834 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:27.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:24:27.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:27.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:27.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3333.49ms +2017-07-10 17:24:27.876 +05:30 [Information] Request finished in 3351.1921ms 200 application/json; charset=utf-8 +2017-07-10 17:24:27.877 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:27.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:27.926 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:24:27.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:27.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:27.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3403.9645ms +2017-07-10 17:24:27.933 +05:30 [Information] Request finished in 3411.4089ms 200 application/json; charset=utf-8 +2017-07-10 17:24:27.934 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:27.963 +05:30 [Debug] Connection id ""0HL67H782RB4A"" started. +2017-07-10 17:24:27.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:24:27.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:24:27.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:24:27.981 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:24:27.982 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:24:27.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:24:27.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:24:27.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:24:27.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:24:29.370 +05:30 [Debug] Connection id ""0HL67H782RB4B"" started. +2017-07-10 17:24:29.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:24:29.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:24:29.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:24:31.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:31.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:31.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:24:31.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:31.385 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:24:31.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:31.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:31.414 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3404.7518ms +2017-07-10 17:24:31.445 +05:30 [Information] Request finished in 3473.8468ms 200 application/json; charset=utf-8 +2017-07-10 17:24:31.446 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:32.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:24:32.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:32.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:32.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:32.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:32.568 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:24:32.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3132.3224ms +2017-07-10 17:24:32.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:32.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:32.676 +05:30 [Information] Request finished in 3258.8884ms 200 application/json; charset=utf-8 +2017-07-10 17:24:32.677 +05:30 [Debug] Connection id ""0HL67H782RB4B"" completed keep alive response. +2017-07-10 17:24:32.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:24:32.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:24:32.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:24:32.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4833.6825ms +2017-07-10 17:24:32.822 +05:30 [Information] Request finished in 4855.2969ms 200 application/json; charset=utf-8 +2017-07-10 17:24:32.822 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:24:34.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:34.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:24:34.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:34.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:34.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6335.0649ms +2017-07-10 17:24:34.339 +05:30 [Information] Request finished in 6362.8129ms 200 application/json; charset=utf-8 +2017-07-10 17:24:34.340 +05:30 [Debug] Connection id ""0HL67H782RB4A"" completed keep alive response. +2017-07-10 17:24:35.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:24:35.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:35.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:35.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:35.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.5348ms +2017-07-10 17:24:35.833 +05:30 [Information] Request finished in 3140.8921ms 200 application/json; charset=utf-8 +2017-07-10 17:24:35.834 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:24:35.848 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:24:35.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:24:35.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:24:38.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:24:39.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:24:39.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:24:39.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:24:39.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3168.716ms +2017-07-10 17:24:39.029 +05:30 [Information] Request finished in 3181.0191ms 200 application/json; charset=utf-8 +2017-07-10 17:24:39.029 +05:30 [Debug] Connection id ""0HL67H782RB4B"" completed keep alive response. +2017-07-10 17:24:57.529 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:24:57.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:24:57.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:24:57.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:24:57.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:24:57.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:25:00.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:25:00.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:25:05.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:25:05.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:25:05.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:25:05.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:25:05.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:25:05.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:25:05.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:25:05.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:25:05.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 8042.2563ms +2017-07-10 17:25:05.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 8041.7554ms +2017-07-10 17:25:05.583 +05:30 [Information] Request finished in 8052.2433ms 200 application/json; charset=utf-8 +2017-07-10 17:25:05.584 +05:30 [Debug] Connection id ""0HL67H782RB4A"" completed keep alive response. +2017-07-10 17:25:05.586 +05:30 [Information] Request finished in 8054.5873ms 200 application/json; charset=utf-8 +2017-07-10 17:25:05.588 +05:30 [Debug] Connection id ""0HL67H782RB48"" completed keep alive response. +2017-07-10 17:25:05.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:25:05.662 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:25:05.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:25:05.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:25:05.666 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:25:05.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:25:08.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:25:08.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:25:09.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:25:09.028 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:25:09.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:25:09.029 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:25:09.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3363.2062ms +2017-07-10 17:25:09.038 +05:30 [Information] Request finished in 3376.9167ms 200 application/json; charset=utf-8 +2017-07-10 17:25:09.039 +05:30 [Debug] Connection id ""0HL67H782RB49"" completed keep alive response. +2017-07-10 17:25:23.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:25:23.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:25:23.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:25:23.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:25:23.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 17656.0287ms +2017-07-10 17:25:23.339 +05:30 [Information] Request finished in 17677.5897ms 200 application/json; charset=utf-8 +2017-07-10 17:25:23.340 +05:30 [Debug] Connection id ""0HL67H782RB4B"" completed keep alive response. +2017-07-10 17:26:08.303 +05:30 [Debug] Connection id ""0HL67H782RB4A"" received FIN. +2017-07-10 17:26:08.303 +05:30 [Debug] Connection id ""0HL67H782RB48"" received FIN. +2017-07-10 17:26:08.303 +05:30 [Debug] Connection id ""0HL67H782RB4A"" disconnecting. +2017-07-10 17:26:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4A"" sending FIN. +2017-07-10 17:26:08.304 +05:30 [Debug] Connection id ""0HL67H782RB48"" disconnecting. +2017-07-10 17:26:08.305 +05:30 [Debug] Connection id ""0HL67H782RB4A"" sent FIN with status "0". +2017-07-10 17:26:08.306 +05:30 [Debug] Connection id ""0HL67H782RB4A"" stopped. +2017-07-10 17:26:08.306 +05:30 [Debug] Connection id ""0HL67H782RB48"" sending FIN. +2017-07-10 17:26:08.307 +05:30 [Debug] Connection id ""0HL67H782RB48"" sent FIN with status "0". +2017-07-10 17:26:08.307 +05:30 [Debug] Connection id ""0HL67H782RB48"" stopped. +2017-07-10 17:28:08.303 +05:30 [Debug] Connection id ""0HL67H782RB49"" received FIN. +2017-07-10 17:28:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4B"" received FIN. +2017-07-10 17:28:08.304 +05:30 [Debug] Connection id ""0HL67H782RB49"" disconnecting. +2017-07-10 17:28:08.305 +05:30 [Debug] Connection id ""0HL67H782RB4B"" disconnecting. +2017-07-10 17:28:08.306 +05:30 [Debug] Connection id ""0HL67H782RB49"" sending FIN. +2017-07-10 17:28:08.307 +05:30 [Debug] Connection id ""0HL67H782RB4B"" sending FIN. +2017-07-10 17:28:08.308 +05:30 [Debug] Connection id ""0HL67H782RB4B"" sent FIN with status "0". +2017-07-10 17:28:08.309 +05:30 [Debug] Connection id ""0HL67H782RB4B"" stopped. +2017-07-10 17:28:08.312 +05:30 [Debug] Connection id ""0HL67H782RB49"" sent FIN with status "0". +2017-07-10 17:28:08.312 +05:30 [Debug] Connection id ""0HL67H782RB49"" stopped. +2017-07-10 17:32:16.984 +05:30 [Debug] Connection id ""0HL67H782RB4C"" started. +2017-07-10 17:32:16.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:32:16.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:32:16.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:32:20.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:32:20.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:32:20.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:32:20.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:32:20.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3174.0217ms +2017-07-10 17:32:20.169 +05:30 [Information] Request finished in 3182.5446ms 200 application/json; charset=utf-8 +2017-07-10 17:32:20.169 +05:30 [Debug] Connection id ""0HL67H782RB4C"" completed keep alive response. +2017-07-10 17:32:20.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:32:20.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:32:20.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:32:23.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:32:23.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:32:23.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:32:23.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:32:23.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.1487ms +2017-07-10 17:32:23.224 +05:30 [Information] Request finished in 3050.8787ms 200 application/json; charset=utf-8 +2017-07-10 17:32:23.224 +05:30 [Debug] Connection id ""0HL67H782RB4C"" completed keep alive response. +2017-07-10 17:32:23.231 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:32:23.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:32:23.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:32:25.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:32:25.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:32:25.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:32:25.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:32:25.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2105.902ms +2017-07-10 17:32:25.343 +05:30 [Information] Request finished in 2112.1555ms 200 application/json; charset=utf-8 +2017-07-10 17:32:25.343 +05:30 [Debug] Connection id ""0HL67H782RB4C"" completed keep alive response. +2017-07-10 17:32:25.350 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:32:25.350 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:32:25.351 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:32:28.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:32:28.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:32:28.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:32:28.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:32:28.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3145.1016ms +2017-07-10 17:32:28.501 +05:30 [Information] Request finished in 3152.6764ms 200 application/json; charset=utf-8 +2017-07-10 17:32:28.503 +05:30 [Debug] Connection id ""0HL67H782RB4C"" completed keep alive response. +2017-07-10 17:32:28.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:32:28.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:32:28.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:32:31.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:32:31.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:32:31.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:32:31.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:32:31.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3093.3814ms +2017-07-10 17:32:31.607 +05:30 [Information] Request finished in 3099.7474ms 200 application/json; charset=utf-8 +2017-07-10 17:32:31.608 +05:30 [Debug] Connection id ""0HL67H782RB4C"" completed keep alive response. +2017-07-10 17:34:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4C"" received FIN. +2017-07-10 17:34:08.305 +05:30 [Debug] Connection id ""0HL67H782RB4C"" disconnecting. +2017-07-10 17:34:08.306 +05:30 [Debug] Connection id ""0HL67H782RB4C"" sending FIN. +2017-07-10 17:34:08.306 +05:30 [Debug] Connection id ""0HL67H782RB4C"" sent FIN with status "0". +2017-07-10 17:34:08.307 +05:30 [Debug] Connection id ""0HL67H782RB4C"" stopped. +2017-07-10 17:34:48.942 +05:30 [Debug] Connection id ""0HL67H782RB4D"" started. +2017-07-10 17:34:48.943 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:34:48.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:34:48.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:34:52.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:34:52.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:34:52.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:34:52.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:34:52.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.7626ms +2017-07-10 17:34:52.011 +05:30 [Information] Request finished in 3067.2641ms 200 application/json; charset=utf-8 +2017-07-10 17:34:52.011 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:34:52.014 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:34:52.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:34:52.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:34:55.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:34:55.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:34:55.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:34:55.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:34:55.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3069.4585ms +2017-07-10 17:34:55.092 +05:30 [Information] Request finished in 3077.4809ms 200 application/json; charset=utf-8 +2017-07-10 17:34:55.093 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:34:55.106 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:34:55.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:34:55.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:34:58.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:34:58.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:34:58.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:34:58.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:34:58.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3035.8343ms +2017-07-10 17:34:58.147 +05:30 [Information] Request finished in 3042.6838ms 200 application/json; charset=utf-8 +2017-07-10 17:34:58.148 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:34:58.151 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:34:58.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:34:58.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:35:01.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:01.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:01.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:01.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:01.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3103.3647ms +2017-07-10 17:35:01.259 +05:30 [Information] Request finished in 3108.3217ms 200 application/json; charset=utf-8 +2017-07-10 17:35:01.260 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:35:01.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:35:01.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:35:01.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:35:04.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:04.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:04.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:04.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:04.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3121.339ms +2017-07-10 17:35:04.393 +05:30 [Information] Request finished in 3126.4142ms 200 application/json; charset=utf-8 +2017-07-10 17:35:04.393 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:35:06.589 +05:30 [Debug] Connection id ""0HL67H782RB4E"" started. +2017-07-10 17:35:06.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:35:06.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:35:06.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:35:06.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:35:06.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:35:06.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:35:07.098 +05:30 [Debug] Connection id ""0HL67H782RB4F"" started. +2017-07-10 17:35:07.100 +05:30 [Debug] Connection id ""0HL67H782RB4G"" started. +2017-07-10 17:35:07.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:35:07.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:35:07.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:35:07.152 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:35:07.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:35:07.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:35:09.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:09.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:09.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:09.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:09.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:09.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:09.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 2510.7277ms +2017-07-10 17:35:09.671 +05:30 [Information] Request finished in 2543.3229ms 200 application/json; charset=utf-8 +2017-07-10 17:35:09.671 +05:30 [Debug] Connection id ""0HL67H782RB4G"" completed keep alive response. +2017-07-10 17:35:09.756 +05:30 [Debug] Connection id ""0HL67H782RB4H"" started. +2017-07-10 17:35:09.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:35:09.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:35:09.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:35:09.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:35:09.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:35:09.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:35:10.108 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:10.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:10.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:10.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:10.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:10.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:10.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3576.4037ms +2017-07-10 17:35:10.178 +05:30 [Information] Request finished in 3587.176ms 200 application/json; charset=utf-8 +2017-07-10 17:35:10.178 +05:30 [Debug] Connection id ""0HL67H782RB4D"" completed keep alive response. +2017-07-10 17:35:10.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:10.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:10.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:10.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:10.344 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3711.7062ms +2017-07-10 17:35:10.354 +05:30 [Information] Request finished in 3759.603ms 200 application/json; charset=utf-8 +2017-07-10 17:35:10.355 +05:30 [Debug] Connection id ""0HL67H782RB4E"" completed keep alive response. +2017-07-10 17:35:11.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:11.483 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:11.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:11.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:11.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 4381.645ms +2017-07-10 17:35:11.495 +05:30 [Information] Request finished in 4392.0981ms 200 application/json; charset=utf-8 +2017-07-10 17:35:11.496 +05:30 [Debug] Connection id ""0HL67H782RB4F"" completed keep alive response. +2017-07-10 17:35:12.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:12.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:35:13.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:13.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:13.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:13.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:13.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3329.2887ms +2017-07-10 17:35:13.153 +05:30 [Information] Request finished in 3367.8183ms 200 application/json; charset=utf-8 +2017-07-10 17:35:13.153 +05:30 [Debug] Connection id ""0HL67H782RB4G"" completed keep alive response. +2017-07-10 17:35:24.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:35:24.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:35:24.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:35:24.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:35:24.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14551.4049ms +2017-07-10 17:35:24.396 +05:30 [Information] Request finished in 14613.8954ms 200 application/json; charset=utf-8 +2017-07-10 17:35:24.397 +05:30 [Debug] Connection id ""0HL67H782RB4H"" completed keep alive response. +2017-07-10 17:38:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4E"" received FIN. +2017-07-10 17:38:08.314 +05:30 [Debug] Connection id ""0HL67H782RB4G"" received FIN. +2017-07-10 17:38:08.315 +05:30 [Debug] Connection id ""0HL67H782RB4E"" disconnecting. +2017-07-10 17:38:08.315 +05:30 [Debug] Connection id ""0HL67H782RB4E"" sending FIN. +2017-07-10 17:38:08.316 +05:30 [Debug] Connection id ""0HL67H782RB4E"" sent FIN with status "0". +2017-07-10 17:38:08.317 +05:30 [Debug] Connection id ""0HL67H782RB4E"" stopped. +2017-07-10 17:38:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4D"" received FIN. +2017-07-10 17:38:08.315 +05:30 [Debug] Connection id ""0HL67H782RB4G"" disconnecting. +2017-07-10 17:38:08.320 +05:30 [Debug] Connection id ""0HL67H782RB4F"" received FIN. +2017-07-10 17:38:08.321 +05:30 [Debug] Connection id ""0HL67H782RB4H"" received FIN. +2017-07-10 17:38:08.321 +05:30 [Debug] Connection id ""0HL67H782RB4D"" disconnecting. +2017-07-10 17:38:08.321 +05:30 [Debug] Connection id ""0HL67H782RB4F"" disconnecting. +2017-07-10 17:38:08.321 +05:30 [Debug] Connection id ""0HL67H782RB4H"" disconnecting. +2017-07-10 17:38:08.321 +05:30 [Debug] Connection id ""0HL67H782RB4D"" sending FIN. +2017-07-10 17:38:08.320 +05:30 [Debug] Connection id ""0HL67H782RB4G"" sending FIN. +2017-07-10 17:38:08.323 +05:30 [Debug] Connection id ""0HL67H782RB4F"" sending FIN. +2017-07-10 17:38:08.324 +05:30 [Debug] Connection id ""0HL67H782RB4H"" sending FIN. +2017-07-10 17:38:08.324 +05:30 [Debug] Connection id ""0HL67H782RB4H"" sent FIN with status "0". +2017-07-10 17:38:08.325 +05:30 [Debug] Connection id ""0HL67H782RB4H"" stopped. +2017-07-10 17:38:08.324 +05:30 [Debug] Connection id ""0HL67H782RB4G"" sent FIN with status "0". +2017-07-10 17:38:08.327 +05:30 [Debug] Connection id ""0HL67H782RB4G"" stopped. +2017-07-10 17:38:08.325 +05:30 [Debug] Connection id ""0HL67H782RB4F"" sent FIN with status "0". +2017-07-10 17:38:08.328 +05:30 [Debug] Connection id ""0HL67H782RB4F"" stopped. +2017-07-10 17:38:08.329 +05:30 [Debug] Connection id ""0HL67H782RB4D"" sent FIN with status "0". +2017-07-10 17:38:08.329 +05:30 [Debug] Connection id ""0HL67H782RB4D"" stopped. +2017-07-10 17:41:34.533 +05:30 [Debug] Connection id ""0HL67H782RB4I"" started. +2017-07-10 17:41:34.537 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:41:34.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:41:34.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:41:37.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:41:37.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:37.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:37.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:37.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.038ms +2017-07-10 17:41:37.616 +05:30 [Information] Request finished in 3078.7922ms 200 application/json; charset=utf-8 +2017-07-10 17:41:37.617 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:37.620 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:41:37.621 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:41:37.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:41:40.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:41:40.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:40.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:40.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:40.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3057.9138ms +2017-07-10 17:41:40.685 +05:30 [Information] Request finished in 3065.3777ms 200 application/json; charset=utf-8 +2017-07-10 17:41:40.686 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:40.694 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:41:40.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:41:40.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:41:42.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:41:42.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:42.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:42.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:42.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2117.7681ms +2017-07-10 17:41:42.818 +05:30 [Information] Request finished in 2123.8488ms 200 application/json; charset=utf-8 +2017-07-10 17:41:42.818 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:42.825 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:41:42.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:41:42.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:41:45.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:45.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:45.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:45.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:45.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3151.7594ms +2017-07-10 17:41:45.982 +05:30 [Information] Request finished in 3158.1162ms 200 application/json; charset=utf-8 +2017-07-10 17:41:45.982 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:45.986 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:41:45.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:41:45.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:41:49.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:49.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:49.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:49.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:49.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3096.1236ms +2017-07-10 17:41:49.089 +05:30 [Information] Request finished in 3103.0714ms 200 application/json; charset=utf-8 +2017-07-10 17:41:49.090 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:52.064 +05:30 [Debug] Connection id ""0HL67H782RB4J"" started. +2017-07-10 17:41:52.076 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:41:52.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:41:52.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:41:52.085 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:41:52.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:41:52.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:41:52.713 +05:30 [Debug] Connection id ""0HL67H782RB4K"" started. +2017-07-10 17:41:52.716 +05:30 [Debug] Connection id ""0HL67H782RB4L"" started. +2017-07-10 17:41:52.800 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:41:52.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:41:52.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:41:52.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:41:52.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:41:52.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:41:55.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:55.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:55.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:55.332 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:41:55.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:55.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:55.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3254.0733ms +2017-07-10 17:41:55.339 +05:30 [Information] Request finished in 3274.2081ms 200 application/json; charset=utf-8 +2017-07-10 17:41:55.340 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:41:55.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:55.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:41:55.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:55.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:55.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3301.5629ms +2017-07-10 17:41:55.411 +05:30 [Information] Request finished in 3336.6116ms 200 application/json; charset=utf-8 +2017-07-10 17:41:55.411 +05:30 [Debug] Connection id ""0HL67H782RB4J"" completed keep alive response. +2017-07-10 17:41:55.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:56.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:56.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:56.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:41:56.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:56.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:56.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3600.7769ms +2017-07-10 17:41:56.412 +05:30 [Information] Request finished in 3681.4788ms 200 application/json; charset=utf-8 +2017-07-10 17:41:56.412 +05:30 [Debug] Connection id ""0HL67H782RB4K"" completed keep alive response. +2017-07-10 17:41:56.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:56.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:41:56.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:56.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:56.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3620.5909ms +2017-07-10 17:41:56.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:41:56.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:41:56.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:41:56.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:41:56.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:41:56.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:41:56.559 +05:30 [Information] Request finished in 3811.2362ms 200 application/json; charset=utf-8 +2017-07-10 17:41:56.560 +05:30 [Debug] Connection id ""0HL67H782RB4L"" completed keep alive response. +2017-07-10 17:41:59.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:59.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:41:59.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:41:59.867 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:41:59.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:41:59.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:41:59.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3319.8977ms +2017-07-10 17:41:59.879 +05:30 [Information] Request finished in 3333.9704ms 200 application/json; charset=utf-8 +2017-07-10 17:41:59.880 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:42:11.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:42:11.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:42:11.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:42:11.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:42:11.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 14730.5508ms +2017-07-10 17:42:11.285 +05:30 [Information] Request finished in 14775.0118ms 200 application/json; charset=utf-8 +2017-07-10 17:42:11.285 +05:30 [Debug] Connection id ""0HL67H782RB4J"" completed keep alive response. +2017-07-10 17:42:51.535 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:42:51.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:42:51.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:42:53.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:42:53.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:42:53.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:42:53.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:42:53.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2105.1134ms +2017-07-10 17:42:53.650 +05:30 [Information] Request finished in 2115.8452ms 200 application/json; charset=utf-8 +2017-07-10 17:42:53.651 +05:30 [Debug] Connection id ""0HL67H782RB4K"" completed keep alive response. +2017-07-10 17:42:53.654 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:42:53.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:42:53.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:42:56.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:42:56.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:42:56.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:42:56.709 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:42:56.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.7834ms +2017-07-10 17:42:56.716 +05:30 [Information] Request finished in 3062.315ms 200 application/json; charset=utf-8 +2017-07-10 17:42:56.717 +05:30 [Debug] Connection id ""0HL67H782RB4L"" completed keep alive response. +2017-07-10 17:42:56.737 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:42:56.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:42:56.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:42:59.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:42:59.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:42:59.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:42:59.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:42:59.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3037.6797ms +2017-07-10 17:42:59.779 +05:30 [Information] Request finished in 3050.8045ms 200 application/json; charset=utf-8 +2017-07-10 17:42:59.780 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:42:59.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:42:59.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:42:59.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:43:02.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:02.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:02.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:02.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:02.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3135.6215ms +2017-07-10 17:43:02.927 +05:30 [Information] Request finished in 3141.5913ms 200 application/json; charset=utf-8 +2017-07-10 17:43:02.928 +05:30 [Debug] Connection id ""0HL67H782RB4J"" completed keep alive response. +2017-07-10 17:43:02.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:43:02.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:43:02.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:43:05.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:06.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:06.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:06.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:06.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.4001ms +2017-07-10 17:43:06.059 +05:30 [Information] Request finished in 3123.4432ms 200 application/json; charset=utf-8 +2017-07-10 17:43:06.060 +05:30 [Debug] Connection id ""0HL67H782RB4K"" completed keep alive response. +2017-07-10 17:43:07.649 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:43:07.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:43:07.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:43:07.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:43:07.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:43:07.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:43:08.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:43:08.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:43:08.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:43:08.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:43:08.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:43:08.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:43:10.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:10.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:10.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:10.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:10.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:10.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3105.406ms +2017-07-10 17:43:10.767 +05:30 [Information] Request finished in 3118.5911ms 200 application/json; charset=utf-8 +2017-07-10 17:43:10.768 +05:30 [Debug] Connection id ""0HL67H782RB4L"" completed keep alive response. +2017-07-10 17:43:10.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:10.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:10.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:10.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:10.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:10.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3255.7008ms +2017-07-10 17:43:10.911 +05:30 [Information] Request finished in 3262.4053ms 200 application/json; charset=utf-8 +2017-07-10 17:43:10.911 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:43:11.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:11.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:11.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:11.844 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:11.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:11.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:11.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3614.2457ms +2017-07-10 17:43:11.900 +05:30 [Information] Request finished in 3691.6713ms 200 application/json; charset=utf-8 +2017-07-10 17:43:11.901 +05:30 [Debug] Connection id ""0HL67H782RB4J"" completed keep alive response. +2017-07-10 17:43:11.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:11.933 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:11.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:11.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:11.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3641.7123ms +2017-07-10 17:43:11.941 +05:30 [Information] Request finished in 3729.649ms 200 application/json; charset=utf-8 +2017-07-10 17:43:11.942 +05:30 [Debug] Connection id ""0HL67H782RB4K"" completed keep alive response. +2017-07-10 17:43:12.083 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:43:12.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:43:12.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:43:12.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:43:12.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:43:12.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:43:15.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:15.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:43:15.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:15.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:15.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:15.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:15.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3362.5338ms +2017-07-10 17:43:15.460 +05:30 [Information] Request finished in 3402.4099ms 200 application/json; charset=utf-8 +2017-07-10 17:43:15.460 +05:30 [Debug] Connection id ""0HL67H782RB4L"" completed keep alive response. +2017-07-10 17:43:18.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:43:18.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:43:18.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:43:18.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:43:18.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6102.8919ms +2017-07-10 17:43:18.196 +05:30 [Information] Request finished in 6141.402ms 200 application/json; charset=utf-8 +2017-07-10 17:43:18.197 +05:30 [Debug] Connection id ""0HL67H782RB4I"" completed keep alive response. +2017-07-10 17:44:40.993 +05:30 [Debug] Connection id ""0HL67H782RB4K"" received FIN. +2017-07-10 17:44:40.993 +05:30 [Debug] Connection id ""0HL67H782RB4J"" received FIN. +2017-07-10 17:44:40.994 +05:30 [Debug] Connection id ""0HL67H782RB4K"" disconnecting. +2017-07-10 17:44:40.995 +05:30 [Debug] Connection id ""0HL67H782RB4L"" received FIN. +2017-07-10 17:44:40.995 +05:30 [Debug] Connection id ""0HL67H782RB4J"" disconnecting. +2017-07-10 17:44:40.998 +05:30 [Debug] Connection id ""0HL67H782RB4L"" disconnecting. +2017-07-10 17:44:40.998 +05:30 [Debug] Connection id ""0HL67H782RB4J"" sending FIN. +2017-07-10 17:44:40.994 +05:30 [Debug] Connection id ""0HL67H782RB4I"" received FIN. +2017-07-10 17:44:40.999 +05:30 [Debug] Connection id ""0HL67H782RB4L"" sending FIN. +2017-07-10 17:44:41.000 +05:30 [Debug] Connection id ""0HL67H782RB4I"" disconnecting. +2017-07-10 17:44:41.000 +05:30 [Debug] Connection id ""0HL67H782RB4L"" sent FIN with status "0". +2017-07-10 17:44:41.001 +05:30 [Debug] Connection id ""0HL67H782RB4L"" stopped. +2017-07-10 17:44:41.000 +05:30 [Debug] Connection id ""0HL67H782RB4M"" started. +2017-07-10 17:44:41.002 +05:30 [Debug] Connection id ""0HL67H782RB4J"" sent FIN with status "0". +2017-07-10 17:44:41.003 +05:30 [Debug] Connection id ""0HL67H782RB4J"" stopped. +2017-07-10 17:44:41.002 +05:30 [Debug] Connection id ""0HL67H782RB4K"" sending FIN. +2017-07-10 17:44:41.004 +05:30 [Debug] Connection id ""0HL67H782RB4I"" sending FIN. +2017-07-10 17:44:41.004 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 17:44:41.005 +05:30 [Debug] Connection id ""0HL67H782RB4I"" sent FIN with status "0". +2017-07-10 17:44:41.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 17:44:41.006 +05:30 [Debug] Connection id ""0HL67H782RB4I"" stopped. +2017-07-10 17:44:41.007 +05:30 [Debug] Connection id ""0HL67H782RB4K"" sent FIN with status "0". +2017-07-10 17:44:41.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 17:44:41.008 +05:30 [Debug] Connection id ""0HL67H782RB4K"" stopped. +2017-07-10 17:44:44.047 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:44:44.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:44.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:44.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:44.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3156.0431ms +2017-07-10 17:44:44.169 +05:30 [Information] Request finished in 3165.3ms 200 application/json; charset=utf-8 +2017-07-10 17:44:44.170 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:44:44.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:44:44.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:44:44.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:44:47.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:47.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:47.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:47.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:47.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3157.1475ms +2017-07-10 17:44:47.402 +05:30 [Information] Request finished in 3164.3485ms 200 application/json; charset=utf-8 +2017-07-10 17:44:47.403 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:44:47.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:44:47.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:44:47.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:44:49.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:49.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:49.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:49.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:49.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2162.0662ms +2017-07-10 17:44:49.579 +05:30 [Information] Request finished in 2170.9795ms 200 application/json; charset=utf-8 +2017-07-10 17:44:49.580 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:44:55.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:44:55.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:44:55.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:44:55.970 +05:30 [Debug] Connection id ""0HL67H782RB4O"" started. +2017-07-10 17:44:55.970 +05:30 [Debug] Connection id ""0HL67H782RB4N"" started. +2017-07-10 17:44:55.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:44:55.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:44:55.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:44:55.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:44:55.996 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:44:55.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:44:56.429 +05:30 [Debug] Connection id ""0HL67H782RB4P"" started. +2017-07-10 17:44:56.429 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" started. +2017-07-10 17:44:56.432 +05:30 [Debug] Connection id ""0HL67H782RB4R"" started. +2017-07-10 17:44:56.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:44:56.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:44:56.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:44:56.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:44:56.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:44:56.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:44:56.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:44:56.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:44:56.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:44:57.451 +05:30 [Debug] Connection id ""0HL67H782RB4S"" started. +2017-07-10 17:44:57.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:44:57.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:44:57.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:44:58.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:58.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:58.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:44:58.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:58.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:58.414 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2415.7313ms +2017-07-10 17:44:58.417 +05:30 [Information] Request finished in 2438.3922ms 200 application/json; charset=utf-8 +2017-07-10 17:44:58.417 +05:30 [Debug] Connection id ""0HL67H782RB4O"" completed keep alive response. +2017-07-10 17:44:59.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:59.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:59.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:59.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:44:59.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:59.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:59.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3284.1004ms +2017-07-10 17:44:59.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:59.289 +05:30 [Information] Request finished in 3314.7294ms 200 application/json; charset=utf-8 +2017-07-10 17:44:59.289 +05:30 [Debug] Connection id ""0HL67H782RB4N"" completed keep alive response. +2017-07-10 17:44:59.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:44:59.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:44:59.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3368.8281ms +2017-07-10 17:44:59.300 +05:30 [Information] Request finished in 3380.6541ms 200 application/json; charset=utf-8 +2017-07-10 17:44:59.300 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:44:59.306 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:44:59.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:44:59.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:44:59.688 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:44:59.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:59.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:59.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:44:59.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:44:59.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:00.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:00.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:00.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2574.5643ms +2017-07-10 17:45:00.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:00.113 +05:30 [Information] Request finished in 2658.0667ms 200 application/json; charset=utf-8 +2017-07-10 17:45:00.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:00.116 +05:30 [Debug] Connection id ""0HL67H782RB4S"" completed keep alive response. +2017-07-10 17:45:00.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:00.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:00.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:00.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3584.2788ms +2017-07-10 17:45:00.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:00.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:00.201 +05:30 [Information] Request finished in 3677.3543ms 200 application/json; charset=utf-8 +2017-07-10 17:45:00.205 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" completed keep alive response. +2017-07-10 17:45:00.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3736.8626ms +2017-07-10 17:45:00.213 +05:30 [Information] Request finished in 3780.2423ms 200 application/json; charset=utf-8 +2017-07-10 17:45:00.215 +05:30 [Debug] Connection id ""0HL67H782RB4P"" completed keep alive response. +2017-07-10 17:45:01.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:01.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:01.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:01.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:01.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4890.1708ms +2017-07-10 17:45:01.490 +05:30 [Information] Request finished in 4911.3743ms 200 application/json; charset=utf-8 +2017-07-10 17:45:01.491 +05:30 [Debug] Connection id ""0HL67H782RB4R"" completed keep alive response. +2017-07-10 17:45:02.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:02.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:02.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:02.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:02.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3131.9983ms +2017-07-10 17:45:02.443 +05:30 [Information] Request finished in 3137.6626ms 200 application/json; charset=utf-8 +2017-07-10 17:45:02.443 +05:30 [Debug] Connection id ""0HL67H782RB4O"" completed keep alive response. +2017-07-10 17:45:03.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:45:03.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:45:03.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:45:03.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:45:03.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:45:03.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:45:04.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:45:04.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:45:04.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:45:04.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:45:04.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:45:04.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:45:04.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:45:04.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:45:04.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:45:04.946 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:45:04.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:45:04.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:45:07.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:07.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:45:07.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:07.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:07.183 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:07.184 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:07.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:07.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:07.194 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:07.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:07.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3244.2095ms +2017-07-10 17:45:07.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:07.225 +05:30 [Information] Request finished in 3268.9362ms 200 application/json; charset=utf-8 +2017-07-10 17:45:07.225 +05:30 [Debug] Connection id ""0HL67H782RB4N"" completed keep alive response. +2017-07-10 17:45:07.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3263.3068ms +2017-07-10 17:45:07.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:07.237 +05:30 [Information] Request finished in 3304.6468ms 200 application/json; charset=utf-8 +2017-07-10 17:45:07.237 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:45:07.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:07.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:07.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2276.7646ms +2017-07-10 17:45:07.252 +05:30 [Information] Request finished in 2311.9627ms 200 application/json; charset=utf-8 +2017-07-10 17:45:07.253 +05:30 [Debug] Connection id ""0HL67H782RB4R"" completed keep alive response. +2017-07-10 17:45:07.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:07.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:07.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:07.726 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:07.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:07.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:07.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:07.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3250.9398ms +2017-07-10 17:45:07.775 +05:30 [Information] Request finished in 3290.9141ms 200 application/json; charset=utf-8 +2017-07-10 17:45:07.776 +05:30 [Debug] Connection id ""0HL67H782RB4S"" completed keep alive response. +2017-07-10 17:45:07.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:07.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:07.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:07.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:07.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3385.2778ms +2017-07-10 17:45:07.949 +05:30 [Information] Request finished in 3451.1859ms 200 application/json; charset=utf-8 +2017-07-10 17:45:07.950 +05:30 [Debug] Connection id ""0HL67H782RB4P"" completed keep alive response. +2017-07-10 17:45:08.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:08.537 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:08.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:08.542 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:08.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4023.6265ms +2017-07-10 17:45:08.547 +05:30 [Information] Request finished in 4058.9305ms 200 application/json; charset=utf-8 +2017-07-10 17:45:08.548 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" completed keep alive response. +2017-07-10 17:45:19.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:45:19.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:45:19.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:45:19.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:45:19.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:45:19.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:45:22.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:22.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:22.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:22.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:22.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:22.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:22.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:22.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:22.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:22.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3541.2573ms +2017-07-10 17:45:22.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:22.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3540.4145ms +2017-07-10 17:45:22.845 +05:30 [Information] Request finished in 3562.7621ms 200 application/json; charset=utf-8 +2017-07-10 17:45:22.852 +05:30 [Debug] Connection id ""0HL67H782RB4O"" completed keep alive response. +2017-07-10 17:45:22.854 +05:30 [Information] Request finished in 3562.3973ms 200 application/json; charset=utf-8 +2017-07-10 17:45:22.865 +05:30 [Debug] Connection id ""0HL67H782RB4N"" completed keep alive response. +2017-07-10 17:45:22.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:45:22.871 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:45:22.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:45:22.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:45:22.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:45:22.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:45:25.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:26.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:45:26.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:26.179 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:26.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:26.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:26.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3308.2349ms +2017-07-10 17:45:26.186 +05:30 [Information] Request finished in 3319.5176ms 200 application/json; charset=utf-8 +2017-07-10 17:45:26.188 +05:30 [Debug] Connection id ""0HL67H782RB4M"" completed keep alive response. +2017-07-10 17:45:30.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:30.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:45:30.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:30.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:30.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 7353.057ms +2017-07-10 17:45:30.232 +05:30 [Information] Request finished in 7364.8056ms 200 application/json; charset=utf-8 +2017-07-10 17:45:30.233 +05:30 [Debug] Connection id ""0HL67H782RB4R"" completed keep alive response. +2017-07-10 17:45:53.251 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:45:53.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:45:53.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:45:56.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:45:56.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:56.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:56.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:56.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.4393ms +2017-07-10 17:45:56.321 +05:30 [Information] Request finished in 3076.4632ms 200 application/json; charset=utf-8 +2017-07-10 17:45:56.322 +05:30 [Debug] Connection id ""0HL67H782RB4S"" completed keep alive response. +2017-07-10 17:45:56.325 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:45:56.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:45:56.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:45:59.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:45:59.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:45:59.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:45:59.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:45:59.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3047.3528ms +2017-07-10 17:45:59.380 +05:30 [Information] Request finished in 3054.8111ms 200 application/json; charset=utf-8 +2017-07-10 17:45:59.380 +05:30 [Debug] Connection id ""0HL67H782RB4P"" completed keep alive response. +2017-07-10 17:45:59.387 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:45:59.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:45:59.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:46:02.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:46:02.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:46:02.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:46:02.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:46:02.447 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.1271ms +2017-07-10 17:46:02.450 +05:30 [Information] Request finished in 3062.7851ms 200 application/json; charset=utf-8 +2017-07-10 17:46:02.451 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" completed keep alive response. +2017-07-10 17:46:02.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:46:02.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:46:02.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:46:05.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:46:05.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:46:05.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:46:05.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:46:05.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3144.1799ms +2017-07-10 17:46:05.608 +05:30 [Information] Request finished in 3152.0199ms 200 application/json; charset=utf-8 +2017-07-10 17:46:05.609 +05:30 [Debug] Connection id ""0HL67H782RB4O"" completed keep alive response. +2017-07-10 17:46:05.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:46:05.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:46:05.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:46:07.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:46:07.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:46:07.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:46:07.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:46:07.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2181.0257ms +2017-07-10 17:46:07.801 +05:30 [Information] Request finished in 2186.9952ms 200 application/json; charset=utf-8 +2017-07-10 17:46:07.801 +05:30 [Debug] Connection id ""0HL67H782RB4N"" completed keep alive response. +2017-07-10 17:47:41.643 +05:30 [Debug] Connection id ""0HL67H782RB4M"" received FIN. +2017-07-10 17:47:41.645 +05:30 [Debug] Connection id ""0HL67H782RB4S"" received FIN. +2017-07-10 17:47:41.645 +05:30 [Debug] Connection id ""0HL67H782RB4M"" disconnecting. +2017-07-10 17:47:41.647 +05:30 [Debug] Connection id ""0HL67H782RB4P"" received FIN. +2017-07-10 17:47:41.647 +05:30 [Debug] Connection id ""0HL67H782RB4S"" disconnecting. +2017-07-10 17:47:41.648 +05:30 [Debug] Connection id ""0HL67H782RB4P"" disconnecting. +2017-07-10 17:47:41.645 +05:30 [Debug] Connection id ""0HL67H782RB4T"" started. +2017-07-10 17:47:41.657 +05:30 [Debug] Connection id ""0HL67H782RB4R"" received FIN. +2017-07-10 17:47:41.657 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" received FIN. +2017-07-10 17:47:41.658 +05:30 [Debug] Connection id ""0HL67H782RB4N"" received FIN. +2017-07-10 17:47:41.657 +05:30 [Debug] Connection id ""0HL67H782RB4R"" disconnecting. +2017-07-10 17:47:41.659 +05:30 [Debug] Connection id ""0HL67H782RB4R"" sending FIN. +2017-07-10 17:47:41.660 +05:30 [Debug] Connection id ""0HL67H782RB4R"" sent FIN with status "0". +2017-07-10 17:47:41.660 +05:30 [Debug] Connection id ""0HL67H782RB4R"" stopped. +2017-07-10 17:47:41.661 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" disconnecting. +2017-07-10 17:47:41.662 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" sending FIN. +2017-07-10 17:47:41.663 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" sent FIN with status "0". +2017-07-10 17:47:41.663 +05:30 [Debug] Connection id ""0HL67H782RB4Q"" stopped. +2017-07-10 17:47:41.659 +05:30 [Debug] Connection id ""0HL67H782RB4N"" disconnecting. +2017-07-10 17:47:41.665 +05:30 [Debug] Connection id ""0HL67H782RB4N"" sending FIN. +2017-07-10 17:47:41.665 +05:30 [Debug] Connection id ""0HL67H782RB4N"" sent FIN with status "0". +2017-07-10 17:47:41.665 +05:30 [Debug] Connection id ""0HL67H782RB4N"" stopped. +2017-07-10 17:47:41.648 +05:30 [Debug] Connection id ""0HL67H782RB4O"" received FIN. +2017-07-10 17:47:41.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:47:41.675 +05:30 [Debug] Connection id ""0HL67H782RB4O"" disconnecting. +2017-07-10 17:47:41.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:47:41.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:47:41.675 +05:30 [Debug] Connection id ""0HL67H782RB4U"" started. +2017-07-10 17:47:41.685 +05:30 [Debug] Connection id ""0HL67H782RB4M"" sending FIN. +2017-07-10 17:47:41.696 +05:30 [Debug] Connection id ""0HL67H782RB4S"" sending FIN. +2017-07-10 17:47:41.696 +05:30 [Debug] Connection id ""0HL67H782RB4P"" sending FIN. +2017-07-10 17:47:41.697 +05:30 [Debug] Connection id ""0HL67H782RB4O"" sending FIN. +2017-07-10 17:47:41.697 +05:30 [Debug] Connection id ""0HL67H782RB4O"" sent FIN with status "0". +2017-07-10 17:47:41.698 +05:30 [Debug] Connection id ""0HL67H782RB4O"" stopped. +2017-07-10 17:47:41.699 +05:30 [Debug] Connection id ""0HL67H782RB4P"" sent FIN with status "0". +2017-07-10 17:47:41.700 +05:30 [Debug] Connection id ""0HL67H782RB4P"" stopped. +2017-07-10 17:47:41.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:47:41.706 +05:30 [Debug] Connection id ""0HL67H782RB4S"" sent FIN with status "0". +2017-07-10 17:47:41.708 +05:30 [Debug] Connection id ""0HL67H782RB4S"" stopped. +2017-07-10 17:47:41.709 +05:30 [Debug] Connection id ""0HL67H782RB4M"" sent FIN with status "0". +2017-07-10 17:47:41.710 +05:30 [Debug] Connection id ""0HL67H782RB4M"" stopped. +2017-07-10 17:47:41.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:47:41.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:47:42.205 +05:30 [Debug] Connection id ""0HL67H782RB4V"" started. +2017-07-10 17:47:42.208 +05:30 [Debug] Connection id ""0HL67H782RB50"" started. +2017-07-10 17:47:42.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:47:42.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:47:42.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:47:42.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:47:42.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:47:42.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:47:44.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:44.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:44.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:44.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:44.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:44.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:44.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:44.940 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:44.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:44.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:44.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:44.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 2743.2853ms +2017-07-10 17:47:44.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:45.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 2649.843ms +2017-07-10 17:47:45.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:45.039 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:45.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:45.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:45.042 +05:30 [Information] Request finished in 2803.4475ms 200 application/json; charset=utf-8 +2017-07-10 17:47:45.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:45.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:45.048 +05:30 [Debug] Connection id ""0HL67H782RB4V"" completed keep alive response. +2017-07-10 17:47:45.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:45.059 +05:30 [Information] Request finished in 2727.9377ms 200 application/json; charset=utf-8 +2017-07-10 17:47:45.065 +05:30 [Debug] Connection id ""0HL67H782RB50"" completed keep alive response. +2017-07-10 17:47:45.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3370.7704ms +2017-07-10 17:47:45.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:47:45.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:47:45.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:47:45.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:45.158 +05:30 [Information] Request finished in 3472.3832ms 200 application/json; charset=utf-8 +2017-07-10 17:47:45.159 +05:30 [Debug] Connection id ""0HL67H782RB4T"" completed keep alive response. +2017-07-10 17:47:45.166 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:47:45.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:47:45.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:47:45.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3432.241ms +2017-07-10 17:47:45.188 +05:30 [Information] Request finished in 3492.1502ms 200 application/json; charset=utf-8 +2017-07-10 17:47:45.188 +05:30 [Debug] Connection id ""0HL67H782RB4U"" completed keep alive response. +2017-07-10 17:47:48.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:48.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:47:48.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:48.581 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:48.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:48.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:48.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3445.6882ms +2017-07-10 17:47:48.587 +05:30 [Information] Request finished in 3464.0456ms 200 application/json; charset=utf-8 +2017-07-10 17:47:48.588 +05:30 [Debug] Connection id ""0HL67H782RB4V"" completed keep alive response. +2017-07-10 17:47:51.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:47:51.457 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:47:51.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:47:51.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:47:51.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6294.3509ms +2017-07-10 17:47:51.469 +05:30 [Information] Request finished in 6345.0042ms 200 application/json; charset=utf-8 +2017-07-10 17:47:51.470 +05:30 [Debug] Connection id ""0HL67H782RB50"" completed keep alive response. +2017-07-10 17:48:15.737 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 17:48:15.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 17:48:15.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 17:48:18.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:48:18.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:18.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:18.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:18.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3056.5296ms +2017-07-10 17:48:18.800 +05:30 [Information] Request finished in 3063.397ms 200 application/json; charset=utf-8 +2017-07-10 17:48:18.802 +05:30 [Debug] Connection id ""0HL67H782RB4T"" completed keep alive response. +2017-07-10 17:48:18.807 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 17:48:18.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 17:48:18.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 17:48:21.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:48:21.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:21.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:21.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:21.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3033.7509ms +2017-07-10 17:48:21.853 +05:30 [Information] Request finished in 3044.93ms 200 application/json; charset=utf-8 +2017-07-10 17:48:21.854 +05:30 [Debug] Connection id ""0HL67H782RB4U"" completed keep alive response. +2017-07-10 17:48:21.869 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 17:48:21.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 17:48:21.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 17:48:24.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 17:48:24.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:24.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:24.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:24.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.4776ms +2017-07-10 17:48:24.924 +05:30 [Information] Request finished in 3054.4327ms 200 application/json; charset=utf-8 +2017-07-10 17:48:24.924 +05:30 [Debug] Connection id ""0HL67H782RB4V"" completed keep alive response. +2017-07-10 17:48:24.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:48:24.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:48:24.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:48:28.057 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:28.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:28.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:28.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:28.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3216.6346ms +2017-07-10 17:48:28.150 +05:30 [Information] Request finished in 3221.9141ms 200 application/json; charset=utf-8 +2017-07-10 17:48:28.151 +05:30 [Debug] Connection id ""0HL67H782RB50"" completed keep alive response. +2017-07-10 17:48:28.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:48:28.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:48:28.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:48:31.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:31.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:31.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:31.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:31.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.0911ms +2017-07-10 17:48:31.264 +05:30 [Information] Request finished in 3107.2514ms 200 application/json; charset=utf-8 +2017-07-10 17:48:31.265 +05:30 [Debug] Connection id ""0HL67H782RB4T"" completed keep alive response. +2017-07-10 17:48:35.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:48:35.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:48:35.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:48:35.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:48:35.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:48:35.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:48:35.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:48:35.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:48:35.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:48:35.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:48:35.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:48:35.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:48:38.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:38.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:38.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:38.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:38.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:38.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3148.558ms +2017-07-10 17:48:38.299 +05:30 [Information] Request finished in 3171.7188ms 200 application/json; charset=utf-8 +2017-07-10 17:48:38.300 +05:30 [Debug] Connection id ""0HL67H782RB4U"" completed keep alive response. +2017-07-10 17:48:38.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:38.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:38.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:38.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:38.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:38.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3327.6758ms +2017-07-10 17:48:38.521 +05:30 [Information] Request finished in 3392.6702ms 200 application/json; charset=utf-8 +2017-07-10 17:48:38.521 +05:30 [Debug] Connection id ""0HL67H782RB4V"" completed keep alive response. +2017-07-10 17:48:38.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:38.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:39.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:39.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:39.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:39.172 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:39.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3568.5018ms +2017-07-10 17:48:39.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:39.187 +05:30 [Information] Request finished in 3592.386ms 200 application/json; charset=utf-8 +2017-07-10 17:48:39.188 +05:30 [Debug] Connection id ""0HL67H782RB4T"" completed keep alive response. +2017-07-10 17:48:39.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:39.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:39.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:39.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3594.4704ms +2017-07-10 17:48:39.237 +05:30 [Information] Request finished in 3635.0304ms 200 application/json; charset=utf-8 +2017-07-10 17:48:39.238 +05:30 [Debug] Connection id ""0HL67H782RB50"" completed keep alive response. +2017-07-10 17:48:39.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:48:39.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:48:39.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:48:39.383 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:48:39.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:48:39.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:48:42.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:42.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:48:42.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:42.751 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:42.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:42.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:42.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3325.2074ms +2017-07-10 17:48:42.769 +05:30 [Information] Request finished in 3447.5872ms 200 application/json; charset=utf-8 +2017-07-10 17:48:42.770 +05:30 [Debug] Connection id ""0HL67H782RB4V"" completed keep alive response. +2017-07-10 17:48:57.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:48:57.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:48:57.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:48:57.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:48:57.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 18555.8882ms +2017-07-10 17:48:57.912 +05:30 [Information] Request finished in 18621.3736ms 200 application/json; charset=utf-8 +2017-07-10 17:48:57.912 +05:30 [Debug] Connection id ""0HL67H782RB4U"" completed keep alive response. +2017-07-10 17:50:08.304 +05:30 [Debug] Connection id ""0HL67H782RB50"" received FIN. +2017-07-10 17:50:08.304 +05:30 [Debug] Connection id ""0HL67H782RB4T"" received FIN. +2017-07-10 17:50:08.305 +05:30 [Debug] Connection id ""0HL67H782RB50"" disconnecting. +2017-07-10 17:50:08.305 +05:30 [Debug] Connection id ""0HL67H782RB4U"" received FIN. +2017-07-10 17:50:08.309 +05:30 [Debug] Connection id ""0HL67H782RB4T"" disconnecting. +2017-07-10 17:50:08.309 +05:30 [Debug] Connection id ""0HL67H782RB4V"" received FIN. +2017-07-10 17:50:08.316 +05:30 [Debug] Connection id ""0HL67H782RB50"" sending FIN. +2017-07-10 17:50:08.316 +05:30 [Debug] Connection id ""0HL67H782RB4U"" disconnecting. +2017-07-10 17:50:08.322 +05:30 [Debug] Connection id ""0HL67H782RB4V"" disconnecting. +2017-07-10 17:50:08.322 +05:30 [Debug] Connection id ""0HL67H782RB4T"" sending FIN. +2017-07-10 17:50:08.328 +05:30 [Debug] Connection id ""0HL67H782RB50"" sent FIN with status "0". +2017-07-10 17:50:08.335 +05:30 [Debug] Connection id ""0HL67H782RB4V"" sending FIN. +2017-07-10 17:50:08.336 +05:30 [Debug] Connection id ""0HL67H782RB4V"" sent FIN with status "0". +2017-07-10 17:50:08.336 +05:30 [Debug] Connection id ""0HL67H782RB50"" stopped. +2017-07-10 17:50:08.338 +05:30 [Debug] Connection id ""0HL67H782RB4U"" sending FIN. +2017-07-10 17:50:08.337 +05:30 [Debug] Connection id ""0HL67H782RB4V"" stopped. +2017-07-10 17:50:08.338 +05:30 [Debug] Connection id ""0HL67H782RB4U"" sent FIN with status "0". +2017-07-10 17:50:08.339 +05:30 [Debug] Connection id ""0HL67H782RB4T"" sent FIN with status "0". +2017-07-10 17:50:08.340 +05:30 [Debug] Connection id ""0HL67H782RB4U"" stopped. +2017-07-10 17:50:08.340 +05:30 [Debug] Connection id ""0HL67H782RB4T"" stopped. +2017-07-10 17:50:34.501 +05:30 [Debug] Connection id ""0HL67H782RB51"" started. +2017-07-10 17:50:34.502 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 17:50:34.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 17:50:34.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 17:50:37.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 17:50:37.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:37.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:37.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:37.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3198.8854ms +2017-07-10 17:50:37.711 +05:30 [Information] Request finished in 3207.7133ms 200 application/json; charset=utf-8 +2017-07-10 17:50:37.712 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:50:37.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:50:37.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:50:37.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:50:40.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:40.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:40.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:40.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:40.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3134.2503ms +2017-07-10 17:50:40.985 +05:30 [Information] Request finished in 3151.2985ms 200 application/json; charset=utf-8 +2017-07-10 17:50:40.986 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:50:40.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:50:40.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:50:40.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:50:43.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:43.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:43.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:43.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:43.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2392.9278ms +2017-07-10 17:50:43.434 +05:30 [Information] Request finished in 2428.9588ms 200 application/json; charset=utf-8 +2017-07-10 17:50:43.434 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:50:50.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 17:50:50.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 17:50:50.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 17:50:50.130 +05:30 [Debug] Connection id ""0HL67H782RB52"" started. +2017-07-10 17:50:50.132 +05:30 [Debug] Connection id ""0HL67H782RB53"" started. +2017-07-10 17:50:50.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:50:50.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:50:50.141 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:50:50.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:50:50.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:50:50.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:50:50.746 +05:30 [Debug] Connection id ""0HL67H782RB54"" started. +2017-07-10 17:50:50.753 +05:30 [Debug] Connection id ""0HL67H782RB55"" started. +2017-07-10 17:50:50.791 +05:30 [Debug] Connection id ""0HL67H782RB56"" started. +2017-07-10 17:50:50.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:50:50.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:50:50.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:50:51.680 +05:30 [Debug] Connection id ""0HL67H782RB57"" started. +2017-07-10 17:50:53.052 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:50:53.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:50:53.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:50:53.587 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:50:53.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:50:53.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:50:54.119 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:50:54.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:50:54.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:50:56.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:56.229 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:50:56.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:56.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:56.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6133.6295ms +2017-07-10 17:50:56.366 +05:30 [Information] Request finished in 6201.1629ms 200 application/json; charset=utf-8 +2017-07-10 17:50:56.371 +05:30 [Debug] Connection id ""0HL67H782RB53"" completed keep alive response. +2017-07-10 17:50:56.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:56.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:56.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:56.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6336.8026ms +2017-07-10 17:50:56.453 +05:30 [Information] Request finished in 6378.4555ms 200 application/json; charset=utf-8 +2017-07-10 17:50:56.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:56.453 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:50:56.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:50:56.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:56.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:56.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6315.2922ms +2017-07-10 17:50:56.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:50:56.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:50:56.464 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:50:56.464 +05:30 [Information] Request finished in 6328.911ms 200 application/json; charset=utf-8 +2017-07-10 17:50:56.466 +05:30 [Debug] Connection id ""0HL67H782RB52"" completed keep alive response. +2017-07-10 17:50:56.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:56.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:56.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:50:56.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:57.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:57.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3441.7671ms +2017-07-10 17:50:57.073 +05:30 [Information] Request finished in 3485.3683ms 200 application/json; charset=utf-8 +2017-07-10 17:50:57.073 +05:30 [Debug] Connection id ""0HL67H782RB56"" completed keep alive response. +2017-07-10 17:50:57.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:57.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:50:57.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:57.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:57.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4130.9164ms +2017-07-10 17:50:57.190 +05:30 [Information] Request finished in 4136.7478ms 200 application/json; charset=utf-8 +2017-07-10 17:50:57.191 +05:30 [Debug] Connection id ""0HL67H782RB55"" completed keep alive response. +2017-07-10 17:50:57.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:50:57.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:57.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:57.621 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:57.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3499.2595ms +2017-07-10 17:50:57.639 +05:30 [Information] Request finished in 3518.0989ms 200 application/json; charset=utf-8 +2017-07-10 17:50:57.639 +05:30 [Debug] Connection id ""0HL67H782RB57"" completed keep alive response. +2017-07-10 17:50:58.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:50:58.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:58.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:50:58.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:58.640 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:50:58.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:50:58.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:58.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:50:58.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2185.5041ms +2017-07-10 17:50:58.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7766.8947ms +2017-07-10 17:50:58.659 +05:30 [Information] Request finished in 2198.7325ms 200 application/json; charset=utf-8 +2017-07-10 17:50:58.660 +05:30 [Debug] Connection id ""0HL67H782RB53"" completed keep alive response. +2017-07-10 17:50:58.664 +05:30 [Information] Request finished in 7906.891ms 200 application/json; charset=utf-8 +2017-07-10 17:50:58.665 +05:30 [Debug] Connection id ""0HL67H782RB54"" completed keep alive response. +2017-07-10 17:51:00.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 17:51:00.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 17:51:00.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 17:51:00.076 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 17:51:00.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 17:51:00.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 17:51:00.687 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 17:51:00.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 17:51:00.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 17:51:00.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 17:51:00.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 17:51:00.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 17:51:00.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 17:51:00.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 17:51:00.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 17:51:01.518 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 17:51:01.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 17:51:01.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 17:51:02.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:03.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:03.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:03.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:03.255 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:03.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:03.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:03.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:03.258 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:03.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:03.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3180.744ms +2017-07-10 17:51:03.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:03.265 +05:30 [Information] Request finished in 3210.2109ms 200 application/json; charset=utf-8 +2017-07-10 17:51:03.267 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:51:03.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3185.4219ms +2017-07-10 17:51:03.273 +05:30 [Information] Request finished in 3217.7847ms 200 application/json; charset=utf-8 +2017-07-10 17:51:03.274 +05:30 [Debug] Connection id ""0HL67H782RB52"" completed keep alive response. +2017-07-10 17:51:03.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:03.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:03.590 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:03.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:03.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2899.2698ms +2017-07-10 17:51:03.597 +05:30 [Information] Request finished in 2916.3582ms 200 application/json; charset=utf-8 +2017-07-10 17:51:03.597 +05:30 [Debug] Connection id ""0HL67H782RB55"" completed keep alive response. +2017-07-10 17:51:03.819 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:03.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:03.890 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:03.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:03.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:03.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3201.3973ms +2017-07-10 17:51:03.897 +05:30 [Information] Request finished in 3221.7963ms 200 application/json; charset=utf-8 +2017-07-10 17:51:03.898 +05:30 [Debug] Connection id ""0HL67H782RB56"" completed keep alive response. +2017-07-10 17:51:03.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:04.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:04.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:04.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:04.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:04.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3679.5165ms +2017-07-10 17:51:04.384 +05:30 [Information] Request finished in 3704.5512ms 200 application/json; charset=utf-8 +2017-07-10 17:51:04.385 +05:30 [Debug] Connection id ""0HL67H782RB57"" completed keep alive response. +2017-07-10 17:51:04.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 17:51:04.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:04.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:04.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:04.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3164.7584ms +2017-07-10 17:51:04.702 +05:30 [Information] Request finished in 3184.248ms 200 application/json; charset=utf-8 +2017-07-10 17:51:04.703 +05:30 [Debug] Connection id ""0HL67H782RB53"" completed keep alive response. +2017-07-10 17:51:08.256 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-10 17:51:08.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-10 17:51:08.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-10 17:51:08.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-10 17:51:08.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-10 17:51:08.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-10 17:51:11.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:11.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:11.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:11.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:11.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:11.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:11.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3479.6104ms +2017-07-10 17:51:11.748 +05:30 [Information] Request finished in 3514.1261ms 200 application/json; charset=utf-8 +2017-07-10 17:51:11.749 +05:30 [Debug] Connection id ""0HL67H782RB54"" completed keep alive response. +2017-07-10 17:51:11.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:11.803 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:11.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:11.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:11.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3541.0554ms +2017-07-10 17:51:11.809 +05:30 [Information] Request finished in 3575.4009ms 200 application/json; charset=utf-8 +2017-07-10 17:51:11.810 +05:30 [Debug] Connection id ""0HL67H782RB51"" completed keep alive response. +2017-07-10 17:51:11.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-10 17:51:11.823 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-10 17:51:11.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-10 17:51:11.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-10 17:51:11.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-10 17:51:11.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-10 17:51:13.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:14.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 17:51:15.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:15.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:15.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:15.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:15.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3226.9404ms +2017-07-10 17:51:15.060 +05:30 [Information] Request finished in 3238.1841ms 200 application/json; charset=utf-8 +2017-07-10 17:51:15.060 +05:30 [Debug] Connection id ""0HL67H782RB55"" completed keep alive response. +2017-07-10 17:51:16.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 17:51:16.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 17:51:16.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 17:51:16.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 17:51:16.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 5044.8433ms +2017-07-10 17:51:16.922 +05:30 [Information] Request finished in 5097.9448ms 200 application/json; charset=utf-8 +2017-07-10 17:51:16.926 +05:30 [Debug] Connection id ""0HL67H782RB52"" completed keep alive response. +2017-07-10 17:52:08.304 +05:30 [Debug] Connection id ""0HL67H782RB56"" received FIN. +2017-07-10 17:52:08.305 +05:30 [Debug] Connection id ""0HL67H782RB57"" received FIN. +2017-07-10 17:52:08.308 +05:30 [Debug] Connection id ""0HL67H782RB53"" received FIN. +2017-07-10 17:52:08.309 +05:30 [Debug] Connection id ""0HL67H782RB57"" disconnecting. +2017-07-10 17:52:08.309 +05:30 [Debug] Connection id ""0HL67H782RB53"" disconnecting. +2017-07-10 17:52:08.307 +05:30 [Debug] Connection id ""0HL67H782RB56"" disconnecting. +2017-07-10 17:52:08.318 +05:30 [Debug] Connection id ""0HL67H782RB57"" sending FIN. +2017-07-10 17:52:08.323 +05:30 [Debug] Connection id ""0HL67H782RB56"" sending FIN. +2017-07-10 17:52:08.323 +05:30 [Debug] Connection id ""0HL67H782RB53"" sending FIN. +2017-07-10 17:52:08.327 +05:30 [Debug] Connection id ""0HL67H782RB56"" sent FIN with status "0". +2017-07-10 17:52:08.331 +05:30 [Debug] Connection id ""0HL67H782RB53"" sent FIN with status "0". +2017-07-10 17:52:08.338 +05:30 [Debug] Connection id ""0HL67H782RB56"" stopped. +2017-07-10 17:52:08.343 +05:30 [Debug] Connection id ""0HL67H782RB53"" stopped. +2017-07-10 17:52:08.344 +05:30 [Debug] Connection id ""0HL67H782RB57"" sent FIN with status "0". +2017-07-10 17:52:08.345 +05:30 [Debug] Connection id ""0HL67H782RB57"" stopped. +2017-07-10 17:54:08.304 +05:30 [Debug] Connection id ""0HL67H782RB54"" received FIN. +2017-07-10 17:54:08.306 +05:30 [Debug] Connection id ""0HL67H782RB52"" received FIN. +2017-07-10 17:54:08.306 +05:30 [Debug] Connection id ""0HL67H782RB54"" disconnecting. +2017-07-10 17:54:08.306 +05:30 [Debug] Connection id ""0HL67H782RB52"" disconnecting. +2017-07-10 17:54:08.312 +05:30 [Debug] Connection id ""0HL67H782RB54"" sending FIN. +2017-07-10 17:54:08.304 +05:30 [Debug] Connection id ""0HL67H782RB51"" received FIN. +2017-07-10 17:54:08.320 +05:30 [Debug] Connection id ""0HL67H782RB52"" sending FIN. +2017-07-10 17:54:08.326 +05:30 [Debug] Connection id ""0HL67H782RB51"" disconnecting. +2017-07-10 17:54:08.325 +05:30 [Debug] Connection id ""0HL67H782RB55"" received FIN. +2017-07-10 17:54:08.335 +05:30 [Debug] Connection id ""0HL67H782RB52"" sent FIN with status "0". +2017-07-10 17:54:08.341 +05:30 [Debug] Connection id ""0HL67H782RB51"" sending FIN. +2017-07-10 17:54:08.341 +05:30 [Debug] Connection id ""0HL67H782RB55"" disconnecting. +2017-07-10 17:54:08.346 +05:30 [Debug] Connection id ""0HL67H782RB52"" stopped. +2017-07-10 17:54:08.350 +05:30 [Debug] Connection id ""0HL67H782RB54"" sent FIN with status "0". +2017-07-10 17:54:08.348 +05:30 [Debug] Connection id ""0HL67H782RB51"" sent FIN with status "0". +2017-07-10 17:54:08.353 +05:30 [Debug] Connection id ""0HL67H782RB51"" stopped. +2017-07-10 17:54:08.353 +05:30 [Debug] Connection id ""0HL67H782RB54"" stopped. +2017-07-10 17:54:08.354 +05:30 [Debug] Connection id ""0HL67H782RB55"" sending FIN. +2017-07-10 17:54:08.355 +05:30 [Debug] Connection id ""0HL67H782RB55"" sent FIN with status "0". +2017-07-10 17:54:08.356 +05:30 [Debug] Connection id ""0HL67H782RB55"" stopped. +2017-07-10 18:00:46.577 +05:30 [Debug] Connection id ""0HL67H782RB58"" started. +2017-07-10 18:00:46.591 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:00:46.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:00:46.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:00:48.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:00:48.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:00:48.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:00:48.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:00:48.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2175.185ms +2017-07-10 18:00:48.771 +05:30 [Information] Request finished in 2191.7159ms 200 application/json; charset=utf-8 +2017-07-10 18:00:48.772 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:00:48.777 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:00:48.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:00:48.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:00:51.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:00:51.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:00:51.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:00:51.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:00:52.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3219.3851ms +2017-07-10 18:00:52.017 +05:30 [Information] Request finished in 3240.2347ms 200 application/json; charset=utf-8 +2017-07-10 18:00:52.017 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:00:52.057 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 18:00:52.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 18:00:52.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 18:00:55.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:00:55.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:00:55.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:00:55.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:00:55.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3132.6505ms +2017-07-10 18:00:55.196 +05:30 [Information] Request finished in 3138.6617ms 200 application/json; charset=utf-8 +2017-07-10 18:00:55.197 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:00:55.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:00:55.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:00:55.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:00:58.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:00:58.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:00:58.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:00:58.343 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:00:58.345 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3136.5657ms +2017-07-10 18:00:58.348 +05:30 [Information] Request finished in 3146.6086ms 200 application/json; charset=utf-8 +2017-07-10 18:00:58.349 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:00:58.354 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:00:58.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:00:58.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:01:01.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:01:01.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:01:01.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:01:01.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:01:01.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3101.6153ms +2017-07-10 18:01:01.461 +05:30 [Information] Request finished in 3107.3977ms 200 application/json; charset=utf-8 +2017-07-10 18:01:01.462 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:01:04.733 +05:30 [Debug] Connection id ""0HL67H782RB59"" started. +2017-07-10 18:01:04.761 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:01:04.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:01:04.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:01:04.799 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:01:04.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:01:04.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:01:08.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:01:08.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:01:08.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:01:08.072 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:01:08.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:01:08.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:01:08.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3310.4981ms +2017-07-10 18:01:08.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:01:08.106 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:01:08.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:01:08.105 +05:30 [Information] Request finished in 3368.3305ms 200 application/json; charset=utf-8 +2017-07-10 18:01:08.107 +05:30 [Debug] Connection id ""0HL67H782RB58"" completed keep alive response. +2017-07-10 18:01:08.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:01:08.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3325.6599ms +2017-07-10 18:01:08.134 +05:30 [Information] Request finished in 3396.5877ms 200 application/json; charset=utf-8 +2017-07-10 18:01:08.135 +05:30 [Debug] Connection id ""0HL67H782RB59"" completed keep alive response. +2017-07-10 18:02:08.303 +05:30 [Debug] Connection id ""0HL67H782RB58"" received FIN. +2017-07-10 18:02:08.303 +05:30 [Debug] Connection id ""0HL67H782RB58"" disconnecting. +2017-07-10 18:02:08.304 +05:30 [Debug] Connection id ""0HL67H782RB58"" sending FIN. +2017-07-10 18:02:08.303 +05:30 [Debug] Connection id ""0HL67H782RB59"" received FIN. +2017-07-10 18:02:08.305 +05:30 [Debug] Connection id ""0HL67H782RB58"" sent FIN with status "0". +2017-07-10 18:02:08.305 +05:30 [Debug] Connection id ""0HL67H782RB58"" stopped. +2017-07-10 18:02:08.305 +05:30 [Debug] Connection id ""0HL67H782RB59"" disconnecting. +2017-07-10 18:02:08.306 +05:30 [Debug] Connection id ""0HL67H782RB59"" sending FIN. +2017-07-10 18:02:08.306 +05:30 [Debug] Connection id ""0HL67H782RB59"" sent FIN with status "0". +2017-07-10 18:02:08.307 +05:30 [Debug] Connection id ""0HL67H782RB59"" stopped. +2017-07-10 18:33:23.141 +05:30 [Debug] Connection id ""0HL67H782RB5A"" started. +2017-07-10 18:33:23.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:33:23.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:33:23.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:33:26.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:33:26.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:26.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:26.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:26.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3107.0273ms +2017-07-10 18:33:26.266 +05:30 [Information] Request finished in 3120.0524ms 200 application/json; charset=utf-8 +2017-07-10 18:33:26.266 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:26.273 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:33:26.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:33:26.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:33:29.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:33:29.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:29.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:29.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:29.329 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.5765ms +2017-07-10 18:33:29.332 +05:30 [Information] Request finished in 3060.5332ms 200 application/json; charset=utf-8 +2017-07-10 18:33:29.333 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:29.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:33:29.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:33:29.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:33:32.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:33:32.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:32.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:32.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:32.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.2356ms +2017-07-10 18:33:32.446 +05:30 [Information] Request finished in 3084.1813ms 200 application/json; charset=utf-8 +2017-07-10 18:33:32.448 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:32.453 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:33:32.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:33:32.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:33:34.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:33:34.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:34.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:34.585 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:34.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2126.2851ms +2017-07-10 18:33:34.590 +05:30 [Information] Request finished in 2137.7212ms 200 application/json; charset=utf-8 +2017-07-10 18:33:34.591 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:34.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 18:33:34.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 18:33:34.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 18:33:37.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:33:37.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:37.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:37.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:37.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.5251ms +2017-07-10 18:33:37.655 +05:30 [Information] Request finished in 3057.3576ms 200 application/json; charset=utf-8 +2017-07-10 18:33:37.656 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:37.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:33:37.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:33:37.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:33:40.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:33:40.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:40.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:40.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:40.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3086.4333ms +2017-07-10 18:33:40.753 +05:30 [Information] Request finished in 3092.941ms 200 application/json; charset=utf-8 +2017-07-10 18:33:40.754 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:33:40.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:33:40.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:33:40.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:33:43.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:33:43.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:33:43.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:33:43.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:33:43.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.9367ms +2017-07-10 18:33:43.877 +05:30 [Information] Request finished in 3117.6522ms 200 application/json; charset=utf-8 +2017-07-10 18:33:43.879 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:34:11.176 +05:30 [Debug] Connection id ""0HL67H782RB5B"" started. +2017-07-10 18:34:11.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:34:11.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:34:11.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:34:11.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:34:11.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:34:11.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:34:14.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:34:14.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:34:14.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:34:14.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:34:14.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:34:14.269 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:34:14.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3083.6616ms +2017-07-10 18:34:14.371 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:34:14.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:34:14.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:34:14.380 +05:30 [Information] Request finished in 3194.8375ms 200 application/json; charset=utf-8 +2017-07-10 18:34:14.380 +05:30 [Debug] Connection id ""0HL67H782RB5A"" completed keep alive response. +2017-07-10 18:34:14.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:34:14.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3201.7455ms +2017-07-10 18:34:14.408 +05:30 [Information] Request finished in 3229.9852ms 200 application/json; charset=utf-8 +2017-07-10 18:34:14.409 +05:30 [Debug] Connection id ""0HL67H782RB5B"" completed keep alive response. +2017-07-10 18:36:03.997 +05:30 [Debug] Connection id ""0HL67H782RB5A"" received FIN. +2017-07-10 18:36:03.999 +05:30 [Debug] Connection id ""0HL67H782RB5A"" disconnecting. +2017-07-10 18:36:03.997 +05:30 [Debug] Connection id ""0HL67H782RB5B"" received FIN. +2017-07-10 18:36:03.999 +05:30 [Debug] Connection id ""0HL67H782RB5C"" started. +2017-07-10 18:36:04.007 +05:30 [Debug] Connection id ""0HL67H782RB5A"" sending FIN. +2017-07-10 18:36:04.008 +05:30 [Debug] Connection id ""0HL67H782RB5A"" sent FIN with status "0". +2017-07-10 18:36:04.009 +05:30 [Debug] Connection id ""0HL67H782RB5A"" stopped. +2017-07-10 18:36:04.003 +05:30 [Debug] Connection id ""0HL67H782RB5B"" disconnecting. +2017-07-10 18:36:04.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:36:04.013 +05:30 [Debug] Connection id ""0HL67H782RB5B"" sending FIN. +2017-07-10 18:36:04.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:36:04.014 +05:30 [Debug] Connection id ""0HL67H782RB5B"" sent FIN with status "0". +2017-07-10 18:36:04.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:36:04.016 +05:30 [Debug] Connection id ""0HL67H782RB5B"" stopped. +2017-07-10 18:36:07.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:36:07.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:07.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:07.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:07.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3051.5365ms +2017-07-10 18:36:07.072 +05:30 [Information] Request finished in 3061.6489ms 200 application/json; charset=utf-8 +2017-07-10 18:36:07.073 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:36:07.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:36:07.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:36:07.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:36:10.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:36:10.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:10.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:10.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:10.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3063.6529ms +2017-07-10 18:36:10.145 +05:30 [Information] Request finished in 3069.9991ms 200 application/json; charset=utf-8 +2017-07-10 18:36:10.146 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:36:10.153 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 18:36:10.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 18:36:10.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 18:36:13.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:36:13.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:13.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:13.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:13.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3150.5374ms +2017-07-10 18:36:13.321 +05:30 [Information] Request finished in 3167.7655ms 200 application/json; charset=utf-8 +2017-07-10 18:36:13.321 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:36:13.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:36:13.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:36:13.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:36:16.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:36:16.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:16.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:16.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:16.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3159.0197ms +2017-07-10 18:36:16.498 +05:30 [Information] Request finished in 3169.7482ms 200 application/json; charset=utf-8 +2017-07-10 18:36:16.499 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:36:16.510 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:36:16.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:36:16.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:36:19.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:36:19.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:19.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:19.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:19.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.559ms +2017-07-10 18:36:19.647 +05:30 [Information] Request finished in 3139.8834ms 200 application/json; charset=utf-8 +2017-07-10 18:36:19.648 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:36:21.483 +05:30 [Debug] Connection id ""0HL67H782RB5D"" started. +2017-07-10 18:36:21.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:36:21.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:36:21.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:36:21.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:36:21.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:36:21.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:36:24.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:36:24.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:36:24.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:24.795 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:36:24.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:24.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:36:24.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:24.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:36:24.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:36:24.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3284.8662ms +2017-07-10 18:36:24.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:36:24.810 +05:30 [Information] Request finished in 3320.1649ms 200 application/json; charset=utf-8 +2017-07-10 18:36:24.810 +05:30 [Debug] Connection id ""0HL67H782RB5D"" completed keep alive response. +2017-07-10 18:36:24.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3293.371ms +2017-07-10 18:36:24.855 +05:30 [Information] Request finished in 3350.0476ms 200 application/json; charset=utf-8 +2017-07-10 18:36:24.856 +05:30 [Debug] Connection id ""0HL67H782RB5C"" completed keep alive response. +2017-07-10 18:38:08.304 +05:30 [Debug] Connection id ""0HL67H782RB5D"" received FIN. +2017-07-10 18:38:08.306 +05:30 [Debug] Connection id ""0HL67H782RB5D"" disconnecting. +2017-07-10 18:38:08.307 +05:30 [Debug] Connection id ""0HL67H782RB5D"" sending FIN. +2017-07-10 18:38:08.308 +05:30 [Debug] Connection id ""0HL67H782RB5D"" sent FIN with status "0". +2017-07-10 18:38:08.310 +05:30 [Debug] Connection id ""0HL67H782RB5D"" stopped. +2017-07-10 18:38:08.304 +05:30 [Debug] Connection id ""0HL67H782RB5C"" received FIN. +2017-07-10 18:38:08.312 +05:30 [Debug] Connection id ""0HL67H782RB5C"" disconnecting. +2017-07-10 18:38:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5C"" sending FIN. +2017-07-10 18:38:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5C"" sent FIN with status "0". +2017-07-10 18:38:08.314 +05:30 [Debug] Connection id ""0HL67H782RB5C"" stopped. +2017-07-10 18:38:26.878 +05:30 [Debug] Connection id ""0HL67H782RB5E"" started. +2017-07-10 18:38:26.883 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-10 18:38:26.884 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-10 18:38:26.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-10 18:38:29.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:38:30.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:30.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:30.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:30.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3145.4635ms +2017-07-10 18:38:30.036 +05:30 [Information] Request finished in 3155.1634ms 200 application/json; charset=utf-8 +2017-07-10 18:38:30.037 +05:30 [Debug] Connection id ""0HL67H782RB5E"" completed keep alive response. +2017-07-10 18:38:30.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:38:30.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:38:30.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:38:33.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:33.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:33.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:33.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:33.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3112.0026ms +2017-07-10 18:38:33.258 +05:30 [Information] Request finished in 3117.9402ms 200 application/json; charset=utf-8 +2017-07-10 18:38:33.258 +05:30 [Debug] Connection id ""0HL67H782RB5E"" completed keep alive response. +2017-07-10 18:38:33.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:38:33.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:38:33.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:38:35.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:35.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:35.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:35.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:35.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2168.6716ms +2017-07-10 18:38:35.440 +05:30 [Information] Request finished in 2174.7811ms 200 application/json; charset=utf-8 +2017-07-10 18:38:35.440 +05:30 [Debug] Connection id ""0HL67H782RB5E"" completed keep alive response. +2017-07-10 18:38:41.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:38:41.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:38:41.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:38:41.387 +05:30 [Debug] Connection id ""0HL67H782RB5F"" started. +2017-07-10 18:38:41.388 +05:30 [Debug] Connection id ""0HL67H782RB5G"" started. +2017-07-10 18:38:41.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:38:41.391 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:38:41.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:38:41.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:38:41.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:38:41.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:38:42.108 +05:30 [Debug] Connection id ""0HL67H782RB5H"" started. +2017-07-10 18:38:42.110 +05:30 [Debug] Connection id ""0HL67H782RB5I"" started. +2017-07-10 18:38:42.119 +05:30 [Debug] Connection id ""0HL67H782RB5J"" started. +2017-07-10 18:38:42.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:38:42.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:38:42.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:38:42.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 18:38:42.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 18:38:42.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 18:38:42.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 18:38:42.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 18:38:42.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 18:38:42.900 +05:30 [Debug] Connection id ""0HL67H782RB5K"" started. +2017-07-10 18:38:42.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 18:38:42.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 18:38:42.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 18:38:43.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:43.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:43.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:43.862 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:43.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:43.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:43.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:43.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2524.5693ms +2017-07-10 18:38:43.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:43.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:44.000 +05:30 [Information] Request finished in 2583.6892ms 200 application/json; charset=utf-8 +2017-07-10 18:38:44.001 +05:30 [Debug] Connection id ""0HL67H782RB5F"" completed keep alive response. +2017-07-10 18:38:44.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2609.2297ms +2017-07-10 18:38:44.014 +05:30 [Information] Request finished in 2650.1294ms 200 application/json; charset=utf-8 +2017-07-10 18:38:44.016 +05:30 [Debug] Connection id ""0HL67H782RB5E"" completed keep alive response. +2017-07-10 18:38:44.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:38:44.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:38:44.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:38:44.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:44.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:44.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:44.778 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:44.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:44.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:44.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2463.5586ms +2017-07-10 18:38:44.786 +05:30 [Information] Request finished in 2494.3379ms 200 application/json; charset=utf-8 +2017-07-10 18:38:44.787 +05:30 [Debug] Connection id ""0HL67H782RB5J"" completed keep alive response. +2017-07-10 18:38:45.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:45.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:45.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:45.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:45.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:45.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3298.5234ms +2017-07-10 18:38:45.479 +05:30 [Information] Request finished in 3363.6383ms 200 application/json; charset=utf-8 +2017-07-10 18:38:45.479 +05:30 [Debug] Connection id ""0HL67H782RB5H"" completed keep alive response. +2017-07-10 18:38:46.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:46.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:46.052 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:46.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:46.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3781.0862ms +2017-07-10 18:38:46.060 +05:30 [Information] Request finished in 3877.526ms 200 application/json; charset=utf-8 +2017-07-10 18:38:46.061 +05:30 [Debug] Connection id ""0HL67H782RB5I"" completed keep alive response. +2017-07-10 18:38:46.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:46.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 18:38:46.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:46.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:46.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:46.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2190.2241ms +2017-07-10 18:38:46.225 +05:30 [Information] Request finished in 2201.5492ms 200 application/json; charset=utf-8 +2017-07-10 18:38:46.226 +05:30 [Debug] Connection id ""0HL67H782RB5F"" completed keep alive response. +2017-07-10 18:38:46.339 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:46.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:46.371 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:46.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3446.165ms +2017-07-10 18:38:46.427 +05:30 [Information] Request finished in 3504.9042ms 200 application/json; charset=utf-8 +2017-07-10 18:38:46.428 +05:30 [Debug] Connection id ""0HL67H782RB5K"" completed keep alive response. +2017-07-10 18:38:47.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:38:47.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:38:47.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:38:47.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:38:47.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:38:47.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:38:47.470 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 18:38:47.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 18:38:47.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 18:38:47.478 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:38:47.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:38:47.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:38:47.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 18:38:47.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 18:38:47.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 18:38:48.057 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:38:48.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:38:48.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:38:48.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:48.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:48.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:48.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:48.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:48.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7482.3354ms +2017-07-10 18:38:48.894 +05:30 [Information] Request finished in 7494.7236ms 200 application/json; charset=utf-8 +2017-07-10 18:38:48.894 +05:30 [Debug] Connection id ""0HL67H782RB5G"" completed keep alive response. +2017-07-10 18:38:49.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:49.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:49.787 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:49.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:49.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:49.792 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2725.2326ms +2017-07-10 18:38:49.795 +05:30 [Information] Request finished in 2738.3561ms 200 application/json; charset=utf-8 +2017-07-10 18:38:49.795 +05:30 [Debug] Connection id ""0HL67H782RB5J"" completed keep alive response. +2017-07-10 18:38:50.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:50.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:50.236 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:50.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:50.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:50.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3178.1858ms +2017-07-10 18:38:50.246 +05:30 [Information] Request finished in 3189.5798ms 200 application/json; charset=utf-8 +2017-07-10 18:38:50.246 +05:30 [Debug] Connection id ""0HL67H782RB5E"" completed keep alive response. +2017-07-10 18:38:50.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:50.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:50.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:38:51.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:51.071 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:51.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:51.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:51.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3623.4566ms +2017-07-10 18:38:51.147 +05:30 [Information] Request finished in 3668.1831ms 200 application/json; charset=utf-8 +2017-07-10 18:38:51.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:51.148 +05:30 [Debug] Connection id ""0HL67H782RB5I"" completed keep alive response. +2017-07-10 18:38:51.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:51.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:51.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:51.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3661.4747ms +2017-07-10 18:38:51.162 +05:30 [Information] Request finished in 3695.3121ms 200 application/json; charset=utf-8 +2017-07-10 18:38:51.162 +05:30 [Debug] Connection id ""0HL67H782RB5F"" completed keep alive response. +2017-07-10 18:38:51.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:38:51.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:51.312 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:51.313 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:51.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3215.7106ms +2017-07-10 18:38:51.317 +05:30 [Information] Request finished in 3264.5516ms 200 application/json; charset=utf-8 +2017-07-10 18:38:51.318 +05:30 [Debug] Connection id ""0HL67H782RB5K"" completed keep alive response. +2017-07-10 18:38:51.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:38:51.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:38:51.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:38:51.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:51.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:38:51.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:51.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:51.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4330.1803ms +2017-07-10 18:38:51.806 +05:30 [Information] Request finished in 4346.685ms 200 application/json; charset=utf-8 +2017-07-10 18:38:51.806 +05:30 [Debug] Connection id ""0HL67H782RB5H"" completed keep alive response. +2017-07-10 18:38:53.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:38:53.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:53.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:53.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:53.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2120.4792ms +2017-07-10 18:38:53.448 +05:30 [Information] Request finished in 2127.6273ms 200 application/json; charset=utf-8 +2017-07-10 18:38:53.449 +05:30 [Debug] Connection id ""0HL67H782RB5G"" completed keep alive response. +2017-07-10 18:38:53.456 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 18:38:53.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 18:38:53.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 18:38:56.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 18:38:56.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:38:56.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:38:56.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:38:56.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3111.0067ms +2017-07-10 18:38:56.582 +05:30 [Information] Request finished in 3124.302ms 200 application/json; charset=utf-8 +2017-07-10 18:38:56.582 +05:30 [Debug] Connection id ""0HL67H782RB5J"" completed keep alive response. +2017-07-10 18:40:08.305 +05:30 [Debug] Connection id ""0HL67H782RB5E"" received FIN. +2017-07-10 18:40:08.307 +05:30 [Debug] Connection id ""0HL67H782RB5I"" received FIN. +2017-07-10 18:40:08.307 +05:30 [Debug] Connection id ""0HL67H782RB5F"" received FIN. +2017-07-10 18:40:08.311 +05:30 [Debug] Connection id ""0HL67H782RB5H"" received FIN. +2017-07-10 18:40:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5J"" received FIN. +2017-07-10 18:40:08.311 +05:30 [Debug] Connection id ""0HL67H782RB5I"" disconnecting. +2017-07-10 18:40:08.314 +05:30 [Debug] Connection id ""0HL67H782RB5J"" disconnecting. +2017-07-10 18:40:08.315 +05:30 [Debug] Connection id ""0HL67H782RB5J"" sending FIN. +2017-07-10 18:40:08.314 +05:30 [Debug] Connection id ""0HL67H782RB5H"" disconnecting. +2017-07-10 18:40:08.310 +05:30 [Debug] Connection id ""0HL67H782RB5K"" received FIN. +2017-07-10 18:40:08.316 +05:30 [Debug] Connection id ""0HL67H782RB5G"" received FIN. +2017-07-10 18:40:08.317 +05:30 [Debug] Connection id ""0HL67H782RB5I"" sending FIN. +2017-07-10 18:40:08.317 +05:30 [Debug] Connection id ""0HL67H782RB5I"" sent FIN with status "0". +2017-07-10 18:40:08.316 +05:30 [Debug] Connection id ""0HL67H782RB5K"" disconnecting. +2017-07-10 18:40:08.318 +05:30 [Debug] Connection id ""0HL67H782RB5G"" disconnecting. +2017-07-10 18:40:08.315 +05:30 [Debug] Connection id ""0HL67H782RB5J"" sent FIN with status "0". +2017-07-10 18:40:08.319 +05:30 [Debug] Connection id ""0HL67H782RB5J"" stopped. +2017-07-10 18:40:08.319 +05:30 [Debug] Connection id ""0HL67H782RB5H"" sending FIN. +2017-07-10 18:40:08.319 +05:30 [Debug] Connection id ""0HL67H782RB5H"" sent FIN with status "0". +2017-07-10 18:40:08.319 +05:30 [Debug] Connection id ""0HL67H782RB5H"" stopped. +2017-07-10 18:40:08.307 +05:30 [Debug] Connection id ""0HL67H782RB5E"" disconnecting. +2017-07-10 18:40:08.312 +05:30 [Debug] Connection id ""0HL67H782RB5F"" disconnecting. +2017-07-10 18:40:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5F"" sending FIN. +2017-07-10 18:40:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5F"" sent FIN with status "0". +2017-07-10 18:40:08.318 +05:30 [Debug] Connection id ""0HL67H782RB5I"" stopped. +2017-07-10 18:40:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5F"" stopped. +2017-07-10 18:40:08.322 +05:30 [Debug] Connection id ""0HL67H782RB5K"" sending FIN. +2017-07-10 18:40:08.323 +05:30 [Debug] Connection id ""0HL67H782RB5G"" sending FIN. +2017-07-10 18:40:08.323 +05:30 [Debug] Connection id ""0HL67H782RB5E"" sending FIN. +2017-07-10 18:40:08.324 +05:30 [Debug] Connection id ""0HL67H782RB5E"" sent FIN with status "0". +2017-07-10 18:40:08.325 +05:30 [Debug] Connection id ""0HL67H782RB5E"" stopped. +2017-07-10 18:40:08.325 +05:30 [Debug] Connection id ""0HL67H782RB5G"" sent FIN with status "0". +2017-07-10 18:40:08.326 +05:30 [Debug] Connection id ""0HL67H782RB5G"" stopped. +2017-07-10 18:40:08.326 +05:30 [Debug] Connection id ""0HL67H782RB5K"" sent FIN with status "0". +2017-07-10 18:40:08.327 +05:30 [Debug] Connection id ""0HL67H782RB5K"" stopped. +2017-07-10 18:44:23.947 +05:30 [Debug] Connection id ""0HL67H782RB5L"" started. +2017-07-10 18:44:23.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:44:23.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:44:23.952 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:44:26.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:44:27.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:27.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:27.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:27.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3095.0244ms +2017-07-10 18:44:27.051 +05:30 [Information] Request finished in 3102.397ms 200 application/json; charset=utf-8 +2017-07-10 18:44:27.051 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:27.054 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:44:27.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:44:27.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:44:29.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:44:29.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:29.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:29.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:29.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2128.0755ms +2017-07-10 18:44:29.191 +05:30 [Information] Request finished in 2136.0417ms 200 application/json; charset=utf-8 +2017-07-10 18:44:29.191 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:29.203 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-10 18:44:29.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-10 18:44:29.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-10 18:44:32.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:44:32.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:32.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:32.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:32.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.3928ms +2017-07-10 18:44:32.279 +05:30 [Information] Request finished in 3075.0952ms 200 application/json; charset=utf-8 +2017-07-10 18:44:32.280 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:32.288 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-10 18:44:32.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-10 18:44:32.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-10 18:44:35.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:35.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:35.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:35.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:35.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3095.1423ms +2017-07-10 18:44:35.405 +05:30 [Information] Request finished in 3118.0743ms 200 application/json; charset=utf-8 +2017-07-10 18:44:35.406 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:35.410 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:44:35.411 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:44:35.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:44:38.469 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:38.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:38.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:38.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:38.540 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3126.7873ms +2017-07-10 18:44:38.542 +05:30 [Information] Request finished in 3132.0311ms 200 application/json; charset=utf-8 +2017-07-10 18:44:38.543 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:47.408 +05:30 [Debug] Connection id ""0HL67H782RB5M"" started. +2017-07-10 18:44:47.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-10 18:44:47.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-10 18:44:47.432 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-10 18:44:47.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-10 18:44:47.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-10 18:44:47.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-10 18:44:48.140 +05:30 [Debug] Connection id ""0HL67H782RB5N"" started. +2017-07-10 18:44:48.141 +05:30 [Debug] Connection id ""0HL67H782RB5O"" started. +2017-07-10 18:44:48.146 +05:30 [Debug] Connection id ""0HL67H782RB5P"" started. +2017-07-10 18:44:48.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-10 18:44:48.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-10 18:44:48.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-10 18:44:48.190 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-10 18:44:48.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-10 18:44:48.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-10 18:44:48.193 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-10 18:44:48.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-10 18:44:48.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-10 18:44:48.981 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" started. +2017-07-10 18:44:48.984 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-10 18:44:48.984 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-10 18:44:48.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-10 18:44:50.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:50.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:50.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:50.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:50.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:44:50.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:50.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:50.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3299.9072ms +2017-07-10 18:44:50.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:50.778 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:44:50.779 +05:30 [Information] Request finished in 3367.4532ms 200 application/json; charset=utf-8 +2017-07-10 18:44:50.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:50.784 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:50.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:50.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3359.0835ms +2017-07-10 18:44:50.801 +05:30 [Information] Request finished in 3389.0248ms 200 application/json; charset=utf-8 +2017-07-10 18:44:50.802 +05:30 [Debug] Connection id ""0HL67H782RB5M"" completed keep alive response. +2017-07-10 18:44:51.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:51.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-10 18:44:51.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:51.702 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:44:51.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:51.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:51.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3541.6371ms +2017-07-10 18:44:51.734 +05:30 [Information] Request finished in 3584.8178ms 200 application/json; charset=utf-8 +2017-07-10 18:44:51.747 +05:30 [Debug] Connection id ""0HL67H782RB5O"" completed keep alive response. +2017-07-10 18:44:51.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:51.888 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:44:51.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:51.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:51.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3694.1924ms +2017-07-10 18:44:51.895 +05:30 [Information] Request finished in 3743.2555ms 200 application/json; charset=utf-8 +2017-07-10 18:44:51.895 +05:30 [Debug] Connection id ""0HL67H782RB5N"" completed keep alive response. +2017-07-10 18:44:51.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:51.962 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-10 18:44:51.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:51.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:51.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3772.4745ms +2017-07-10 18:44:51.969 +05:30 [Information] Request finished in 3816.3369ms 200 application/json; charset=utf-8 +2017-07-10 18:44:51.969 +05:30 [Debug] Connection id ""0HL67H782RB5P"" completed keep alive response. +2017-07-10 18:44:52.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-10 18:44:52.584 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:52.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:52.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:52.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.4601ms +2017-07-10 18:44:52.599 +05:30 [Information] Request finished in 3606.8473ms 200 application/json; charset=utf-8 +2017-07-10 18:44:52.599 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" completed keep alive response. +2017-07-10 18:44:52.609 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-10 18:44:52.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-10 18:44:52.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-10 18:44:55.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-10 18:44:55.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:55.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:55.661 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:55.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.8851ms +2017-07-10 18:44:55.666 +05:30 [Information] Request finished in 3062.2442ms 200 application/json; charset=utf-8 +2017-07-10 18:44:55.666 +05:30 [Debug] Connection id ""0HL67H782RB5L"" completed keep alive response. +2017-07-10 18:44:55.672 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-10 18:44:55.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-10 18:44:55.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-10 18:44:58.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-10 18:44:58.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-10 18:44:58.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-10 18:44:58.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-10 18:44:58.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3089.3827ms +2017-07-10 18:44:58.768 +05:30 [Information] Request finished in 3096.1345ms 200 application/json; charset=utf-8 +2017-07-10 18:44:58.769 +05:30 [Debug] Connection id ""0HL67H782RB5M"" completed keep alive response. +2017-07-10 18:46:08.303 +05:30 [Debug] Connection id ""0HL67H782RB5O"" received FIN. +2017-07-10 18:46:08.304 +05:30 [Debug] Connection id ""0HL67H782RB5O"" disconnecting. +2017-07-10 18:46:08.304 +05:30 [Debug] Connection id ""0HL67H782RB5N"" received FIN. +2017-07-10 18:46:08.305 +05:30 [Debug] Connection id ""0HL67H782RB5O"" sending FIN. +2017-07-10 18:46:08.306 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" received FIN. +2017-07-10 18:46:08.312 +05:30 [Debug] Connection id ""0HL67H782RB5M"" received FIN. +2017-07-10 18:46:08.306 +05:30 [Debug] Connection id ""0HL67H782RB5N"" disconnecting. +2017-07-10 18:46:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5N"" sending FIN. +2017-07-10 18:46:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5M"" disconnecting. +2017-07-10 18:46:08.313 +05:30 [Debug] Connection id ""0HL67H782RB5N"" sent FIN with status "0". +2017-07-10 18:46:08.310 +05:30 [Debug] Connection id ""0HL67H782RB5O"" sent FIN with status "0". +2017-07-10 18:46:08.314 +05:30 [Debug] Connection id ""0HL67H782RB5N"" stopped. +2017-07-10 18:46:08.315 +05:30 [Debug] Connection id ""0HL67H782RB5M"" sending FIN. +2017-07-10 18:46:08.315 +05:30 [Debug] Connection id ""0HL67H782RB5O"" stopped. +2017-07-10 18:46:08.316 +05:30 [Debug] Connection id ""0HL67H782RB5M"" sent FIN with status "0". +2017-07-10 18:46:08.316 +05:30 [Debug] Connection id ""0HL67H782RB5P"" received FIN. +2017-07-10 18:46:08.312 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" disconnecting. +2017-07-10 18:46:08.317 +05:30 [Debug] Connection id ""0HL67H782RB5M"" stopped. +2017-07-10 18:46:08.317 +05:30 [Debug] Connection id ""0HL67H782RB5P"" disconnecting. +2017-07-10 18:46:08.319 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" sending FIN. +2017-07-10 18:46:08.317 +05:30 [Debug] Connection id ""0HL67H782RB5L"" received FIN. +2017-07-10 18:46:08.320 +05:30 [Debug] Connection id ""0HL67H782RB5P"" sending FIN. +2017-07-10 18:46:08.320 +05:30 [Debug] Connection id ""0HL67H782RB5P"" sent FIN with status "0". +2017-07-10 18:46:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5P"" stopped. +2017-07-10 18:46:08.320 +05:30 [Debug] Connection id ""0HL67H782RB5L"" disconnecting. +2017-07-10 18:46:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5L"" sending FIN. +2017-07-10 18:46:08.320 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" sent FIN with status "0". +2017-07-10 18:46:08.322 +05:30 [Debug] Connection id ""0HL67H782RB5Q"" stopped. +2017-07-10 18:46:08.321 +05:30 [Debug] Connection id ""0HL67H782RB5L"" sent FIN with status "0". +2017-07-10 18:46:08.323 +05:30 [Debug] Connection id ""0HL67H782RB5L"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170711.txt b/src/Api.Socioboard/wwwroot/log/log-20170711.txt new file mode 100644 index 000000000..b9d60ac9f --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170711.txt @@ -0,0 +1,1137 @@ +2017-07-11 10:28:40.128 +05:30 [Debug] Hosting starting +2017-07-11 10:28:41.199 +05:30 [Debug] Hosting started +2017-07-11 10:28:41.395 +05:30 [Debug] Connection id ""0HL683600EIJE"" started. +2017-07-11 10:28:41.467 +05:30 [Debug] Connection id ""0HL683600EIJF"" started. +2017-07-11 10:28:41.681 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-11 10:28:41.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-11 10:28:41.758 +05:30 [Information] Request finished in 151.8433ms 200 +2017-07-11 10:28:41.815 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:28:43.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-11 10:28:43.786 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a1044feb-7618-4d3e-868a-d95e22cb3150"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-11 10:28:43.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-11 10:28:44.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-11 10:28:44.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-11 10:28:44.183 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:28:44.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:28:44.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:28:44.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 10:28:44.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 10:28:44.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 10:28:44.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 536.901ms +2017-07-11 10:28:44.675 +05:30 [Information] Request finished in 3073.5166ms 200 application/json; charset=utf-8 +2017-07-11 10:28:44.679 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:28:44.832 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-11 10:28:44.835 +05:30 [Debug] Request did not match any routes. +2017-07-11 10:28:44.855 +05:30 [Debug] The request path "" does not match the path filter +2017-07-11 10:28:44.878 +05:30 [Information] Request finished in 67.6641ms 404 +2017-07-11 10:28:44.879 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:28:48.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 10:28:55.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:28:55.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:28:55.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:28:55.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11008.9688ms +2017-07-11 10:28:55.539 +05:30 [Information] Request finished in 11023.6432ms 200 application/json; charset=utf-8 +2017-07-11 10:28:55.540 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:28:56.272 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 10:28:56.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 10:28:56.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 10:28:58.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 10:28:58.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:28:58.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:28:58.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:28:58.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2475.7287ms +2017-07-11 10:28:58.775 +05:30 [Information] Request finished in 2520.3859ms 200 application/json; charset=utf-8 +2017-07-11 10:28:58.776 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:28:59.705 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 10:28:59.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 10:28:59.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 10:29:02.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 10:29:02.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:02.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:02.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:02.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3076.4525ms +2017-07-11 10:29:02.789 +05:30 [Information] Request finished in 3084.7026ms 200 application/json; charset=utf-8 +2017-07-11 10:29:02.790 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:29:02.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 10:29:02.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 10:29:02.795 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 10:29:05.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 10:29:05.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:05.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:05.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:05.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3045.56ms +2017-07-11 10:29:05.853 +05:30 [Information] Request finished in 3059.5024ms 200 application/json; charset=utf-8 +2017-07-11 10:29:05.853 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:29:05.893 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-11 10:29:05.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-11 10:29:05.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-11 10:29:08.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 10:29:08.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:08.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:08.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:08.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3087.3839ms +2017-07-11 10:29:08.999 +05:30 [Information] Request finished in 3108.3167ms 200 application/json; charset=utf-8 +2017-07-11 10:29:08.999 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:29:09.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-11 10:29:09.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-11 10:29:09.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-11 10:29:12.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:12.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:12.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:12.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:12.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3336.7133ms +2017-07-11 10:29:12.778 +05:30 [Information] Request finished in 3345.3849ms 200 application/json; charset=utf-8 +2017-07-11 10:29:12.779 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:29:12.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 10:29:12.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 10:29:12.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 10:29:15.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:15.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:15.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:15.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:16.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3144.2878ms +2017-07-11 10:29:16.010 +05:30 [Information] Request finished in 3151.0706ms 200 application/json; charset=utf-8 +2017-07-11 10:29:16.011 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:29:28.391 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-11 10:29:28.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-11 10:29:28.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-11 10:29:28.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-11 10:29:28.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-11 10:29:28.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-11 10:29:30.117 +05:30 [Debug] Connection id ""0HL683600EIJG"" started. +2017-07-11 10:29:30.124 +05:30 [Debug] Connection id ""0HL683600EIJH"" started. +2017-07-11 10:29:30.132 +05:30 [Debug] Connection id ""0HL683600EIJI"" started. +2017-07-11 10:29:30.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-11 10:29:30.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-11 10:29:30.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-11 10:29:30.147 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-11 10:29:30.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-11 10:29:30.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-11 10:29:30.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 10:29:30.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 10:29:30.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 10:29:31.171 +05:30 [Debug] Connection id ""0HL683600EIJJ"" started. +2017-07-11 10:29:31.520 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 10:29:31.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 10:29:31.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 10:29:32.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:32.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:32.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:32.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:29:32.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:32.794 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:32.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4415.2185ms +2017-07-11 10:29:32.839 +05:30 [Information] Request finished in 4482.2579ms 200 application/json; charset=utf-8 +2017-07-11 10:29:32.840 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:29:32.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:32.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:29:32.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:32.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:32.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4502.3399ms +2017-07-11 10:29:32.923 +05:30 [Information] Request finished in 4566.415ms 200 application/json; charset=utf-8 +2017-07-11 10:29:32.923 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:29:33.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:34.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:34.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:29:34.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:34.529 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:29:34.530 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:34.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:34.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:34.694 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:29:34.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:34.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:34.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 10:29:34.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:34.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:34.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4539.4737ms +2017-07-11 10:29:34.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:34.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3220.7477ms +2017-07-11 10:29:34.774 +05:30 [Information] Request finished in 4580.8715ms 200 application/json; charset=utf-8 +2017-07-11 10:29:34.780 +05:30 [Information] Request finished in 3256.4982ms 200 application/json; charset=utf-8 +2017-07-11 10:29:34.791 +05:30 [Debug] Connection id ""0HL683600EIJJ"" completed keep alive response. +2017-07-11 10:29:34.791 +05:30 [Debug] Connection id ""0HL683600EIJI"" completed keep alive response. +2017-07-11 10:29:34.823 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 10:29:34.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4674.4633ms +2017-07-11 10:29:34.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 10:29:34.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 10:29:34.844 +05:30 [Information] Request finished in 4714.6554ms 200 application/json; charset=utf-8 +2017-07-11 10:29:34.846 +05:30 [Debug] Connection id ""0HL683600EIJG"" completed keep alive response. +2017-07-11 10:29:36.956 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 10:29:36.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:36.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:36.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:36.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2120.6714ms +2017-07-11 10:29:36.970 +05:30 [Information] Request finished in 2156.6706ms 200 application/json; charset=utf-8 +2017-07-11 10:29:36.970 +05:30 [Debug] Connection id ""0HL683600EIJF"" completed keep alive response. +2017-07-11 10:29:36.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:36.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:29:36.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:36.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:36.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6832.1351ms +2017-07-11 10:29:37.005 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-11 10:29:37.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-11 10:29:37.007 +05:30 [Information] Request finished in 6876.8985ms 200 application/json; charset=utf-8 +2017-07-11 10:29:37.008 +05:30 [Debug] Connection id ""0HL683600EIJH"" completed keep alive response. +2017-07-11 10:29:37.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-11 10:29:40.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-11 10:29:40.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:29:40.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:29:40.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:29:40.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3342.4096ms +2017-07-11 10:29:40.361 +05:30 [Information] Request finished in 3369.0616ms 200 application/json; charset=utf-8 +2017-07-11 10:29:40.361 +05:30 [Debug] Connection id ""0HL683600EIJE"" completed keep alive response. +2017-07-11 10:30:41.367 +05:30 [Debug] Connection id ""0HL683600EIJJ"" received FIN. +2017-07-11 10:30:41.368 +05:30 [Debug] Connection id ""0HL683600EIJI"" received FIN. +2017-07-11 10:30:41.369 +05:30 [Debug] Connection id ""0HL683600EIJJ"" disconnecting. +2017-07-11 10:30:41.370 +05:30 [Debug] Connection id ""0HL683600EIJG"" received FIN. +2017-07-11 10:30:41.368 +05:30 [Debug] Connection id ""0HL683600EIJF"" received FIN. +2017-07-11 10:30:41.371 +05:30 [Debug] Connection id ""0HL683600EIJI"" disconnecting. +2017-07-11 10:30:41.375 +05:30 [Debug] Connection id ""0HL683600EIJG"" disconnecting. +2017-07-11 10:30:41.379 +05:30 [Debug] Connection id ""0HL683600EIJF"" disconnecting. +2017-07-11 10:30:41.379 +05:30 [Debug] Connection id ""0HL683600EIJH"" received FIN. +2017-07-11 10:30:41.383 +05:30 [Debug] Connection id ""0HL683600EIJH"" disconnecting. +2017-07-11 10:30:41.383 +05:30 [Debug] Connection id ""0HL683600EIJJ"" sending FIN. +2017-07-11 10:30:41.375 +05:30 [Debug] Connection id ""0HL683600EIJE"" received FIN. +2017-07-11 10:30:41.385 +05:30 [Debug] Connection id ""0HL683600EIJF"" sending FIN. +2017-07-11 10:30:41.388 +05:30 [Debug] Connection id ""0HL683600EIJH"" sending FIN. +2017-07-11 10:30:41.388 +05:30 [Debug] Connection id ""0HL683600EIJE"" disconnecting. +2017-07-11 10:30:41.386 +05:30 [Debug] Connection id ""0HL683600EIJI"" sending FIN. +2017-07-11 10:30:41.394 +05:30 [Debug] Connection id ""0HL683600EIJH"" sent FIN with status "0". +2017-07-11 10:30:41.395 +05:30 [Debug] Connection id ""0HL683600EIJG"" sending FIN. +2017-07-11 10:30:41.399 +05:30 [Debug] Connection id ""0HL683600EIJH"" stopped. +2017-07-11 10:30:41.400 +05:30 [Debug] Connection id ""0HL683600EIJE"" sending FIN. +2017-07-11 10:30:41.402 +05:30 [Debug] Connection id ""0HL683600EIJF"" sent FIN with status "0". +2017-07-11 10:30:41.402 +05:30 [Debug] Connection id ""0HL683600EIJE"" sent FIN with status "0". +2017-07-11 10:30:41.404 +05:30 [Debug] Connection id ""0HL683600EIJE"" stopped. +2017-07-11 10:30:41.404 +05:30 [Debug] Connection id ""0HL683600EIJG"" sent FIN with status "0". +2017-07-11 10:30:41.403 +05:30 [Debug] Connection id ""0HL683600EIJF"" stopped. +2017-07-11 10:30:41.405 +05:30 [Debug] Connection id ""0HL683600EIJG"" stopped. +2017-07-11 10:30:41.407 +05:30 [Debug] Connection id ""0HL683600EIJJ"" sent FIN with status "0". +2017-07-11 10:30:41.407 +05:30 [Debug] Connection id ""0HL683600EIJI"" sent FIN with status "0". +2017-07-11 10:30:41.409 +05:30 [Debug] Connection id ""0HL683600EIJI"" stopped. +2017-07-11 10:30:41.408 +05:30 [Debug] Connection id ""0HL683600EIJJ"" stopped. +2017-07-11 10:30:50.618 +05:30 [Debug] Connection id ""0HL683600EIJK"" started. +2017-07-11 10:30:50.618 +05:30 [Debug] Connection id ""0HL683600EIJL"" started. +2017-07-11 10:30:50.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-11 10:30:50.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-11 10:30:50.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-11 10:30:50.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-11 10:30:50.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-11 10:30:50.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-11 10:30:52.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:30:53.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:30:57.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:30:57.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:30:57.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:30:57.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:30:57.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 6557.2737ms +2017-07-11 10:30:57.190 +05:30 [Information] Request finished in 6564.0419ms 200 application/json; charset=utf-8 +2017-07-11 10:30:57.190 +05:30 [Debug] Connection id ""0HL683600EIJL"" completed keep alive response. +2017-07-11 10:30:57.301 +05:30 [Debug] Connection id ""0HL683600EIJM"" started. +2017-07-11 10:30:57.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-11 10:30:57.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-11 10:30:57.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-11 10:30:57.313 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-11 10:30:57.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-11 10:30:57.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-11 10:30:57.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:30:58.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:30:58.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:30:58.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:30:58.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 7369.2721ms +2017-07-11 10:30:58.018 +05:30 [Information] Request finished in 7397.1911ms 200 application/json; charset=utf-8 +2017-07-11 10:30:58.019 +05:30 [Debug] Connection id ""0HL683600EIJK"" completed keep alive response. +2017-07-11 10:30:59.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:30:59.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:30:59.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:30:59.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:30:59.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:30:59.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 2317.2676ms +2017-07-11 10:30:59.630 +05:30 [Information] Request finished in 2331.5517ms 200 application/json; charset=utf-8 +2017-07-11 10:30:59.630 +05:30 [Debug] Connection id ""0HL683600EIJL"" completed keep alive response. +2017-07-11 10:31:00.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 10:31:14.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 10:31:14.236 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 10:31:14.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 10:31:14.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 10:31:14.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 16939.9029ms +2017-07-11 10:31:14.269 +05:30 [Information] Request finished in 16964.351ms 200 application/json; charset=utf-8 +2017-07-11 10:31:14.271 +05:30 [Debug] Connection id ""0HL683600EIJM"" completed keep alive response. +2017-07-11 10:32:41.366 +05:30 [Debug] Connection id ""0HL683600EIJK"" received FIN. +2017-07-11 10:32:41.368 +05:30 [Debug] Connection id ""0HL683600EIJK"" disconnecting. +2017-07-11 10:32:41.376 +05:30 [Debug] Connection id ""0HL683600EIJK"" sending FIN. +2017-07-11 10:32:41.378 +05:30 [Debug] Connection id ""0HL683600EIJK"" sent FIN with status "0". +2017-07-11 10:32:41.379 +05:30 [Debug] Connection id ""0HL683600EIJK"" stopped. +2017-07-11 10:32:41.366 +05:30 [Debug] Connection id ""0HL683600EIJL"" received FIN. +2017-07-11 10:32:41.383 +05:30 [Debug] Connection id ""0HL683600EIJM"" received FIN. +2017-07-11 10:32:41.387 +05:30 [Debug] Connection id ""0HL683600EIJM"" disconnecting. +2017-07-11 10:32:41.387 +05:30 [Debug] Connection id ""0HL683600EIJM"" sending FIN. +2017-07-11 10:32:41.388 +05:30 [Debug] Connection id ""0HL683600EIJM"" sent FIN with status "0". +2017-07-11 10:32:41.390 +05:30 [Debug] Connection id ""0HL683600EIJM"" stopped. +2017-07-11 10:32:41.383 +05:30 [Debug] Connection id ""0HL683600EIJL"" disconnecting. +2017-07-11 10:32:41.392 +05:30 [Debug] Connection id ""0HL683600EIJL"" sending FIN. +2017-07-11 10:32:41.402 +05:30 [Debug] Connection id ""0HL683600EIJL"" sent FIN with status "0". +2017-07-11 10:32:41.406 +05:30 [Debug] Connection id ""0HL683600EIJL"" stopped. +2017-07-11 15:36:40.136 +05:30 [Debug] Hosting starting +2017-07-11 15:36:40.400 +05:30 [Debug] Hosting started +2017-07-11 15:36:40.619 +05:30 [Debug] Connection id ""0HL688I382BUM"" started. +2017-07-11 15:36:40.619 +05:30 [Debug] Connection id ""0HL688I382BUL"" started. +2017-07-11 15:36:40.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-11 15:36:40.781 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-11 15:36:40.847 +05:30 [Information] Request finished in 97.856ms 200 +2017-07-11 15:36:40.899 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:36:41.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-11 15:36:42.034 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f01f8c4d-9e70-4a00-a55f-17ff4638bdf2"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-11 15:36:42.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-11 15:36:42.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-11 15:36:42.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-11 15:36:42.589 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:36:42.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:36:42.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:36:42.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 412.0811ms +2017-07-11 15:36:42.947 +05:30 [Information] Request finished in 2200.3097ms 200 application/json; charset=utf-8 +2017-07-11 15:36:42.953 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:36:43.047 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 15:36:43.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 15:36:43.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 15:36:43.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-11 15:36:43.400 +05:30 [Debug] Request did not match any routes. +2017-07-11 15:36:43.421 +05:30 [Debug] The request path "" does not match the path filter +2017-07-11 15:36:43.423 +05:30 [Information] Request finished in 26.8311ms 404 +2017-07-11 15:36:43.424 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:36:47.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 15:36:52.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:36:52.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:36:52.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:36:52.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9355.9297ms +2017-07-11 15:36:52.434 +05:30 [Information] Request finished in 9400.9734ms 200 application/json; charset=utf-8 +2017-07-11 15:36:52.435 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:36:52.875 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 15:36:52.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 15:36:52.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 15:36:56.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 15:36:56.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:36:56.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:36:56.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:36:56.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3288.6115ms +2017-07-11 15:36:56.169 +05:30 [Information] Request finished in 3295.1388ms 200 application/json; charset=utf-8 +2017-07-11 15:36:56.170 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:36:56.792 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 15:36:56.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 15:36:56.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 15:36:59.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 15:36:59.840 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:36:59.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:36:59.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:36:59.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3044.0278ms +2017-07-11 15:36:59.846 +05:30 [Information] Request finished in 3055.2147ms 200 application/json; charset=utf-8 +2017-07-11 15:36:59.847 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:36:59.850 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 15:36:59.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 15:36:59.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 15:37:01.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 15:37:01.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:01.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:01.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:01.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1170.6525ms +2017-07-11 15:37:01.027 +05:30 [Information] Request finished in 1177.4888ms 200 application/json; charset=utf-8 +2017-07-11 15:37:01.028 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:37:01.078 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-11 15:37:01.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-11 15:37:01.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-11 15:37:04.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 15:37:04.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:04.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:04.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:04.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.8934ms +2017-07-11 15:37:04.143 +05:30 [Information] Request finished in 3073.7718ms 200 application/json; charset=utf-8 +2017-07-11 15:37:04.143 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:37:04.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-11 15:37:04.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-11 15:37:04.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-11 15:37:07.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:08.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:08.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:08.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:08.033 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3404.8118ms +2017-07-11 15:37:08.035 +05:30 [Information] Request finished in 3412.1089ms 200 application/json; charset=utf-8 +2017-07-11 15:37:08.036 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:37:08.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 15:37:08.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 15:37:08.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 15:37:11.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:11.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:11.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:11.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:11.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3171.0644ms +2017-07-11 15:37:11.310 +05:30 [Information] Request finished in 3178.0519ms 200 application/json; charset=utf-8 +2017-07-11 15:37:11.311 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:37:21.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-11 15:37:21.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-11 15:37:21.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-11 15:37:21.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-11 15:37:21.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-11 15:37:21.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-11 15:37:22.995 +05:30 [Debug] Connection id ""0HL688I382BUO"" started. +2017-07-11 15:37:22.995 +05:30 [Debug] Connection id ""0HL688I382BUN"" started. +2017-07-11 15:37:22.998 +05:30 [Debug] Connection id ""0HL688I382BUP"" started. +2017-07-11 15:37:22.999 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-11 15:37:23.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 15:37:23.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-11 15:37:23.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-11 15:37:23.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 15:37:23.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-11 15:37:23.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 15:37:23.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-11 15:37:23.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-11 15:37:23.832 +05:30 [Debug] Connection id ""0HL688I382BUQ"" started. +2017-07-11 15:37:24.122 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 15:37:24.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 15:37:24.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 15:37:24.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:25.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:25.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:25.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:25.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:37:25.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:25.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:25.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:37:25.476 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:25.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:25.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:25.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3900.7395ms +2017-07-11 15:37:25.484 +05:30 [Information] Request finished in 3934.4982ms 200 application/json; charset=utf-8 +2017-07-11 15:37:25.486 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:37:25.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3910.8586ms +2017-07-11 15:37:25.499 +05:30 [Information] Request finished in 3950.1916ms 200 application/json; charset=utf-8 +2017-07-11 15:37:25.500 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:37:25.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:25.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 15:37:25.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:25.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:37:25.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:25.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:25.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2975.6462ms +2017-07-11 15:37:25.987 +05:30 [Information] Request finished in 2987.0429ms 200 application/json; charset=utf-8 +2017-07-11 15:37:25.988 +05:30 [Debug] Connection id ""0HL688I382BUP"" completed keep alive response. +2017-07-11 15:37:26.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:26.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:37:26.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:26.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:26.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3351.4411ms +2017-07-11 15:37:26.364 +05:30 [Information] Request finished in 3364.7441ms 200 application/json; charset=utf-8 +2017-07-11 15:37:26.365 +05:30 [Debug] Connection id ""0HL688I382BUO"" completed keep alive response. +2017-07-11 15:37:26.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:26.829 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 15:37:26.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:26.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:26.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3824.964ms +2017-07-11 15:37:26.854 +05:30 [Information] Request finished in 3854.5354ms 200 application/json; charset=utf-8 +2017-07-11 15:37:26.856 +05:30 [Debug] Connection id ""0HL688I382BUN"" completed keep alive response. +2017-07-11 15:37:27.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 15:37:27.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:27.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:27.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:27.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3153.1714ms +2017-07-11 15:37:27.288 +05:30 [Information] Request finished in 3166.6254ms 200 application/json; charset=utf-8 +2017-07-11 15:37:27.290 +05:30 [Debug] Connection id ""0HL688I382BUQ"" completed keep alive response. +2017-07-11 15:37:27.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 15:37:27.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 15:37:27.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 15:37:30.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 15:37:30.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:30.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:30.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:30.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3092.7361ms +2017-07-11 15:37:30.394 +05:30 [Information] Request finished in 3097.8743ms 200 application/json; charset=utf-8 +2017-07-11 15:37:30.394 +05:30 [Debug] Connection id ""0HL688I382BUM"" completed keep alive response. +2017-07-11 15:37:30.406 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-11 15:37:30.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-11 15:37:30.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-11 15:37:33.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-11 15:37:33.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 15:37:33.593 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 15:37:33.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 15:37:33.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3185.4589ms +2017-07-11 15:37:33.607 +05:30 [Information] Request finished in 3200.6196ms 200 application/json; charset=utf-8 +2017-07-11 15:37:33.607 +05:30 [Debug] Connection id ""0HL688I382BUL"" completed keep alive response. +2017-07-11 15:38:40.598 +05:30 [Debug] Connection id ""0HL688I382BUN"" received FIN. +2017-07-11 15:38:40.598 +05:30 [Debug] Connection id ""0HL688I382BUP"" received FIN. +2017-07-11 15:38:40.599 +05:30 [Debug] Connection id ""0HL688I382BUQ"" received FIN. +2017-07-11 15:38:40.600 +05:30 [Debug] Connection id ""0HL688I382BUP"" disconnecting. +2017-07-11 15:38:40.600 +05:30 [Debug] Connection id ""0HL688I382BUO"" received FIN. +2017-07-11 15:38:40.600 +05:30 [Debug] Connection id ""0HL688I382BUN"" disconnecting. +2017-07-11 15:38:40.601 +05:30 [Debug] Connection id ""0HL688I382BUL"" received FIN. +2017-07-11 15:38:40.614 +05:30 [Debug] Connection id ""0HL688I382BUL"" disconnecting. +2017-07-11 15:38:40.614 +05:30 [Debug] Connection id ""0HL688I382BUN"" sending FIN. +2017-07-11 15:38:40.612 +05:30 [Debug] Connection id ""0HL688I382BUM"" received FIN. +2017-07-11 15:38:40.609 +05:30 [Debug] Connection id ""0HL688I382BUQ"" disconnecting. +2017-07-11 15:38:40.619 +05:30 [Debug] Connection id ""0HL688I382BUL"" sending FIN. +2017-07-11 15:38:40.612 +05:30 [Debug] Connection id ""0HL688I382BUO"" disconnecting. +2017-07-11 15:38:40.622 +05:30 [Debug] Connection id ""0HL688I382BUQ"" sending FIN. +2017-07-11 15:38:40.618 +05:30 [Debug] Connection id ""0HL688I382BUP"" sending FIN. +2017-07-11 15:38:40.618 +05:30 [Debug] Connection id ""0HL688I382BUM"" disconnecting. +2017-07-11 15:38:40.625 +05:30 [Debug] Connection id ""0HL688I382BUO"" sending FIN. +2017-07-11 15:38:40.627 +05:30 [Debug] Connection id ""0HL688I382BUM"" sending FIN. +2017-07-11 15:38:40.629 +05:30 [Debug] Connection id ""0HL688I382BUM"" sent FIN with status "0". +2017-07-11 15:38:40.629 +05:30 [Debug] Connection id ""0HL688I382BUQ"" sent FIN with status "0". +2017-07-11 15:38:40.631 +05:30 [Debug] Connection id ""0HL688I382BUM"" stopped. +2017-07-11 15:38:40.632 +05:30 [Debug] Connection id ""0HL688I382BUQ"" stopped. +2017-07-11 15:38:40.632 +05:30 [Debug] Connection id ""0HL688I382BUL"" sent FIN with status "0". +2017-07-11 15:38:40.632 +05:30 [Debug] Connection id ""0HL688I382BUO"" sent FIN with status "0". +2017-07-11 15:38:40.633 +05:30 [Debug] Connection id ""0HL688I382BUL"" stopped. +2017-07-11 15:38:40.633 +05:30 [Debug] Connection id ""0HL688I382BUO"" stopped. +2017-07-11 15:38:40.634 +05:30 [Debug] Connection id ""0HL688I382BUN"" sent FIN with status "0". +2017-07-11 15:38:40.634 +05:30 [Debug] Connection id ""0HL688I382BUP"" sent FIN with status "0". +2017-07-11 15:38:40.634 +05:30 [Debug] Connection id ""0HL688I382BUN"" stopped. +2017-07-11 15:38:40.635 +05:30 [Debug] Connection id ""0HL688I382BUP"" stopped. +2017-07-11 18:51:03.295 +05:30 [Debug] Hosting starting +2017-07-11 18:51:04.516 +05:30 [Debug] Hosting started +2017-07-11 18:51:04.721 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" started. +2017-07-11 18:51:04.721 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" started. +2017-07-11 18:51:04.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-11 18:51:04.984 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-11 18:51:05.061 +05:30 [Information] Request finished in 179.9668ms 200 +2017-07-11 18:51:05.148 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:51:07.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-11 18:51:07.230 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2ca83a16-b9f5-43bc-b1aa-0f3d4858ea24"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-11 18:51:07.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-11 18:51:07.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-11 18:51:07.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-11 18:51:07.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:51:07.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:07.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:10.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 2372.507ms +2017-07-11 18:51:10.126 +05:30 [Information] Request finished in 5268.3338ms 200 application/json; charset=utf-8 +2017-07-11 18:51:10.130 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:51:10.443 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 18:51:10.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 18:51:10.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 18:51:14.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 18:51:34.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:34.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:34.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:35.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 24675.0248ms +2017-07-11 18:51:35.132 +05:30 [Information] Request finished in 24686.5513ms 200 application/json; charset=utf-8 +2017-07-11 18:51:35.133 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:51:35.916 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 18:51:35.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 18:51:35.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 18:51:39.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 18:51:39.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:39.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:39.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:39.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3351.752ms +2017-07-11 18:51:39.277 +05:30 [Information] Request finished in 3360.7233ms 200 application/json; charset=utf-8 +2017-07-11 18:51:39.278 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:51:39.777 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 18:51:39.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 18:51:39.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 18:51:42.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 18:51:42.861 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:42.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:42.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:42.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3083.3787ms +2017-07-11 18:51:42.877 +05:30 [Information] Request finished in 3113.264ms 200 application/json; charset=utf-8 +2017-07-11 18:51:42.878 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:51:42.892 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 18:51:42.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 18:51:42.895 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 18:51:45.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 18:51:45.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:45.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:45.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:45.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.1088ms +2017-07-11 18:51:45.950 +05:30 [Information] Request finished in 3064.7875ms 200 application/json; charset=utf-8 +2017-07-11 18:51:45.951 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:51:45.991 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-11 18:51:45.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-11 18:51:46.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-11 18:51:49.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 18:51:49.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:49.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:49.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:49.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3055.0061ms +2017-07-11 18:51:49.118 +05:30 [Information] Request finished in 3127.9175ms 200 application/json; charset=utf-8 +2017-07-11 18:51:49.120 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:51:49.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-11 18:51:49.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-11 18:51:49.640 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-11 18:51:52.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:51:52.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:52.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:52.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:52.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3251.8131ms +2017-07-11 18:51:52.896 +05:30 [Information] Request finished in 3259.1327ms 200 application/json; charset=utf-8 +2017-07-11 18:51:52.896 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:51:52.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 18:51:52.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 18:51:52.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 18:51:56.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:51:56.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:51:56.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:51:56.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:51:56.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3121.0272ms +2017-07-11 18:51:56.099 +05:30 [Information] Request finished in 3125.6149ms 200 application/json; charset=utf-8 +2017-07-11 18:51:56.099 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:52:06.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-11 18:52:06.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-11 18:52:06.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-11 18:52:06.478 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-11 18:52:06.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-11 18:52:06.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-11 18:52:07.718 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" started. +2017-07-11 18:52:07.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-11 18:52:07.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-11 18:52:07.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-11 18:52:07.745 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" started. +2017-07-11 18:52:07.746 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" started. +2017-07-11 18:52:07.747 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 18:52:07.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 18:52:07.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 18:52:08.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-11 18:52:08.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-11 18:52:08.537 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-11 18:52:08.599 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" started. +2017-07-11 18:52:08.601 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 18:52:08.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 18:52:08.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 18:52:09.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:52:09.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:09.733 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:52:09.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:09.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:09.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3267.7299ms +2017-07-11 18:52:09.752 +05:30 [Information] Request finished in 3314.1462ms 200 application/json; charset=utf-8 +2017-07-11 18:52:09.752 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:52:10.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:52:10.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:10.706 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:52:10.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:10.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:10.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4283.5931ms +2017-07-11 18:52:10.713 +05:30 [Information] Request finished in 4313.3172ms 200 application/json; charset=utf-8 +2017-07-11 18:52:10.713 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:52:11.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:52:11.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:52:11.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:52:11.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 18:52:11.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:11.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:11.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:11.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:11.930 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:52:11.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:11.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3344.7274ms +2017-07-11 18:52:11.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:12.008 +05:30 [Information] Request finished in 3398.6618ms 200 application/json; charset=utf-8 +2017-07-11 18:52:12.015 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" completed keep alive response. +2017-07-11 18:52:12.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4250.08ms +2017-07-11 18:52:12.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 18:52:12.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 18:52:12.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 18:52:12.071 +05:30 [Information] Request finished in 4299.5702ms 200 application/json; charset=utf-8 +2017-07-11 18:52:12.114 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" completed keep alive response. +2017-07-11 18:52:12.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:12.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:52:12.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:12.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:12.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4765.3252ms +2017-07-11 18:52:12.502 +05:30 [Information] Request finished in 4781.4089ms 200 application/json; charset=utf-8 +2017-07-11 18:52:12.502 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" completed keep alive response. +2017-07-11 18:52:14.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:14.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:52:14.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:14.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:14.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5613.1672ms +2017-07-11 18:52:14.160 +05:30 [Information] Request finished in 5645.0256ms 200 application/json; charset=utf-8 +2017-07-11 18:52:14.161 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" completed keep alive response. +2017-07-11 18:52:14.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 18:52:14.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:14.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:14.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:14.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2130.2677ms +2017-07-11 18:52:14.238 +05:30 [Information] Request finished in 2210.6023ms 200 application/json; charset=utf-8 +2017-07-11 18:52:14.239 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" completed keep alive response. +2017-07-11 18:52:14.251 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-11 18:52:14.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-11 18:52:14.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-11 18:52:17.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-11 18:52:17.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:52:17.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:52:17.422 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:52:17.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3169.12ms +2017-07-11 18:52:17.433 +05:30 [Information] Request finished in 3182.3561ms 200 application/json; charset=utf-8 +2017-07-11 18:52:17.434 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" completed keep alive response. +2017-07-11 18:53:09.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-11 18:53:09.743 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-11 18:53:09.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-11 18:53:09.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-11 18:53:09.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-11 18:53:09.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-11 18:53:12.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:53:12.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:53:17.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:53:17.111 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:53:17.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:53:17.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:53:17.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 7369.5042ms +2017-07-11 18:53:17.126 +05:30 [Information] Request finished in 7395.3578ms 200 application/json; charset=utf-8 +2017-07-11 18:53:17.127 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" completed keep alive response. +2017-07-11 18:53:20.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:53:20.437 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:53:20.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:53:20.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:53:20.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 10695.2879ms +2017-07-11 18:53:20.455 +05:30 [Information] Request finished in 10724.4408ms 200 application/json; charset=utf-8 +2017-07-11 18:53:20.455 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" completed keep alive response. +2017-07-11 18:53:20.534 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" received FIN. +2017-07-11 18:53:20.535 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" received FIN. +2017-07-11 18:53:20.535 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" received FIN. +2017-07-11 18:53:20.536 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" received FIN. +2017-07-11 18:53:20.536 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" disconnecting. +2017-07-11 18:53:20.537 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" disconnecting. +2017-07-11 18:53:20.538 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" sending FIN. +2017-07-11 18:53:20.538 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" sending FIN. +2017-07-11 18:53:20.538 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" disconnecting. +2017-07-11 18:53:20.536 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" disconnecting. +2017-07-11 18:53:20.540 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" sending FIN. +2017-07-11 18:53:20.540 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" sending FIN. +2017-07-11 18:53:20.544 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" sent FIN with status "0". +2017-07-11 18:53:20.545 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" sent FIN with status "0". +2017-07-11 18:53:20.558 +05:30 [Debug] Connection id ""0HL68BUNDKF12"" stopped. +2017-07-11 18:53:20.554 +05:30 [Debug] Connection id ""0HL68BUNDKF14"" stopped. +2017-07-11 18:53:20.563 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" sent FIN with status "0". +2017-07-11 18:53:20.564 +05:30 [Debug] Connection id ""0HL68BUNDKF13"" stopped. +2017-07-11 18:53:20.564 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" sent FIN with status "0". +2017-07-11 18:53:20.565 +05:30 [Debug] Connection id ""0HL68BUNDKF16"" stopped. +2017-07-11 18:53:20.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-11 18:53:20.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-11 18:53:20.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-11 18:53:20.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-11 18:53:20.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-11 18:53:20.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-11 18:53:23.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:53:23.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 18:53:23.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:53:23.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:53:23.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:53:23.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:53:23.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3297.455ms +2017-07-11 18:53:23.950 +05:30 [Information] Request finished in 3388.2679ms 200 application/json; charset=utf-8 +2017-07-11 18:53:23.951 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" completed keep alive response. +2017-07-11 18:53:36.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 18:53:36.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 18:53:36.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 18:53:36.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 18:53:36.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 16279.3194ms +2017-07-11 18:53:36.947 +05:30 [Information] Request finished in 16390.0653ms 200 application/json; charset=utf-8 +2017-07-11 18:53:36.948 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" completed keep alive response. +2017-07-11 18:55:04.700 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" received FIN. +2017-07-11 18:55:04.701 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" received FIN. +2017-07-11 18:55:04.701 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" disconnecting. +2017-07-11 18:55:04.701 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" disconnecting. +2017-07-11 18:55:04.703 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" sending FIN. +2017-07-11 18:55:04.705 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" sending FIN. +2017-07-11 18:55:04.706 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" sent FIN with status "0". +2017-07-11 18:55:04.706 +05:30 [Debug] Connection id ""0HL68BUNDKF15"" stopped. +2017-07-11 18:55:04.707 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" sent FIN with status "0". +2017-07-11 18:55:04.708 +05:30 [Debug] Connection id ""0HL68BUNDKF17"" stopped. +2017-07-11 19:17:44.816 +05:30 [Debug] Hosting starting +2017-07-11 19:17:44.981 +05:30 [Debug] Hosting started +2017-07-11 19:17:45.024 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" started. +2017-07-11 19:17:45.024 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" started. +2017-07-11 19:17:45.170 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-11 19:17:45.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-11 19:17:45.222 +05:30 [Information] Request finished in 77.4758ms 200 +2017-07-11 19:17:45.288 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:17:45.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-11 19:17:45.921 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1cdf7110-ae27-44aa-b48d-cd205787cb81"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-11 19:17:46.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-11 19:17:46.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-11 19:17:46.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-11 19:17:46.378 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:17:46.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:17:46.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:17:46.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 531.5179ms +2017-07-11 19:17:46.797 +05:30 [Information] Request finished in 1662.2809ms 200 application/json; charset=utf-8 +2017-07-11 19:17:46.799 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:17:47.129 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 19:17:47.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 19:17:47.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 19:17:50.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 19:17:55.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:17:55.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:17:55.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:17:55.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8192.6166ms +2017-07-11 19:17:55.331 +05:30 [Information] Request finished in 8212.7155ms 200 application/json; charset=utf-8 +2017-07-11 19:17:55.332 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:17:55.844 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 19:17:55.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 19:17:55.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 19:17:58.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 19:17:59.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:17:59.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:17:59.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:17:59.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3222.8575ms +2017-07-11 19:17:59.074 +05:30 [Information] Request finished in 3232.2297ms 200 application/json; charset=utf-8 +2017-07-11 19:17:59.075 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:17:59.835 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 19:17:59.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 19:17:59.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 19:18:02.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 19:18:02.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:02.933 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:02.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:02.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3089.5532ms +2017-07-11 19:18:02.940 +05:30 [Information] Request finished in 3116.9425ms 200 application/json; charset=utf-8 +2017-07-11 19:18:02.941 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:18:02.987 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 19:18:02.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 19:18:02.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 19:18:06.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 19:18:06.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:06.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:06.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:06.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3084.0399ms +2017-07-11 19:18:06.081 +05:30 [Information] Request finished in 3096.5136ms 200 application/json; charset=utf-8 +2017-07-11 19:18:06.082 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:18:06.174 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-11 19:18:06.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-11 19:18:06.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-11 19:18:09.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 19:18:09.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:09.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:09.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:09.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3122.4353ms +2017-07-11 19:18:09.304 +05:30 [Information] Request finished in 3131.3894ms 200 application/json; charset=utf-8 +2017-07-11 19:18:09.305 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:18:09.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-11 19:18:09.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-11 19:18:09.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-11 19:18:12.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:12.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:12.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:12.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:12.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3276.0984ms +2017-07-11 19:18:12.768 +05:30 [Information] Request finished in 3294.1572ms 200 application/json; charset=utf-8 +2017-07-11 19:18:12.768 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:18:12.874 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 19:18:12.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 19:18:12.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 19:18:15.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:16.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:16.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:16.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:16.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3142.5265ms +2017-07-11 19:18:16.024 +05:30 [Information] Request finished in 3148.7963ms 200 application/json; charset=utf-8 +2017-07-11 19:18:16.024 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:18:27.319 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-11 19:18:27.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-11 19:18:27.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-11 19:18:27.342 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-11 19:18:27.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-11 19:18:27.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-11 19:18:28.914 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" started. +2017-07-11 19:18:28.914 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" started. +2017-07-11 19:18:28.919 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" started. +2017-07-11 19:18:28.930 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-11 19:18:28.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-11 19:18:28.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-11 19:18:28.952 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 19:18:28.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 19:18:28.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 19:18:28.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-11 19:18:28.959 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-11 19:18:28.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-11 19:18:29.769 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" started. +2017-07-11 19:18:30.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-11 19:18:30.245 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:30.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-11 19:18:30.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-11 19:18:30.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:30.377 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:30.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:30.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:30.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3025.8892ms +2017-07-11 19:18:30.390 +05:30 [Information] Request finished in 3075.6867ms 200 application/json; charset=utf-8 +2017-07-11 19:18:30.392 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:18:30.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:31.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:31.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:32.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:32.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:32.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:32.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:32.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:32.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4903.4572ms +2017-07-11 19:18:32.286 +05:30 [Information] Request finished in 4967.6853ms 200 application/json; charset=utf-8 +2017-07-11 19:18:32.287 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:18:32.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:32.394 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:32.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:32.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:32.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3685.4084ms +2017-07-11 19:18:32.657 +05:30 [Information] Request finished in 3733.8445ms 200 application/json; charset=utf-8 +2017-07-11 19:18:32.662 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" completed keep alive response. +2017-07-11 19:18:32.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:32.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:32.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:32.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:32.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3955.3924ms +2017-07-11 19:18:32.940 +05:30 [Information] Request finished in 4006.4518ms 200 application/json; charset=utf-8 +2017-07-11 19:18:32.941 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" completed keep alive response. +2017-07-11 19:18:33.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-11 19:18:33.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:33.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:33.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:33.819 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.528ms +2017-07-11 19:18:33.822 +05:30 [Information] Request finished in 3591.5917ms 200 application/json; charset=utf-8 +2017-07-11 19:18:33.823 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" completed keep alive response. +2017-07-11 19:18:33.826 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-11 19:18:33.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-11 19:18:33.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-11 19:18:33.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:33.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:33.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:33.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:33.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5051.807ms +2017-07-11 19:18:33.989 +05:30 [Information] Request finished in 5070.42ms 200 application/json; charset=utf-8 +2017-07-11 19:18:33.990 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" completed keep alive response. +2017-07-11 19:18:34.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-11 19:18:34.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-11 19:18:34.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-11 19:18:34.754 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-11 19:18:34.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-11 19:18:34.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-11 19:18:35.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 19:18:35.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:35.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:35.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:35.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2159.4154ms +2017-07-11 19:18:35.992 +05:30 [Information] Request finished in 2165.7666ms 200 application/json; charset=utf-8 +2017-07-11 19:18:35.993 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:18:36.020 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-11 19:18:36.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-11 19:18:36.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-11 19:18:37.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:37.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:39.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-11 19:18:39.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:39.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:39.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:39.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3602.4925ms +2017-07-11 19:18:39.630 +05:30 [Information] Request finished in 3610.0111ms 200 application/json; charset=utf-8 +2017-07-11 19:18:39.630 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" completed keep alive response. +2017-07-11 19:18:42.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:42.314 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:42.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:42.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:42.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 7568.0904ms +2017-07-11 19:18:42.330 +05:30 [Information] Request finished in 7587.2481ms 200 application/json; charset=utf-8 +2017-07-11 19:18:42.331 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" completed keep alive response. +2017-07-11 19:18:42.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-11 19:18:42.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-11 19:18:42.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-11 19:18:42.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-11 19:18:42.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-11 19:18:42.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-11 19:18:43.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:43.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:43.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:43.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:43.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 8282.4208ms +2017-07-11 19:18:43.038 +05:30 [Information] Request finished in 8299.8734ms 200 application/json; charset=utf-8 +2017-07-11 19:18:43.038 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" completed keep alive response. +2017-07-11 19:18:45.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:45.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:18:45.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:45.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:45.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:45.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:45.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3341.9993ms +2017-07-11 19:18:45.878 +05:30 [Information] Request finished in 3377.1221ms 200 application/json; charset=utf-8 +2017-07-11 19:18:45.879 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" completed keep alive response. +2017-07-11 19:18:51.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:18:51.210 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:18:51.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:18:51.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:18:51.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 8702.2499ms +2017-07-11 19:18:51.244 +05:30 [Information] Request finished in 8718.7858ms 200 application/json; charset=utf-8 +2017-07-11 19:18:51.245 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" completed keep alive response. +2017-07-11 19:19:30.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-11 19:19:30.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-11 19:19:30.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-11 19:19:33.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-11 19:19:34.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:34.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:34.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:34.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3190.9944ms +2017-07-11 19:19:34.100 +05:30 [Information] Request finished in 3201.3787ms 200 application/json; charset=utf-8 +2017-07-11 19:19:34.101 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:19:34.151 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-11 19:19:34.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-11 19:19:34.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-11 19:19:37.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:37.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:37.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:37.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:37.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3101.814ms +2017-07-11 19:19:37.258 +05:30 [Information] Request finished in 3106.8585ms 200 application/json; charset=utf-8 +2017-07-11 19:19:37.258 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" completed keep alive response. +2017-07-11 19:19:37.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 19:19:37.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 19:19:37.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 19:19:40.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:40.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:40.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:40.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:40.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.8787ms +2017-07-11 19:19:40.381 +05:30 [Information] Request finished in 3117.0971ms 200 application/json; charset=utf-8 +2017-07-11 19:19:40.382 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" completed keep alive response. +2017-07-11 19:19:43.774 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" received FIN. +2017-07-11 19:19:43.777 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" disconnecting. +2017-07-11 19:19:43.781 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" sending FIN. +2017-07-11 19:19:43.787 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" sent FIN with status "0". +2017-07-11 19:19:43.790 +05:30 [Debug] Connection id ""0HL68CDKB9DTA"" stopped. +2017-07-11 19:19:43.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-11 19:19:43.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-11 19:19:43.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-11 19:19:43.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-11 19:19:43.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-11 19:19:43.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-11 19:19:44.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-11 19:19:44.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-11 19:19:44.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-11 19:19:44.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-11 19:19:44.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-11 19:19:44.264 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-11 19:19:45.060 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" started. +2017-07-11 19:19:45.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-11 19:19:45.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-11 19:19:45.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-11 19:19:46.845 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-11 19:19:46.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-11 19:19:46.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-11 19:19:48.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:48.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:48.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:48.962 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:19:48.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:48.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:48.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5130.7762ms +2017-07-11 19:19:48.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:48.969 +05:30 [Information] Request finished in 5174.8773ms 200 application/json; charset=utf-8 +2017-07-11 19:19:48.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:19:48.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:48.971 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" completed keep alive response. +2017-07-11 19:19:48.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:48.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5138.9752ms +2017-07-11 19:19:48.982 +05:30 [Information] Request finished in 5189.8588ms 200 application/json; charset=utf-8 +2017-07-11 19:19:48.982 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" completed keep alive response. +2017-07-11 19:19:49.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:49.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:49.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:19:49.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-11 19:19:50.039 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:50.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:19:50.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:50.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:50.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:50.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:50.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5863.5114ms +2017-07-11 19:19:50.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:50.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3318.6924ms +2017-07-11 19:19:50.217 +05:30 [Information] Request finished in 5922.9651ms 200 application/json; charset=utf-8 +2017-07-11 19:19:50.218 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:19:50.221 +05:30 [Information] Request finished in 3403.7375ms 200 application/json; charset=utf-8 +2017-07-11 19:19:50.221 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" completed keep alive response. +2017-07-11 19:19:50.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:50.259 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:19:50.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:50.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:50.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5996.9756ms +2017-07-11 19:19:50.266 +05:30 [Information] Request finished in 6019.2685ms 200 application/json; charset=utf-8 +2017-07-11 19:19:50.267 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" completed keep alive response. +2017-07-11 19:19:50.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:19:50.729 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:19:50.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:19:50.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:19:50.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4950.4296ms +2017-07-11 19:19:50.745 +05:30 [Information] Request finished in 4958.4617ms 200 application/json; charset=utf-8 +2017-07-11 19:19:50.746 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" completed keep alive response. +2017-07-11 19:19:58.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterProfilesData?groupId=1 +2017-07-11 19:19:58.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterProfilesData"'. +2017-07-11 19:19:58.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" +2017-07-11 19:19:58.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GettwtfollowfollowingGraph?groupId=1 +2017-07-11 19:19:58.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GettwtfollowfollowingGraph"'. +2017-07-11 19:19:58.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" +2017-07-11 19:20:01.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:20:01.807 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:20:02.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:20:02.036 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:20:02.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:20:02.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:20:02.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GettwtfollowfollowingGraph (Api.Socioboard)" in 3385.6929ms +2017-07-11 19:20:02.047 +05:30 [Information] Request finished in 3424.5346ms 200 application/json; charset=utf-8 +2017-07-11 19:20:02.048 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" completed keep alive response. +2017-07-11 19:20:02.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:20:02.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:20:02.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:20:02.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:20:02.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterProfilesData (Api.Socioboard)" in 3451.763ms +2017-07-11 19:20:02.106 +05:30 [Information] Request finished in 3483.0967ms 200 application/json; charset=utf-8 +2017-07-11 19:20:02.107 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" completed keep alive response. +2017-07-11 19:20:02.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/GetAllTwitterProfiles?groupId=1 +2017-07-11 19:20:02.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/GetAllTwitterProfiles"'. +2017-07-11 19:20:02.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" +2017-07-11 19:20:02.204 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/TwitterReports/GetTwitterFeedsdata?groupId=1 +2017-07-11 19:20:02.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/TwitterReports/GetTwitterFeedsdata"'. +2017-07-11 19:20:02.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" +2017-07-11 19:20:05.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:20:05.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-11 19:20:05.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:20:05.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:20:05.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:20:05.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:20:05.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.GetAllTwitterProfiles (Api.Socioboard)" in 3327.9822ms +2017-07-11 19:20:05.524 +05:30 [Information] Request finished in 3354.9981ms 200 application/json; charset=utf-8 +2017-07-11 19:20:05.525 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" completed keep alive response. +2017-07-11 19:20:08.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-11 19:20:08.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-11 19:20:08.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-11 19:20:08.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-11 19:20:08.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterReportsController.GetTwitterFeedsdata (Api.Socioboard)" in 6461.4719ms +2017-07-11 19:20:08.677 +05:30 [Information] Request finished in 6506.9135ms 200 application/json; charset=utf-8 +2017-07-11 19:20:08.678 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" completed keep alive response. +2017-07-11 19:21:44.998 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" received FIN. +2017-07-11 19:21:44.998 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" received FIN. +2017-07-11 19:21:45.001 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" received FIN. +2017-07-11 19:21:45.001 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" received FIN. +2017-07-11 19:21:45.001 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" disconnecting. +2017-07-11 19:21:45.002 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" disconnecting. +2017-07-11 19:21:44.999 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" disconnecting. +2017-07-11 19:21:45.001 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" disconnecting. +2017-07-11 19:21:44.999 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" received FIN. +2017-07-11 19:21:45.004 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" disconnecting. +2017-07-11 19:21:45.004 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" sending FIN. +2017-07-11 19:21:45.004 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" sending FIN. +2017-07-11 19:21:45.001 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" received FIN. +2017-07-11 19:21:45.005 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" sending FIN. +2017-07-11 19:21:45.007 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" sending FIN. +2017-07-11 19:21:45.006 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" disconnecting. +2017-07-11 19:21:45.005 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" sent FIN with status "0". +2017-07-11 19:21:45.008 +05:30 [Debug] Connection id ""0HL68CDKB9DTF"" stopped. +2017-07-11 19:21:45.008 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" sent FIN with status "0". +2017-07-11 19:21:45.007 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" sending FIN. +2017-07-11 19:21:45.010 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" sending FIN. +2017-07-11 19:21:45.009 +05:30 [Debug] Connection id ""0HL68CDKB9DTC"" stopped. +2017-07-11 19:21:45.010 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" sent FIN with status "0". +2017-07-11 19:21:45.012 +05:30 [Debug] Connection id ""0HL68CDKB9DTG"" stopped. +2017-07-11 19:21:45.012 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" sent FIN with status "0". +2017-07-11 19:21:45.013 +05:30 [Debug] Connection id ""0HL68CDKB9DTD"" stopped. +2017-07-11 19:21:45.014 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" sent FIN with status "0". +2017-07-11 19:21:45.014 +05:30 [Debug] Connection id ""0HL68CDKB9DTB"" stopped. +2017-07-11 19:21:45.015 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" sent FIN with status "0". +2017-07-11 19:21:45.016 +05:30 [Debug] Connection id ""0HL68CDKB9DTE"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170712.txt b/src/Api.Socioboard/wwwroot/log/log-20170712.txt new file mode 100644 index 000000000..476b5eb42 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170712.txt @@ -0,0 +1,340 @@ +2017-07-12 13:17:29.551 +05:30 [Debug] Hosting starting +2017-07-12 13:17:30.947 +05:30 [Debug] Hosting started +2017-07-12 13:17:31.186 +05:30 [Debug] Connection id ""0HL68V9049628"" started. +2017-07-12 13:17:31.189 +05:30 [Debug] Connection id ""0HL68V9049629"" started. +2017-07-12 13:17:31.311 +05:30 [Debug] Connection id ""0HL68V904962A"" started. +2017-07-12 13:17:31.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-12 13:17:31.537 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-12 13:17:31.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/index.html +2017-07-12 13:17:31.643 +05:30 [Information] Request finished in 157.7663ms 200 +2017-07-12 13:17:31.704 +05:30 [Debug] Connection id ""0HL68V9049629"" completed keep alive response. +2017-07-12 13:17:32.837 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:32.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-12 13:17:32.911 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"55871142-57de-4a97-b149-a5017b1ad855"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-12 13:17:33.070 +05:30 [Debug] Connection id ""0HL68V904962B"" started. +2017-07-12 13:17:33.070 +05:30 [Debug] Connection id ""0HL68V904962C"" started. +2017-07-12 13:17:33.075 +05:30 [Debug] Connection id ""0HL68V904962D"" started. +2017-07-12 13:17:33.110 +05:30 [Debug] Connection id ""0HL68V904962E"" started. +2017-07-12 13:17:33.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery-1.8.0.min.js +2017-07-12 13:17:33.121 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.332 +05:30 [Information] Sending file. Request path: '"/lib/jquery-1.8.0.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.351 +05:30 [Information] Request finished in 1866.7734ms 200 text/html +2017-07-12 13:17:33.352 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/reset.css +2017-07-12 13:17:33.352 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.355 +05:30 [Debug] Connection id ""0HL68V904962A"" completed keep alive response. +2017-07-12 13:17:33.363 +05:30 [Information] Sending file. Request path: '"/css/reset.css"'. Physical path: '"N/A"' +2017-07-12 13:17:33.368 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/typography.css +2017-07-12 13:17:33.369 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.397 +05:30 [Information] Sending file. Request path: '"/css/typography.css"'. Physical path: '"N/A"' +2017-07-12 13:17:33.435 +05:30 [Information] Request finished in 101.9047ms 200 text/css +2017-07-12 13:17:33.442 +05:30 [Debug] Connection id ""0HL68V904962B"" completed keep alive response. +2017-07-12 13:17:33.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-12 13:17:33.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.ba-bbq.min.js +2017-07-12 13:17:33.454 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.462 +05:30 [Information] Sending file. Request path: '"/lib/jquery.ba-bbq.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.475 +05:30 [Information] Request finished in 70.0062ms 200 text/css +2017-07-12 13:17:33.476 +05:30 [Debug] Connection id ""0HL68V904962C"" completed keep alive response. +2017-07-12 13:17:33.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/screen.css +2017-07-12 13:17:33.481 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.486 +05:30 [Information] Request finished in 32.1329ms 200 application/javascript +2017-07-12 13:17:33.486 +05:30 [Debug] Connection id ""0HL68V904962B"" completed keep alive response. +2017-07-12 13:17:33.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/handlebars-2.0.0.js +2017-07-12 13:17:33.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/underscore-min.js +2017-07-12 13:17:33.499 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.499 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.505 +05:30 [Information] Sending file. Request path: '"/css/screen.css"'. Physical path: '"N/A"' +2017-07-12 13:17:33.522 +05:30 [Information] Sending file. Request path: '"/lib/underscore-min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.539 +05:30 [Information] Request finished in 57.0591ms 200 text/css +2017-07-12 13:17:33.539 +05:30 [Debug] Connection id ""0HL68V904962D"" completed keep alive response. +2017-07-12 13:17:33.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/backbone-min.js +2017-07-12 13:17:33.546 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.552 +05:30 [Information] Sending file. Request path: '"/lib/handlebars-2.0.0.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.552 +05:30 [Information] Request finished in 57.0769ms 200 application/javascript +2017-07-12 13:17:33.559 +05:30 [Debug] Connection id ""0HL68V904962B"" completed keep alive response. +2017-07-12 13:17:33.586 +05:30 [Information] Sending file. Request path: '"/lib/backbone-min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/swagger-ui.min.js +2017-07-12 13:17:33.632 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.640 +05:30 [Information] Request finished in 106.0199ms 200 application/javascript +2017-07-12 13:17:33.641 +05:30 [Debug] Connection id ""0HL68V904962C"" completed keep alive response. +2017-07-12 13:17:33.717 +05:30 [Information] Request finished in 84.4352ms 200 application/javascript +2017-07-12 13:17:33.718 +05:30 [Debug] Connection id ""0HL68V904962D"" completed keep alive response. +2017-07-12 13:17:33.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/highlight.7.3.pack.js +2017-07-12 13:17:33.765 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jsoneditor.min.js +2017-07-12 13:17:33.769 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.793 +05:30 [Information] Sending file. Request path: '"/lib/highlight.7.3.pack.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.830 +05:30 [Information] Sending file. Request path: '"/swagger-ui.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.830 +05:30 [Information] Sending file. Request path: '"/lib/jsoneditor.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:33.867 +05:30 [Information] Request finished in 182.5717ms 200 application/javascript +2017-07-12 13:17:33.868 +05:30 [Debug] Connection id ""0HL68V904962C"" completed keep alive response. +2017-07-12 13:17:33.877 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.wiggle.min.js +2017-07-12 13:17:33.878 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:33.958 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.slideto.min.js +2017-07-12 13:17:33.959 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/marked.js +2017-07-12 13:17:34.168 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.155 +05:30 [Information] Sending file. Request path: '"/lib/jquery.wiggle.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:34.195 +05:30 [Information] Request finished in 1071.937ms 200 application/javascript +2017-07-12 13:17:34.196 +05:30 [Debug] Connection id ""0HL68V9049629"" completed keep alive response. +2017-07-12 13:17:34.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-12 13:17:34.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/swagger-oauth.js +2017-07-12 13:17:34.216 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-12 13:17:34.239 +05:30 [Information] Sending file. Request path: '"/lib/jquery.slideto.min.js"'. Physical path: '"N/A"' +2017-07-12 13:17:34.247 +05:30 [Information] Request finished in 331.0363ms 200 application/javascript +2017-07-12 13:17:34.248 +05:30 [Debug] Connection id ""0HL68V904962A"" completed keep alive response. +2017-07-12 13:17:34.262 +05:30 [Information] Sending file. Request path: '"/lib/swagger-oauth.js"'. Physical path: '"N/A"' +2017-07-12 13:17:34.312 +05:30 [Information] Sending file. Request path: '"/lib/marked.js"'. Physical path: '"N/A"' +2017-07-12 13:17:34.358 +05:30 [Information] Request finished in 117.2309ms 200 application/javascript +2017-07-12 13:17:34.380 +05:30 [Debug] Connection id ""0HL68V9049629"" completed keep alive response. +2017-07-12 13:17:34.401 +05:30 [Information] Request finished in 423.1527ms 200 application/javascript +2017-07-12 13:17:34.401 +05:30 [Debug] Connection id ""0HL68V904962E"" completed keep alive response. +2017-07-12 13:17:34.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/print.css +2017-07-12 13:17:34.441 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-12 13:17:34.452 +05:30 [Information] Request finished in 511.1528ms 200 application/javascript +2017-07-12 13:17:34.452 +05:30 [Debug] Connection id ""0HL68V904962C"" completed keep alive response. +2017-07-12 13:17:34.565 +05:30 [Information] Request finished in 662.6262ms 200 application/javascript +2017-07-12 13:17:34.565 +05:30 [Debug] Connection id ""0HL68V904962D"" completed keep alive response. +2017-07-12 13:17:34.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-12 13:17:34.624 +05:30 [Information] Request finished in 987.7587ms 200 application/javascript +2017-07-12 13:17:34.648 +05:30 [Debug] Connection id ""0HL68V904962B"" completed keep alive response. +2017-07-12 13:17:34.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-12 13:17:34.741 +05:30 [Information] Sending file. Request path: '"/css/print.css"'. Physical path: '"N/A"' +2017-07-12 13:17:34.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/fonts/DroidSans-Bold.ttf +2017-07-12 13:17:34.775 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.757 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/images/logo_small.png +2017-07-12 13:17:34.778 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.895 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/fonts/DroidSans.ttf +2017-07-12 13:17:34.896 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:34.919 +05:30 [Information] Sending file. Request path: '"/images/logo_small.png"'. Physical path: '"N/A"' +2017-07-12 13:17:34.933 +05:30 [Information] Sending file. Request path: '"/fonts/DroidSans-Bold.ttf"'. Physical path: '"N/A"' +2017-07-12 13:17:34.994 +05:30 [Information] Sending file. Request path: '"/fonts/DroidSans.ttf"'. Physical path: '"N/A"' +2017-07-12 13:17:34.994 +05:30 [Information] Request finished in 194.1922ms 200 image/png +2017-07-12 13:17:35.000 +05:30 [Debug] Connection id ""0HL68V9049629"" completed keep alive response. +2017-07-12 13:17:35.060 +05:30 [Information] Request finished in 317.3685ms 200 application/x-font-ttf +2017-07-12 13:17:35.061 +05:30 [Debug] Connection id ""0HL68V904962E"" completed keep alive response. +2017-07-12 13:17:35.084 +05:30 [Information] Request finished in 515.4958ms 200 text/css +2017-07-12 13:17:35.092 +05:30 [Debug] Connection id ""0HL68V904962A"" completed keep alive response. +2017-07-12 13:17:35.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/images/favicon-32x32.png +2017-07-12 13:17:35.097 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:35.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/v1/swagger.json +2017-07-12 13:17:35.121 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:35.123 +05:30 [Information] Sending file. Request path: '"/images/favicon-32x32.png"'. Physical path: '"N/A"' +2017-07-12 13:17:35.130 +05:30 [Information] Request finished in 397.1538ms 200 application/x-font-ttf +2017-07-12 13:17:35.131 +05:30 [Debug] Connection id ""0HL68V904962D"" completed keep alive response. +2017-07-12 13:17:35.134 +05:30 [Information] Request finished in 63.066ms 200 image/png +2017-07-12 13:17:35.137 +05:30 [Debug] Connection id ""0HL68V904962B"" completed keep alive response. +2017-07-12 13:17:35.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/images/favicon-16x16.png +2017-07-12 13:17:35.140 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:17:35.142 +05:30 [Information] Sending file. Request path: '"/images/favicon-16x16.png"'. Physical path: '"N/A"' +2017-07-12 13:17:35.155 +05:30 [Information] Request finished in 21.7409ms 200 image/png +2017-07-12 13:17:35.157 +05:30 [Debug] Connection id ""0HL68V904962A"" completed keep alive response. +2017-07-12 13:17:35.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1920.5775ms +2017-07-12 13:17:35.395 +05:30 [Information] Request finished in 3943.2203ms 200 application/json; charset=utf-8 +2017-07-12 13:17:35.396 +05:30 [Debug] Connection id ""0HL68V9049628"" completed keep alive response. +2017-07-12 13:17:35.570 +05:30 [Error] An unhandled exception has occurred while executing the request +System.NotSupportedException: Unbounded HTTP verbs for path 'api/SocialMessages'. Are you missing an HttpMethodAttribute? + at Swashbuckle.SwaggerGen.Generator.SwaggerGenerator.CreatePathItem(IEnumerable`1 apiDescriptions, ISchemaRegistry schemaRegistry) + at Swashbuckle.SwaggerGen.Generator.SwaggerGenerator.<>c__DisplayClass4_0.b__4(IGrouping`2 group) + at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer) + at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector) + at Swashbuckle.SwaggerGen.Generator.SwaggerGenerator.GetSwagger(String apiVersion, String host, String basePath, String[] schemes) + at Swashbuckle.Swagger.Application.SwaggerMiddleware.d__6.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Cors.Infrastructure.CorsMiddleware.d__7.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Builder.RouterMiddleware.d__4.MoveNext() +--- End of stack trace from previous location where exception was thrown --- + at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + at System.Runtime.CompilerServices.TaskAwaiter.GetResult() + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.d__6.MoveNext() +2017-07-12 13:17:36.092 +05:30 [Information] Request finished in 1028.217ms 500 text/html; charset=utf-8 +2017-07-12 13:17:36.093 +05:30 [Debug] Connection id ""0HL68V904962C"" completed keep alive response. +2017-07-12 13:23:12.001 +05:30 [Debug] Hosting starting +2017-07-12 13:23:12.287 +05:30 [Debug] Hosting started +2017-07-12 13:23:12.376 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" started. +2017-07-12 13:23:12.448 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" started. +2017-07-12 13:23:12.517 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-12 13:23:12.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-12 13:23:12.588 +05:30 [Information] Request finished in 93.8514ms 200 +2017-07-12 13:23:12.637 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" completed keep alive response. +2017-07-12 13:23:13.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-12 13:23:13.190 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0ac137e6-4d7f-4c01-bf4f-eb70cf064aae"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-12 13:23:13.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-12 13:23:13.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-12 13:23:13.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-12 13:23:13.544 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-12 13:23:13.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-12 13:23:13.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-12 13:23:13.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 560.0465ms +2017-07-12 13:23:13.944 +05:30 [Information] Request finished in 1465.4895ms 200 application/json; charset=utf-8 +2017-07-12 13:23:13.947 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:23:13.958 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-12 13:23:13.962 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:13.983 +05:30 [Debug] The request path "" does not match the path filter +2017-07-12 13:23:13.985 +05:30 [Information] Request finished in 28.7123ms 404 +2017-07-12 13:23:13.986 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" completed keep alive response. +2017-07-12 13:23:16.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/index.html +2017-07-12 13:23:16.401 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.408 +05:30 [Information] Request finished in 17.4645ms 200 text/html +2017-07-12 13:23:16.409 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:23:16.424 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" started. +2017-07-12 13:23:16.477 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" started. +2017-07-12 13:23:16.492 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" started. +2017-07-12 13:23:16.493 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" started. +2017-07-12 13:23:16.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/reset.css +2017-07-12 13:23:16.507 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.524 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery-1.8.0.min.js +2017-07-12 13:23:16.525 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/screen.css +2017-07-12 13:23:16.557 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/typography.css +2017-07-12 13:23:16.576 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.slideto.min.js +2017-07-12 13:23:16.604 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.606 +05:30 [Information] The file "/css/screen.css" was not modified +2017-07-12 13:23:16.609 +05:30 [Information] The file "/css/typography.css" was not modified +2017-07-12 13:23:16.623 +05:30 [Information] The file "/lib/jquery-1.8.0.min.js" was not modified +2017-07-12 13:23:16.627 +05:30 [Debug] Handled. Status code: 304 File: "/css/screen.css" +2017-07-12 13:23:16.627 +05:30 [Debug] Handled. Status code: 304 File: "/css/typography.css" +2017-07-12 13:23:16.632 +05:30 [Debug] Handled. Status code: 304 File: "/lib/jquery-1.8.0.min.js" +2017-07-12 13:23:16.635 +05:30 [Information] The file "/css/reset.css" was not modified +2017-07-12 13:23:16.649 +05:30 [Debug] Handled. Status code: 304 File: "/css/reset.css" +2017-07-12 13:23:16.641 +05:30 [Information] The file "/lib/jquery.slideto.min.js" was not modified +2017-07-12 13:23:16.656 +05:30 [Information] Request finished in 168.3172ms 304 application/javascript +2017-07-12 13:23:16.650 +05:30 [Information] Request finished in 149.1089ms 304 text/css +2017-07-12 13:23:16.664 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:23:16.670 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" completed keep alive response. +2017-07-12 13:23:16.660 +05:30 [Debug] Handled. Status code: 304 File: "/lib/jquery.slideto.min.js" +2017-07-12 13:23:16.687 +05:30 [Information] Request finished in 103.7908ms 304 text/css +2017-07-12 13:23:16.697 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" completed keep alive response. +2017-07-12 13:23:16.707 +05:30 [Information] Request finished in 230.039ms 304 text/css +2017-07-12 13:23:16.726 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.wiggle.min.js +2017-07-12 13:23:16.732 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" completed keep alive response. +2017-07-12 13:23:16.740 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.790 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jquery.ba-bbq.min.js +2017-07-12 13:23:16.791 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/underscore-min.js +2017-07-12 13:23:16.794 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.794 +05:30 [Information] The file "/lib/jquery.wiggle.min.js" was not modified +2017-07-12 13:23:16.800 +05:30 [Debug] Handled. Status code: 304 File: "/lib/jquery.wiggle.min.js" +2017-07-12 13:23:16.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/handlebars-2.0.0.js +2017-07-12 13:23:16.802 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.804 +05:30 [Information] Request finished in 204.2415ms 304 application/javascript +2017-07-12 13:23:16.809 +05:30 [Information] The file "/lib/underscore-min.js" was not modified +2017-07-12 13:23:16.829 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" completed keep alive response. +2017-07-12 13:23:16.832 +05:30 [Information] The file "/lib/handlebars-2.0.0.js" was not modified +2017-07-12 13:23:16.823 +05:30 [Information] The file "/lib/jquery.ba-bbq.min.js" was not modified +2017-07-12 13:23:16.835 +05:30 [Debug] Handled. Status code: 304 File: "/lib/underscore-min.js" +2017-07-12 13:23:16.836 +05:30 [Information] Request finished in 121.2792ms 304 application/javascript +2017-07-12 13:23:16.841 +05:30 [Debug] Handled. Status code: 304 File: "/lib/handlebars-2.0.0.js" +2017-07-12 13:23:16.848 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" completed keep alive response. +2017-07-12 13:23:16.842 +05:30 [Debug] Handled. Status code: 304 File: "/lib/jquery.ba-bbq.min.js" +2017-07-12 13:23:16.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/swagger-ui.min.js +2017-07-12 13:23:16.866 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/backbone-min.js +2017-07-12 13:23:16.873 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.869 +05:30 [Information] Request finished in 140.2369ms 304 application/javascript +2017-07-12 13:23:16.876 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" completed keep alive response. +2017-07-12 13:23:16.886 +05:30 [Information] The file "/lib/backbone-min.js" was not modified +2017-07-12 13:23:16.887 +05:30 [Debug] Handled. Status code: 304 File: "/lib/backbone-min.js" +2017-07-12 13:23:16.888 +05:30 [Information] The file "/swagger-ui.min.js" was not modified +2017-07-12 13:23:16.883 +05:30 [Information] Request finished in 79.2473ms 304 application/javascript +2017-07-12 13:23:16.884 +05:30 [Information] Request finished in 176.036ms 304 application/javascript +2017-07-12 13:23:16.891 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/jsoneditor.min.js +2017-07-12 13:23:16.896 +05:30 [Information] Request finished in 31.3499ms 304 application/javascript +2017-07-12 13:23:16.899 +05:30 [Debug] Handled. Status code: 304 File: "/swagger-ui.min.js" +2017-07-12 13:23:16.904 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:23:16.926 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.926 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" completed keep alive response. +2017-07-12 13:23:16.901 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" completed keep alive response. +2017-07-12 13:23:16.952 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/swagger-oauth.js +2017-07-12 13:23:16.954 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.955 +05:30 [Information] The file "/lib/jsoneditor.min.js" was not modified +2017-07-12 13:23:16.956 +05:30 [Debug] Handled. Status code: 304 File: "/lib/jsoneditor.min.js" +2017-07-12 13:23:16.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/highlight.7.3.pack.js +2017-07-12 13:23:16.960 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/lib/marked.js +2017-07-12 13:23:16.969 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:16.969 +05:30 [Information] The file "/lib/swagger-oauth.js" was not modified +2017-07-12 13:23:16.972 +05:30 [Debug] Handled. Status code: 304 File: "/lib/swagger-oauth.js" +2017-07-12 13:23:16.976 +05:30 [Information] The file "/lib/highlight.7.3.pack.js" was not modified +2017-07-12 13:23:16.976 +05:30 [Debug] Handled. Status code: 304 File: "/lib/highlight.7.3.pack.js" +2017-07-12 13:23:16.985 +05:30 [Information] Request finished in 75.1106ms 304 application/javascript +2017-07-12 13:23:16.985 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" completed keep alive response. +2017-07-12 13:23:16.995 +05:30 [Information] Request finished in 111.0088ms 304 application/javascript +2017-07-12 13:23:16.996 +05:30 [Information] The file "/lib/marked.js" was not modified +2017-07-12 13:23:16.999 +05:30 [Information] Request finished in 36.742ms 304 application/javascript +2017-07-12 13:23:17.005 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" completed keep alive response. +2017-07-12 13:23:17.004 +05:30 [Debug] Handled. Status code: 304 File: "/lib/marked.js" +2017-07-12 13:23:17.001 +05:30 [Information] Request finished in 49.4127ms 304 application/javascript +2017-07-12 13:23:17.007 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:23:17.004 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" completed keep alive response. +2017-07-12 13:23:17.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/css/print.css +2017-07-12 13:23:17.077 +05:30 [Information] Request finished in 91.5879ms 304 application/javascript +2017-07-12 13:23:17.083 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:17.084 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" completed keep alive response. +2017-07-12 13:23:17.110 +05:30 [Information] The file "/css/print.css" was not modified +2017-07-12 13:23:17.122 +05:30 [Debug] Handled. Status code: 304 File: "/css/print.css" +2017-07-12 13:23:17.237 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/fonts/DroidSans.ttf +2017-07-12 13:23:17.239 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:17.248 +05:30 [Information] Request finished in 215.9888ms 304 text/css +2017-07-12 13:23:17.250 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" completed keep alive response. +2017-07-12 13:23:17.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/images/logo_small.png +2017-07-12 13:23:17.270 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:17.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/v1/swagger.json +2017-07-12 13:23:17.277 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:17.286 +05:30 [Information] The file "/fonts/DroidSans.ttf" was not modified +2017-07-12 13:23:17.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/swagger/ui/fonts/DroidSans-Bold.ttf +2017-07-12 13:23:17.292 +05:30 [Information] The file "/images/logo_small.png" was not modified +2017-07-12 13:23:17.296 +05:30 [Debug] Handled. Status code: 304 File: "/fonts/DroidSans.ttf" +2017-07-12 13:23:17.304 +05:30 [Debug] Handled. Status code: 304 File: "/images/logo_small.png" +2017-07-12 13:23:17.303 +05:30 [Debug] Request did not match any routes. +2017-07-12 13:23:17.329 +05:30 [Information] Request finished in 113.9559ms 304 application/x-font-ttf +2017-07-12 13:23:17.330 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" completed keep alive response. +2017-07-12 13:23:17.341 +05:30 [Information] The file "/fonts/DroidSans-Bold.ttf" was not modified +2017-07-12 13:23:17.342 +05:30 [Debug] Handled. Status code: 304 File: "/fonts/DroidSans-Bold.ttf" +2017-07-12 13:23:17.351 +05:30 [Information] Request finished in 84.5239ms 304 image/png +2017-07-12 13:23:17.352 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" completed keep alive response. +2017-07-12 13:23:17.379 +05:30 [Information] Request finished in 129.742ms 304 application/x-font-ttf +2017-07-12 13:23:17.413 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" completed keep alive response. +2017-07-12 13:23:18.168 +05:30 [Information] Request finished in 921.9335ms 200 application/json +2017-07-12 13:23:18.168 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" completed keep alive response. +2017-07-12 13:25:12.348 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" received FIN. +2017-07-12 13:25:12.348 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" received FIN. +2017-07-12 13:25:12.350 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" received FIN. +2017-07-12 13:25:12.351 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" received FIN. +2017-07-12 13:25:12.350 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" received FIN. +2017-07-12 13:25:12.357 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" received FIN. +2017-07-12 13:25:12.364 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" disconnecting. +2017-07-12 13:25:12.365 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" sending FIN. +2017-07-12 13:25:12.370 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" sent FIN with status "0". +2017-07-12 13:25:12.372 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" disconnecting. +2017-07-12 13:25:12.374 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" sending FIN. +2017-07-12 13:25:12.374 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" sent FIN with status "0". +2017-07-12 13:25:12.372 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" disconnecting. +2017-07-12 13:25:12.377 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" disconnecting. +2017-07-12 13:25:12.377 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" disconnecting. +2017-07-12 13:25:12.384 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" disconnecting. +2017-07-12 13:25:12.385 +05:30 [Debug] Connection id ""0HL68VC5Q3UTM"" stopped. +2017-07-12 13:25:12.386 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" sending FIN. +2017-07-12 13:25:12.386 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" sending FIN. +2017-07-12 13:25:12.386 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" sent FIN with status "0". +2017-07-12 13:25:12.387 +05:30 [Debug] Connection id ""0HL68VC5Q3UTP"" stopped. +2017-07-12 13:25:12.388 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" sent FIN with status "0". +2017-07-12 13:25:12.389 +05:30 [Debug] Connection id ""0HL68VC5Q3UTO"" stopped. +2017-07-12 13:25:12.385 +05:30 [Debug] Connection id ""0HL68VC5Q3UTN"" stopped. +2017-07-12 13:25:12.391 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" sending FIN. +2017-07-12 13:25:12.392 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" sending FIN. +2017-07-12 13:25:12.392 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" sent FIN with status "0". +2017-07-12 13:25:12.392 +05:30 [Debug] Connection id ""0HL68VC5Q3UTL"" stopped. +2017-07-12 13:25:12.393 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" sent FIN with status "0". +2017-07-12 13:25:12.393 +05:30 [Debug] Connection id ""0HL68VC5Q3UTQ"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170713.txt b/src/Api.Socioboard/wwwroot/log/log-20170713.txt new file mode 100644 index 000000000..3bbea53d8 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170713.txt @@ -0,0 +1,1110 @@ +2017-07-13 10:33:54.228 +05:30 [Debug] Hosting starting +2017-07-13 10:33:54.550 +05:30 [Debug] Hosting started +2017-07-13 10:33:54.608 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" started. +2017-07-13 10:33:54.620 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" started. +2017-07-13 10:33:54.939 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-13 10:33:54.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-13 10:33:55.122 +05:30 [Information] Request finished in 112.409ms 200 +2017-07-13 10:33:55.345 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:33:56.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-13 10:33:56.367 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"86bc1dce-196e-4fe7-8df2-22bd3113ade5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-13 10:33:56.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-13 10:33:56.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-13 10:33:56.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-13 10:33:56.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:33:56.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:33:56.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:33:57.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 614.9697ms +2017-07-13 10:33:57.281 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:33:57.282 +05:30 [Information] Request finished in 2390.0881ms 200 application/json; charset=utf-8 +2017-07-13 10:33:57.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:33:57.291 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:33:57.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:33:57.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-13 10:33:57.345 +05:30 [Debug] Request did not match any routes. +2017-07-13 10:33:57.376 +05:30 [Debug] The request path "" does not match the path filter +2017-07-13 10:33:57.386 +05:30 [Information] Request finished in 38.4969ms 404 +2017-07-13 10:33:57.390 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:34:01.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:34:05.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:05.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:05.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:05.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8415.1089ms +2017-07-13 10:34:05.714 +05:30 [Information] Request finished in 8435.9443ms 200 application/json; charset=utf-8 +2017-07-13 10:34:05.715 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:06.132 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:34:06.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:34:06.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:34:09.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:34:09.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:09.358 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:09.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:09.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3279.3007ms +2017-07-13 10:34:09.418 +05:30 [Information] Request finished in 3286.0007ms 200 application/json; charset=utf-8 +2017-07-13 10:34:09.418 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:34:10.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:34:10.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:34:10.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:34:13.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:34:13.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:13.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:13.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:13.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.0879ms +2017-07-13 10:34:13.077 +05:30 [Information] Request finished in 3057.7343ms 200 application/json; charset=utf-8 +2017-07-13 10:34:13.077 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:13.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:34:13.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:34:13.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:34:16.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:34:16.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:16.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:16.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:16.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3043.7913ms +2017-07-13 10:34:16.132 +05:30 [Information] Request finished in 3050.5433ms 200 application/json; charset=utf-8 +2017-07-13 10:34:16.132 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:34:16.174 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-13 10:34:16.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-13 10:34:16.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-13 10:34:19.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:34:19.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:19.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:19.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:19.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.3071ms +2017-07-13 10:34:19.227 +05:30 [Information] Request finished in 3051.8053ms 200 application/json; charset=utf-8 +2017-07-13 10:34:19.227 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:19.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 10:34:19.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 10:34:19.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 10:34:22.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:22.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:22.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:22.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:22.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3383.1262ms +2017-07-13 10:34:22.699 +05:30 [Information] Request finished in 3398.8821ms 200 application/json; charset=utf-8 +2017-07-13 10:34:22.700 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:34:22.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 10:34:22.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 10:34:22.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 10:34:25.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:25.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:25.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:25.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:25.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3137.9061ms +2017-07-13 10:34:25.923 +05:30 [Information] Request finished in 3145.6113ms 200 application/json; charset=utf-8 +2017-07-13 10:34:25.923 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:37.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 10:34:37.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 10:34:37.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 10:34:37.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 10:34:37.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 10:34:37.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 10:34:37.956 +05:30 [Debug] Connection id ""0HL69LI7OL6G5"" started. +2017-07-13 10:34:37.960 +05:30 [Debug] Connection id ""0HL69LI7OL6G6"" started. +2017-07-13 10:34:37.961 +05:30 [Debug] Connection id ""0HL69LI7OL6G7"" started. +2017-07-13 10:34:37.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 10:34:37.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 10:34:37.969 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 10:34:37.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 10:34:37.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 10:34:37.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 10:34:37.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 10:34:37.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 10:34:37.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 10:34:39.316 +05:30 [Debug] Connection id ""0HL69LI7OL6G8"" started. +2017-07-13 10:34:41.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:34:41.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:34:41.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:34:43.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:43.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:43.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:44.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:44.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:44.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:34:44.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:44.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:44.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:44.102 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:34:44.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:44.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:34:44.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:44.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:34:44.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:44.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:44.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6183.7901ms +2017-07-13 10:34:44.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:44.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7014.573ms +2017-07-13 10:34:44.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7047.3989ms +2017-07-13 10:34:44.277 +05:30 [Information] Request finished in 7089.8398ms 200 application/json; charset=utf-8 +2017-07-13 10:34:44.275 +05:30 [Information] Request finished in 6272.2904ms 200 application/json; charset=utf-8 +2017-07-13 10:34:44.301 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:44.307 +05:30 [Debug] Connection id ""0HL69LI7OL6G5"" completed keep alive response. +2017-07-13 10:34:44.314 +05:30 [Information] Request finished in 7160.7097ms 200 application/json; charset=utf-8 +2017-07-13 10:34:44.316 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:34:44.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:44.608 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:34:44.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:44.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:44.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6713.3076ms +2017-07-13 10:34:44.717 +05:30 [Information] Request finished in 6753.588ms 200 application/json; charset=utf-8 +2017-07-13 10:34:44.718 +05:30 [Debug] Connection id ""0HL69LI7OL6G6"" completed keep alive response. +2017-07-13 10:34:44.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:34:44.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:44.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:44.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:44.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3272.0249ms +2017-07-13 10:34:44.947 +05:30 [Information] Request finished in 3291.1719ms 200 application/json; charset=utf-8 +2017-07-13 10:34:44.947 +05:30 [Debug] Connection id ""0HL69LI7OL6G8"" completed keep alive response. +2017-07-13 10:34:44.951 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:34:44.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:34:44.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:34:46.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:46.480 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:34:46.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:46.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:46.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8497.9768ms +2017-07-13 10:34:46.490 +05:30 [Information] Request finished in 8525.562ms 200 application/json; charset=utf-8 +2017-07-13 10:34:46.491 +05:30 [Debug] Connection id ""0HL69LI7OL6G7"" completed keep alive response. +2017-07-13 10:34:47.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:34:47.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:47.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:47.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:47.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2127.474ms +2017-07-13 10:34:47.092 +05:30 [Information] Request finished in 2141.1647ms 200 application/json; charset=utf-8 +2017-07-13 10:34:47.093 +05:30 [Debug] Connection id ""0HL69LI7OL6G4"" completed keep alive response. +2017-07-13 10:34:47.108 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 10:34:47.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 10:34:47.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 10:34:50.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 10:34:50.304 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:34:50.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:34:50.311 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:34:50.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3201.3053ms +2017-07-13 10:34:50.316 +05:30 [Information] Request finished in 3208.2437ms 200 application/json; charset=utf-8 +2017-07-13 10:34:50.317 +05:30 [Debug] Connection id ""0HL69LI7OL6G5"" completed keep alive response. +2017-07-13 10:34:59.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=fb_187231345114052&userId=1&message=%E4%BD%A0%E5%A5%BD%EF%BC%81%E4%BD%A0%E5%A5%BD%E5%90%97&shortnerstatus=0 multipart/form-data; boundary=----WebKitFormBoundarynV1H5ITFxUwgwB02 145 +2017-07-13 10:34:59.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-07-13 10:34:59.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-07-13 10:35:02.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["你好!你好吗", "fb_187231345114052", "1", "", "", "defaultUri", ""]) - ModelState is Valid +2017-07-13 10:35:26.805 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:35:26.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:35:26.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-13 10:35:26.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:35:26.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 27310.406ms +2017-07-13 10:35:26.876 +05:30 [Information] Request finished in 27408.4297ms 200 text/plain; charset=utf-8 +2017-07-13 10:35:26.877 +05:30 [Debug] Connection id ""0HL69LI7OL6G3"" completed keep alive response. +2017-07-13 10:54:57.317 +05:30 [Debug] Hosting starting +2017-07-13 10:54:57.601 +05:30 [Debug] Hosting started +2017-07-13 10:54:57.769 +05:30 [Debug] Connection id ""0HL69LU073DIA"" started. +2017-07-13 10:54:57.769 +05:30 [Debug] Connection id ""0HL69LU073DIB"" started. +2017-07-13 10:54:57.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-13 10:54:57.988 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-13 10:54:58.069 +05:30 [Information] Request finished in 128.6522ms 200 +2017-07-13 10:54:58.143 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:54:58.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-13 10:54:58.966 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"128a4b4b-2d1e-410f-968e-a5cb089ac9b1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-13 10:54:59.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-13 10:54:59.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-13 10:54:59.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-13 10:54:59.460 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:54:59.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:54:59.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:54:59.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 575.9212ms +2017-07-13 10:54:59.933 +05:30 [Information] Request finished in 2019.9266ms 200 application/json; charset=utf-8 +2017-07-13 10:54:59.936 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:00.592 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:55:00.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:55:00.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:55:04.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:55:07.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:08.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:08.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:08.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7526.2188ms +2017-07-13 10:55:08.129 +05:30 [Information] Request finished in 7567.2944ms 200 application/json; charset=utf-8 +2017-07-13 10:55:08.129 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:08.485 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:55:08.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:55:08.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:55:11.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:55:11.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:11.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:11.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:11.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3263.5335ms +2017-07-13 10:55:11.763 +05:30 [Information] Request finished in 3278.9362ms 200 application/json; charset=utf-8 +2017-07-13 10:55:11.763 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:12.162 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:55:12.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:55:12.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:55:15.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:55:15.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:15.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:15.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:15.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3066.5402ms +2017-07-13 10:55:15.240 +05:30 [Information] Request finished in 3077.0439ms 200 application/json; charset=utf-8 +2017-07-13 10:55:15.241 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:15.246 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:55:15.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:55:15.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:55:18.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:55:18.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:18.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:18.301 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:18.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3052.822ms +2017-07-13 10:55:18.308 +05:30 [Information] Request finished in 3064.2099ms 200 application/json; charset=utf-8 +2017-07-13 10:55:18.308 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:18.356 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-13 10:55:18.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-13 10:55:18.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-13 10:55:21.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:55:21.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:21.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:21.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:21.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.901ms +2017-07-13 10:55:21.424 +05:30 [Information] Request finished in 3082.9123ms 200 application/json; charset=utf-8 +2017-07-13 10:55:21.425 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:21.459 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 10:55:21.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 10:55:21.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 10:55:24.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:24.663 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:24.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:24.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:24.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3216.6914ms +2017-07-13 10:55:24.687 +05:30 [Information] Request finished in 3226.8163ms 200 application/json; charset=utf-8 +2017-07-13 10:55:24.687 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:24.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 10:55:24.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 10:55:24.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 10:55:27.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:27.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:27.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:27.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:27.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3156.6383ms +2017-07-13 10:55:27.918 +05:30 [Information] Request finished in 3162.2097ms 200 application/json; charset=utf-8 +2017-07-13 10:55:27.919 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:38.422 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 10:55:38.424 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 10:55:38.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 10:55:38.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 10:55:38.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 10:55:38.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 10:55:39.010 +05:30 [Debug] Connection id ""0HL69LU073DID"" started. +2017-07-13 10:55:39.010 +05:30 [Debug] Connection id ""0HL69LU073DIC"" started. +2017-07-13 10:55:39.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 10:55:39.014 +05:30 [Debug] Connection id ""0HL69LU073DIE"" started. +2017-07-13 10:55:39.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 10:55:39.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 10:55:39.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 10:55:39.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 10:55:39.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 10:55:39.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 10:55:39.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 10:55:39.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 10:55:39.870 +05:30 [Debug] Connection id ""0HL69LU073DIF"" started. +2017-07-13 10:55:40.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 10:55:40.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 10:55:40.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 10:55:42.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:42.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:42.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:42.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:42.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:42.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:42.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4020.0498ms +2017-07-13 10:55:42.469 +05:30 [Information] Request finished in 4046.2428ms 200 application/json; charset=utf-8 +2017-07-13 10:55:42.470 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:42.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:42.493 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:42.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:42.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:42.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4059.1827ms +2017-07-13 10:55:42.520 +05:30 [Information] Request finished in 4077.3763ms 200 application/json; charset=utf-8 +2017-07-13 10:55:42.521 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:42.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:43.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:43.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:43.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:43.092 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:43.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:43.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:43.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4072.3759ms +2017-07-13 10:55:43.198 +05:30 [Information] Request finished in 4156.383ms 200 application/json; charset=utf-8 +2017-07-13 10:55:43.218 +05:30 [Debug] Connection id ""0HL69LU073DIC"" completed keep alive response. +2017-07-13 10:55:43.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 10:55:43.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:43.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:43.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:43.653 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:43.660 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:43.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:43.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:43.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3384.1936ms +2017-07-13 10:55:43.677 +05:30 [Information] Request finished in 3397.0851ms 200 application/json; charset=utf-8 +2017-07-13 10:55:43.679 +05:30 [Debug] Connection id ""0HL69LU073DIF"" completed keep alive response. +2017-07-13 10:55:43.685 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 10:55:43.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 10:55:43.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 10:55:43.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4742.0879ms +2017-07-13 10:55:43.785 +05:30 [Information] Request finished in 4771.1654ms 200 application/json; charset=utf-8 +2017-07-13 10:55:43.785 +05:30 [Debug] Connection id ""0HL69LU073DID"" completed keep alive response. +2017-07-13 10:55:45.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-13 10:55:45.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-13 10:55:45.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-13 10:55:45.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:45.501 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:45.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:45.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:45.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6464.9172ms +2017-07-13 10:55:45.514 +05:30 [Information] Request finished in 6497.0743ms 200 application/json; charset=utf-8 +2017-07-13 10:55:45.514 +05:30 [Debug] Connection id ""0HL69LU073DIE"" completed keep alive response. +2017-07-13 10:55:45.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 10:55:45.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:45.779 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:45.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:45.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2090.8432ms +2017-07-13 10:55:45.785 +05:30 [Information] Request finished in 2099.5455ms 200 application/json; charset=utf-8 +2017-07-13 10:55:45.786 +05:30 [Debug] Connection id ""0HL69LU073DIA"" completed keep alive response. +2017-07-13 10:55:45.798 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 10:55:45.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 10:55:45.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 10:55:48.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 10:55:48.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:48.269 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 10:55:48.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:48.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:48.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 3095.4ms +2017-07-13 10:55:48.279 +05:30 [Information] Request finished in 3103.271ms 200 application/json; charset=utf-8 +2017-07-13 10:55:48.279 +05:30 [Debug] Connection id ""0HL69LU073DIB"" completed keep alive response. +2017-07-13 10:55:48.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 10:55:49.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 10:55:49.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 10:55:49.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 10:55:49.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3272.8413ms +2017-07-13 10:55:49.077 +05:30 [Information] Request finished in 3278.4482ms 200 application/json; charset=utf-8 +2017-07-13 10:55:49.079 +05:30 [Debug] Connection id ""0HL69LU073DIC"" completed keep alive response. +2017-07-13 10:56:57.738 +05:30 [Debug] Connection id ""0HL69LU073DIF"" received FIN. +2017-07-13 10:56:57.740 +05:30 [Debug] Connection id ""0HL69LU073DID"" received FIN. +2017-07-13 10:56:57.742 +05:30 [Debug] Connection id ""0HL69LU073DIE"" received FIN. +2017-07-13 10:56:57.740 +05:30 [Debug] Connection id ""0HL69LU073DIA"" received FIN. +2017-07-13 10:56:57.745 +05:30 [Debug] Connection id ""0HL69LU073DID"" disconnecting. +2017-07-13 10:56:57.743 +05:30 [Debug] Connection id ""0HL69LU073DIB"" received FIN. +2017-07-13 10:56:57.749 +05:30 [Debug] Connection id ""0HL69LU073DID"" sending FIN. +2017-07-13 10:56:57.741 +05:30 [Debug] Connection id ""0HL69LU073DIF"" disconnecting. +2017-07-13 10:56:57.752 +05:30 [Debug] Connection id ""0HL69LU073DIE"" disconnecting. +2017-07-13 10:56:57.762 +05:30 [Debug] Connection id ""0HL69LU073DIB"" disconnecting. +2017-07-13 10:56:57.763 +05:30 [Debug] Connection id ""0HL69LU073DIC"" received FIN. +2017-07-13 10:56:57.765 +05:30 [Debug] Connection id ""0HL69LU073DIF"" sending FIN. +2017-07-13 10:56:57.766 +05:30 [Debug] Connection id ""0HL69LU073DID"" sent FIN with status "0". +2017-07-13 10:56:57.766 +05:30 [Debug] Connection id ""0HL69LU073DIF"" sent FIN with status "0". +2017-07-13 10:56:57.768 +05:30 [Debug] Connection id ""0HL69LU073DIC"" disconnecting. +2017-07-13 10:56:57.763 +05:30 [Debug] Connection id ""0HL69LU073DIA"" disconnecting. +2017-07-13 10:56:57.776 +05:30 [Debug] Connection id ""0HL69LU073DID"" stopped. +2017-07-13 10:56:57.776 +05:30 [Debug] Connection id ""0HL69LU073DIE"" sending FIN. +2017-07-13 10:56:57.777 +05:30 [Debug] Connection id ""0HL69LU073DIB"" sending FIN. +2017-07-13 10:56:57.777 +05:30 [Debug] Connection id ""0HL69LU073DIB"" sent FIN with status "0". +2017-07-13 10:56:57.777 +05:30 [Debug] Connection id ""0HL69LU073DIB"" stopped. +2017-07-13 10:56:57.776 +05:30 [Debug] Connection id ""0HL69LU073DIF"" stopped. +2017-07-13 10:56:57.778 +05:30 [Debug] Connection id ""0HL69LU073DIC"" sending FIN. +2017-07-13 10:56:57.779 +05:30 [Debug] Connection id ""0HL69LU073DIA"" sending FIN. +2017-07-13 10:56:57.777 +05:30 [Debug] Connection id ""0HL69LU073DIE"" sent FIN with status "0". +2017-07-13 10:56:57.780 +05:30 [Debug] Connection id ""0HL69LU073DIE"" stopped. +2017-07-13 10:56:57.779 +05:30 [Debug] Connection id ""0HL69LU073DIA"" sent FIN with status "0". +2017-07-13 10:56:57.783 +05:30 [Debug] Connection id ""0HL69LU073DIA"" stopped. +2017-07-13 10:56:57.784 +05:30 [Debug] Connection id ""0HL69LU073DIC"" sent FIN with status "0". +2017-07-13 10:56:57.785 +05:30 [Debug] Connection id ""0HL69LU073DIC"" stopped. +2017-07-13 10:58:28.847 +05:30 [Debug] Connection id ""0HL69LU073DIG"" started. +2017-07-13 10:58:28.860 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/TwitterTweetSearchWithGeoLocation?searchkeyword=delhi&geoLocation=28.7040592,77.10249019999992,10mi 0 +2017-07-13 10:58:28.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/TwitterTweetSearchWithGeoLocation"'. +2017-07-13 10:58:28.863 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.TwitterTweetSearchWithGeoLocation (Api.Socioboard)" +2017-07-13 10:58:31.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.TwitterTweetSearchWithGeoLocation (Api.Socioboard)" with arguments (["delhi", "28.7040592,77.10249019999992,10mi"]) - ModelState is Valid +2017-07-13 11:00:29.985 +05:30 [Debug] Connection id ""0HL69LU073DIG"" received FIN. +2017-07-13 18:40:33.274 +05:30 [Debug] Hosting starting +2017-07-13 18:40:33.796 +05:30 [Debug] Hosting started +2017-07-13 18:40:33.960 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" started. +2017-07-13 18:40:34.025 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" started. +2017-07-13 18:40:34.130 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-13 18:40:34.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-13 18:40:34.213 +05:30 [Information] Request finished in 99.2439ms 200 +2017-07-13 18:40:34.299 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" completed keep alive response. +2017-07-13 18:40:36.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-13 18:40:36.242 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f13ced26-8c7a-41b5-9b22-ca0f56aaa84c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-13 18:40:36.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-13 18:40:36.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-13 18:40:36.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-13 18:40:36.670 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:40:36.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:40:36.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:40:37.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1024.0487ms +2017-07-13 18:40:37.582 +05:30 [Information] Request finished in 3491.294ms 200 application/json; charset=utf-8 +2017-07-13 18:40:37.584 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" completed keep alive response. +2017-07-13 18:40:37.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-13 18:40:37.608 +05:30 [Debug] Request did not match any routes. +2017-07-13 18:40:37.623 +05:30 [Debug] The request path "" does not match the path filter +2017-07-13 18:40:37.626 +05:30 [Information] Request finished in 20.3305ms 404 +2017-07-13 18:40:37.626 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" completed keep alive response. +2017-07-13 18:40:56.652 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-13 18:40:56.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-13 18:40:56.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-13 18:41:01.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 18:41:09.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:09.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:09.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:10.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13512.7714ms +2017-07-13 18:41:10.174 +05:30 [Information] Request finished in 13524.0258ms 200 application/json; charset=utf-8 +2017-07-13 18:41:10.174 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" completed keep alive response. +2017-07-13 18:41:10.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 18:41:10.956 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 18:41:10.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 18:41:14.029 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:14.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:14.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:14.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:14.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3523.6921ms +2017-07-13 18:41:14.489 +05:30 [Information] Request finished in 3529.7423ms 200 application/json; charset=utf-8 +2017-07-13 18:41:14.489 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" completed keep alive response. +2017-07-13 18:41:14.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:41:14.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:41:14.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:41:17.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:17.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:17.768 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:17.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:17.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3224.5098ms +2017-07-13 18:41:17.824 +05:30 [Information] Request finished in 3257.2638ms 200 application/json; charset=utf-8 +2017-07-13 18:41:17.825 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" completed keep alive response. +2017-07-13 18:41:21.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 18:41:21.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 18:41:21.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 18:41:21.694 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" started. +2017-07-13 18:41:21.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 18:41:21.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 18:41:21.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 18:41:21.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 18:41:21.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 18:41:21.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 18:41:22.281 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" started. +2017-07-13 18:41:22.300 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" started. +2017-07-13 18:41:22.300 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" started. +2017-07-13 18:41:22.303 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 18:41:22.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 18:41:22.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 18:41:23.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 18:41:23.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 18:41:23.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 18:41:24.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:41:24.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:41:24.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:41:24.959 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" started. +2017-07-13 18:41:24.960 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 18:41:24.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 18:41:24.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 18:41:26.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:26.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:26.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:26.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:26.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:27.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:27.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:27.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:27.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5490.899ms +2017-07-13 18:41:27.163 +05:30 [Information] Request finished in 5535.5723ms 200 application/json; charset=utf-8 +2017-07-13 18:41:27.164 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" completed keep alive response. +2017-07-13 18:41:27.220 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:41:27.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:41:27.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:41:27.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:27.480 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:27.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:27.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:27.840 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:27.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:27.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:27.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:27.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:27.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:27.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:27.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6141.0449ms +2017-07-13 18:41:27.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:27.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:27.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:27.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:27.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:27.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6214.3121ms +2017-07-13 18:41:27.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:27.974 +05:30 [Information] Request finished in 6237.8629ms 200 application/json; charset=utf-8 +2017-07-13 18:41:27.975 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" completed keep alive response. +2017-07-13 18:41:27.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3915.424ms +2017-07-13 18:41:27.981 +05:30 [Information] Request finished in 6270.9916ms 200 application/json; charset=utf-8 +2017-07-13 18:41:27.988 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" completed keep alive response. +2017-07-13 18:41:27.994 +05:30 [Information] Request finished in 3942.5953ms 200 application/json; charset=utf-8 +2017-07-13 18:41:27.995 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" completed keep alive response. +2017-07-13 18:41:28.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 18:41:28.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4578.1956ms +2017-07-13 18:41:28.122 +05:30 [Information] Request finished in 4613.0085ms 200 application/json; charset=utf-8 +2017-07-13 18:41:28.122 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" completed keep alive response. +2017-07-13 18:41:28.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:28.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:28.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:28.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3206.7784ms +2017-07-13 18:41:28.192 +05:30 [Information] Request finished in 3231.4545ms 200 application/json; charset=utf-8 +2017-07-13 18:41:28.192 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" completed keep alive response. +2017-07-13 18:41:30.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:30.197 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:30.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:30.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:30.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7903.3091ms +2017-07-13 18:41:30.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:30.310 +05:30 [Information] Request finished in 7982.8741ms 200 application/json; charset=utf-8 +2017-07-13 18:41:30.332 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" completed keep alive response. +2017-07-13 18:41:30.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:30.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:30.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:30.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3170.7498ms +2017-07-13 18:41:30.405 +05:30 [Information] Request finished in 3187.0398ms 200 application/json; charset=utf-8 +2017-07-13 18:41:30.406 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" completed keep alive response. +2017-07-13 18:41:31.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 18:41:31.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 18:41:31.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 18:41:31.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 18:41:31.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 18:41:31.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 18:41:32.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:41:32.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 18:41:32.189 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 18:41:32.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:41:32.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 18:41:32.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 18:41:32.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:41:32.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 18:41:32.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 18:41:33.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 18:41:33.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 18:41:33.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 18:41:33.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:33.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:33.853 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:33.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:33.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:33.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2147.0156ms +2017-07-13 18:41:33.859 +05:30 [Information] Request finished in 2162.5494ms 200 application/json; charset=utf-8 +2017-07-13 18:41:33.860 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" completed keep alive response. +2017-07-13 18:41:34.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:34.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:34.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:34.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:34.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:34.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2439.5161ms +2017-07-13 18:41:34.687 +05:30 [Information] Request finished in 2525.1942ms 200 application/json; charset=utf-8 +2017-07-13 18:41:34.688 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" completed keep alive response. +2017-07-13 18:41:34.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:35.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:35.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:35.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:35.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:35.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3434.2377ms +2017-07-13 18:41:35.284 +05:30 [Information] Request finished in 3579.6728ms 200 application/json; charset=utf-8 +2017-07-13 18:41:35.286 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" completed keep alive response. +2017-07-13 18:41:35.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:35.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:41:35.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:35.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:35.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:35.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:35.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3275.1554ms +2017-07-13 18:41:35.504 +05:30 [Information] Request finished in 3342.9143ms 200 application/json; charset=utf-8 +2017-07-13 18:41:35.505 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" completed keep alive response. +2017-07-13 18:41:36.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:36.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:41:36.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:36.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:36.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3994.1653ms +2017-07-13 18:41:36.225 +05:30 [Information] Request finished in 4063.3673ms 200 application/json; charset=utf-8 +2017-07-13 18:41:36.226 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" completed keep alive response. +2017-07-13 18:41:37.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 18:41:37.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:41:37.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:41:37.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:41:37.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3489.8817ms +2017-07-13 18:41:37.180 +05:30 [Information] Request finished in 3498.5006ms 200 application/json; charset=utf-8 +2017-07-13 18:41:37.181 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" completed keep alive response. +2017-07-13 18:42:33.926 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" received FIN. +2017-07-13 18:42:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" disconnecting. +2017-07-13 18:42:33.928 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" sending FIN. +2017-07-13 18:42:33.930 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" received FIN. +2017-07-13 18:42:33.931 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" disconnecting. +2017-07-13 18:42:33.932 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" sending FIN. +2017-07-13 18:42:33.934 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" sent FIN with status "0". +2017-07-13 18:42:33.934 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" sent FIN with status "0". +2017-07-13 18:42:33.936 +05:30 [Debug] Connection id ""0HL69U25RDKOF"" stopped. +2017-07-13 18:42:33.936 +05:30 [Debug] Connection id ""0HL69U25RDKOE"" stopped. +2017-07-13 18:43:04.209 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" received FIN. +2017-07-13 18:43:04.210 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" received FIN. +2017-07-13 18:43:04.209 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" received FIN. +2017-07-13 18:43:04.211 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" disconnecting. +2017-07-13 18:43:04.211 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" started. +2017-07-13 18:43:04.211 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" disconnecting. +2017-07-13 18:43:04.220 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" disconnecting. +2017-07-13 18:43:04.220 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" received FIN. +2017-07-13 18:43:04.226 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 18:43:04.225 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" sending FIN. +2017-07-13 18:43:04.230 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" disconnecting. +2017-07-13 18:43:04.230 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" received FIN. +2017-07-13 18:43:04.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 18:43:04.238 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" sending FIN. +2017-07-13 18:43:04.242 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" sending FIN. +2017-07-13 18:43:04.242 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" disconnecting. +2017-07-13 18:43:04.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 18:43:04.255 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" sent FIN with status "0". +2017-07-13 18:43:04.256 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" sending FIN. +2017-07-13 18:43:04.267 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" sending FIN. +2017-07-13 18:43:04.267 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" sent FIN with status "0". +2017-07-13 18:43:04.268 +05:30 [Debug] Connection id ""0HL69U25RDKOK"" stopped. +2017-07-13 18:43:04.268 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" sent FIN with status "0". +2017-07-13 18:43:04.269 +05:30 [Debug] Connection id ""0HL69U25RDKOJ"" stopped. +2017-07-13 18:43:04.270 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" sent FIN with status "0". +2017-07-13 18:43:04.270 +05:30 [Debug] Connection id ""0HL69U25RDKOG"" stopped. +2017-07-13 18:43:04.265 +05:30 [Debug] Connection id ""0HL69U25RDKOH"" stopped. +2017-07-13 18:43:04.273 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" sent FIN with status "0". +2017-07-13 18:43:04.274 +05:30 [Debug] Connection id ""0HL69U25RDKOI"" stopped. +2017-07-13 18:43:07.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 18:43:07.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:43:07.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:43:07.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:43:07.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3097.8614ms +2017-07-13 18:43:07.360 +05:30 [Information] Request finished in 3134.2992ms 200 application/json; charset=utf-8 +2017-07-13 18:43:07.361 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" completed keep alive response. +2017-07-13 18:43:07.365 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 18:43:07.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 18:43:07.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 18:43:10.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 18:43:10.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:43:10.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:43:10.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:43:10.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3076.4105ms +2017-07-13 18:43:10.449 +05:30 [Information] Request finished in 3084.3193ms 200 application/json; charset=utf-8 +2017-07-13 18:43:10.450 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" completed keep alive response. +2017-07-13 18:43:10.482 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-13 18:43:10.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-13 18:43:10.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-13 18:43:13.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["19", "8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 18:43:13.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-13 18:43:13.576 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-13 18:43:13.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3091.0187ms +2017-07-13 18:43:13.579 +05:30 [Information] Request finished in 3100.5695ms 200 +2017-07-13 18:43:13.579 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" completed keep alive response. +2017-07-13 18:43:13.683 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 18:43:13.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 18:43:13.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 18:43:16.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c38a974b1328"]) - ModelState is Valid +2017-07-13 18:43:16.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:43:16.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:43:16.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:43:16.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3039.9874ms +2017-07-13 18:43:16.729 +05:30 [Information] Request finished in 3045.777ms 200 application/json; charset=utf-8 +2017-07-13 18:43:16.729 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" completed keep alive response. +2017-07-13 18:44:33.925 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" received FIN. +2017-07-13 18:44:33.925 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" disconnecting. +2017-07-13 18:44:33.926 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" sending FIN. +2017-07-13 18:44:33.926 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" sent FIN with status "0". +2017-07-13 18:44:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOL"" stopped. +2017-07-13 18:45:23.603 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" started. +2017-07-13 18:45:23.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-13 18:45:23.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-13 18:45:23.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-13 18:45:26.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 18:45:26.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:26.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:26.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:26.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3159.3497ms +2017-07-13 18:45:26.799 +05:30 [Information] Request finished in 3193.2177ms 200 application/json; charset=utf-8 +2017-07-13 18:45:26.799 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" completed keep alive response. +2017-07-13 18:45:26.886 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 18:45:26.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 18:45:26.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 18:45:29.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:30.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:30.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:30.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:30.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3133.9208ms +2017-07-13 18:45:30.027 +05:30 [Information] Request finished in 3139.665ms 200 application/json; charset=utf-8 +2017-07-13 18:45:30.028 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" completed keep alive response. +2017-07-13 18:45:30.035 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:45:30.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:45:30.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:45:33.102 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:33.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:33.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:33.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:33.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3153.7084ms +2017-07-13 18:45:33.196 +05:30 [Information] Request finished in 3160.6842ms 200 application/json; charset=utf-8 +2017-07-13 18:45:33.197 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" completed keep alive response. +2017-07-13 18:45:34.474 +05:30 [Debug] Connection id ""0HL69U25RDKON"" started. +2017-07-13 18:45:34.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 18:45:34.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 18:45:34.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 18:45:34.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 18:45:34.499 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 18:45:34.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 18:45:34.601 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" started. +2017-07-13 18:45:34.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 18:45:34.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 18:45:34.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 18:45:34.970 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" started. +2017-07-13 18:45:34.975 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" started. +2017-07-13 18:45:34.983 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" started. +2017-07-13 18:45:35.064 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 18:45:35.066 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 18:45:35.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:45:35.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 18:45:35.068 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:45:35.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 18:45:35.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 18:45:35.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 18:45:35.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:45:35.910 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" started. +2017-07-13 18:45:35.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 18:45:35.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 18:45:35.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 18:45:37.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:37.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:37.523 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:37.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:37.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:37.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2455.0449ms +2017-07-13 18:45:37.529 +05:30 [Information] Request finished in 2502.0257ms 200 application/json; charset=utf-8 +2017-07-13 18:45:37.530 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" completed keep alive response. +2017-07-13 18:45:37.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:37.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:37.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:37.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:37.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:37.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:37.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:37.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:37.813 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:37.832 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:37.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:37.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3368.814ms +2017-07-13 18:45:37.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:37.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:37.875 +05:30 [Information] Request finished in 3398.6779ms 200 application/json; charset=utf-8 +2017-07-13 18:45:37.877 +05:30 [Debug] Connection id ""0HL69U25RDKON"" completed keep alive response. +2017-07-13 18:45:37.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:37.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3376.6255ms +2017-07-13 18:45:37.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3270.258ms +2017-07-13 18:45:37.884 +05:30 [Information] Request finished in 3407.8371ms 200 application/json; charset=utf-8 +2017-07-13 18:45:37.885 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" completed keep alive response. +2017-07-13 18:45:37.886 +05:30 [Information] Request finished in 3283.2284ms 200 application/json; charset=utf-8 +2017-07-13 18:45:37.888 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" completed keep alive response. +2017-07-13 18:45:37.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:45:37.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:45:37.893 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:45:38.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:38.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:38.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:38.318 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:38.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:38.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:38.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3246.9065ms +2017-07-13 18:45:38.325 +05:30 [Information] Request finished in 3260.8068ms 200 application/json; charset=utf-8 +2017-07-13 18:45:38.326 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" completed keep alive response. +2017-07-13 18:45:38.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 18:45:39.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:39.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:39.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:39.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3140.206ms +2017-07-13 18:45:39.062 +05:30 [Information] Request finished in 3150.2332ms 200 application/json; charset=utf-8 +2017-07-13 18:45:39.063 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" completed keep alive response. +2017-07-13 18:45:39.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:39.988 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:39.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:40.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:40.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4932.5519ms +2017-07-13 18:45:40.014 +05:30 [Information] Request finished in 4948.6674ms 200 application/json; charset=utf-8 +2017-07-13 18:45:40.016 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" completed keep alive response. +2017-07-13 18:45:40.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:40.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:40.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:41.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:41.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.6403ms +2017-07-13 18:45:41.006 +05:30 [Information] Request finished in 3113.9862ms 200 application/json; charset=utf-8 +2017-07-13 18:45:41.007 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" completed keep alive response. +2017-07-13 18:45:42.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 18:45:42.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 18:45:42.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 18:45:42.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 18:45:42.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 18:45:42.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 18:45:42.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 18:45:42.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 18:45:42.401 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:45:42.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 18:45:42.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:45:42.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:45:42.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 18:45:42.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 18:45:42.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 18:45:43.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 18:45:43.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 18:45:43.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 18:45:44.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:44.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:44.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:44.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:44.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:44.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2180.3947ms +2017-07-13 18:45:44.272 +05:30 [Information] Request finished in 2191.3687ms 200 application/json; charset=utf-8 +2017-07-13 18:45:44.273 +05:30 [Debug] Connection id ""0HL69U25RDKON"" completed keep alive response. +2017-07-13 18:45:44.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:44.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:44.422 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:44.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:44.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:44.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2330.8806ms +2017-07-13 18:45:44.428 +05:30 [Information] Request finished in 2345.1805ms 200 application/json; charset=utf-8 +2017-07-13 18:45:44.428 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" completed keep alive response. +2017-07-13 18:45:44.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:44.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:44.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:44.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:44.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:44.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:44.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2495.3366ms +2017-07-13 18:45:44.907 +05:30 [Information] Request finished in 2512.1019ms 200 application/json; charset=utf-8 +2017-07-13 18:45:44.908 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" completed keep alive response. +2017-07-13 18:45:45.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:45:45.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:45.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:45.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:45.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:45.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3144.9339ms +2017-07-13 18:45:45.558 +05:30 [Information] Request finished in 3160.9196ms 200 application/json; charset=utf-8 +2017-07-13 18:45:45.559 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" completed keep alive response. +2017-07-13 18:45:45.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:45.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:45:45.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:45.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:45.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3178.3696ms +2017-07-13 18:45:45.597 +05:30 [Information] Request finished in 3199.8966ms 200 application/json; charset=utf-8 +2017-07-13 18:45:45.598 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" completed keep alive response. +2017-07-13 18:45:46.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 18:45:46.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:45:46.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:45:46.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:45:46.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3190.6043ms +2017-07-13 18:45:46.368 +05:30 [Information] Request finished in 3208.7125ms 200 application/json; charset=utf-8 +2017-07-13 18:45:46.368 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" completed keep alive response. +2017-07-13 18:48:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" received FIN. +2017-07-13 18:48:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" received FIN. +2017-07-13 18:48:33.928 +05:30 [Debug] Connection id ""0HL69U25RDKON"" received FIN. +2017-07-13 18:48:33.930 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" received FIN. +2017-07-13 18:48:33.930 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" disconnecting. +2017-07-13 18:48:33.931 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" received FIN. +2017-07-13 18:48:33.936 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" received FIN. +2017-07-13 18:48:33.936 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" disconnecting. +2017-07-13 18:48:33.928 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" disconnecting. +2017-07-13 18:48:33.939 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" disconnecting. +2017-07-13 18:48:33.938 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" sending FIN. +2017-07-13 18:48:33.938 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" disconnecting. +2017-07-13 18:48:33.937 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" received FIN. +2017-07-13 18:48:33.940 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" sending FIN. +2017-07-13 18:48:33.941 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" sending FIN. +2017-07-13 18:48:33.941 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" sending FIN. +2017-07-13 18:48:33.941 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" sent FIN with status "0". +2017-07-13 18:48:33.942 +05:30 [Debug] Connection id ""0HL69U25RDKOO"" stopped. +2017-07-13 18:48:33.941 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" disconnecting. +2017-07-13 18:48:33.942 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" sent FIN with status "0". +2017-07-13 18:48:33.936 +05:30 [Debug] Connection id ""0HL69U25RDKON"" disconnecting. +2017-07-13 18:48:33.944 +05:30 [Debug] Connection id ""0HL69U25RDKOS"" stopped. +2017-07-13 18:48:33.946 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" sent FIN with status "0". +2017-07-13 18:48:33.946 +05:30 [Debug] Connection id ""0HL69U25RDKOM"" stopped. +2017-07-13 18:48:33.946 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" sending FIN. +2017-07-13 18:48:33.947 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" sent FIN with status "0". +2017-07-13 18:48:33.947 +05:30 [Debug] Connection id ""0HL69U25RDKOR"" stopped. +2017-07-13 18:48:33.939 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" sending FIN. +2017-07-13 18:48:33.947 +05:30 [Debug] Connection id ""0HL69U25RDKON"" sending FIN. +2017-07-13 18:48:33.948 +05:30 [Debug] Connection id ""0HL69U25RDKON"" sent FIN with status "0". +2017-07-13 18:48:33.948 +05:30 [Debug] Connection id ""0HL69U25RDKON"" stopped. +2017-07-13 18:48:33.948 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" sent FIN with status "0". +2017-07-13 18:48:33.949 +05:30 [Debug] Connection id ""0HL69U25RDKOP"" stopped. +2017-07-13 18:48:33.949 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" sent FIN with status "0". +2017-07-13 18:48:33.950 +05:30 [Debug] Connection id ""0HL69U25RDKOQ"" stopped. +2017-07-13 18:54:49.281 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" started. +2017-07-13 18:54:49.302 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Groups/AddSelectedGroups?userId=1&groupId=1 multipart/form-data; boundary=----WebKitFormBoundaryAkrTLcVfldEAySVS 155 +2017-07-13 18:54:49.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/AddSelectedGroups"'. +2017-07-13 18:54:49.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.AddSelectedGroups (Api.Socioboard)" +2017-07-13 18:54:52.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.AddSelectedGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:55:38.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.AddSelectedGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-13 18:55:38.958 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-13 18:55:38.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.AddSelectedGroups (Api.Socioboard)" in 49644.5631ms +2017-07-13 18:55:38.979 +05:30 [Information] Request finished in 49690.0428ms 200 +2017-07-13 18:55:38.980 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:39.153 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 18:55:39.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 18:55:39.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 18:55:46.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-13 18:55:46.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:55:46.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:55:46.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:55:46.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6907.3577ms +2017-07-13 18:55:46.075 +05:30 [Information] Request finished in 6933.5133ms 200 application/json; charset=utf-8 +2017-07-13 18:55:46.076 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:46.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 18:55:46.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 18:55:46.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 18:55:48.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 18:55:48.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:55:48.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:55:48.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:55:48.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2101.4538ms +2017-07-13 18:55:48.191 +05:30 [Information] Request finished in 2110.6398ms 200 application/json; charset=utf-8 +2017-07-13 18:55:48.191 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:48.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-13 18:55:48.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-13 18:55:48.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-13 18:55:50.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-13 18:55:50.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:55:50.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:55:50.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:55:50.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2108.269ms +2017-07-13 18:55:50.319 +05:30 [Information] Request finished in 2122.0313ms 200 application/json; charset=utf-8 +2017-07-13 18:55:50.321 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:50.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-13 18:55:50.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-13 18:55:50.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-13 18:55:53.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:55:53.503 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:55:53.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:55:53.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:55:53.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3142.2821ms +2017-07-13 18:55:53.512 +05:30 [Information] Request finished in 3178.2752ms 200 application/json; charset=utf-8 +2017-07-13 18:55:53.512 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:53.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:55:53.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:55:53.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:55:56.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:55:56.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:55:56.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:55:56.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:55:56.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3094.7541ms +2017-07-13 18:55:56.622 +05:30 [Information] Request finished in 3101.3323ms 200 application/json; charset=utf-8 +2017-07-13 18:55:56.622 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:55:58.126 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" started. +2017-07-13 18:55:58.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-13 18:55:58.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-13 18:55:58.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-13 18:55:58.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-13 18:55:58.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-13 18:55:58.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-13 18:55:58.521 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" started. +2017-07-13 18:55:58.524 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" started. +2017-07-13 18:55:58.524 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" started. +2017-07-13 18:55:58.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-13 18:55:58.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-13 18:55:58.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-13 18:55:58.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-13 18:55:58.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-13 18:55:58.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-13 18:55:58.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-13 18:55:58.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-13 18:55:58.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-13 18:55:59.294 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" started. +2017-07-13 18:55:59.321 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-13 18:55:59.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-13 18:55:59.323 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-13 18:56:01.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:56:01.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:56:01.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:01.606 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:56:01.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:01.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-13 18:56:01.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:01.685 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:56:01.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:01.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:01.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:01.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:01.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:01.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:01.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3580.6859ms +2017-07-13 18:56:02.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2411.4069ms +2017-07-13 18:56:02.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:56:02.128 +05:30 [Information] Request finished in 3892.1073ms 200 application/json; charset=utf-8 +2017-07-13 18:56:02.142 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:56:02.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3562.2937ms +2017-07-13 18:56:02.150 +05:30 [Information] Request finished in 2819.6148ms 200 application/json; charset=utf-8 +2017-07-13 18:56:02.150 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" completed keep alive response. +2017-07-13 18:56:02.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:56:02.160 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-13 18:56:02.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-13 18:56:02.162 +05:30 [Information] Request finished in 4023.2551ms 200 application/json; charset=utf-8 +2017-07-13 18:56:02.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-13 18:56:02.197 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" completed keep alive response. +2017-07-13 18:56:02.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-13 18:56:02.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:02.270 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:56:02.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:02.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:02.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3685.6486ms +2017-07-13 18:56:02.318 +05:30 [Information] Request finished in 3751.1534ms 200 application/json; charset=utf-8 +2017-07-13 18:56:02.366 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" completed keep alive response. +2017-07-13 18:56:02.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:02.481 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:56:02.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:02.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:02.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3900.4954ms +2017-07-13 18:56:02.487 +05:30 [Information] Request finished in 3963.2043ms 200 application/json; charset=utf-8 +2017-07-13 18:56:02.487 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" completed keep alive response. +2017-07-13 18:56:03.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:03.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-13 18:56:03.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:03.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:03.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5273.6954ms +2017-07-13 18:56:03.860 +05:30 [Information] Request finished in 5332.5769ms 200 application/json; charset=utf-8 +2017-07-13 18:56:03.861 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" completed keep alive response. +2017-07-13 18:56:05.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-13 18:56:05.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:05.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:05.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:05.344 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3108.7441ms +2017-07-13 18:56:05.346 +05:30 [Information] Request finished in 3192.36ms 200 application/json; charset=utf-8 +2017-07-13 18:56:05.347 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" completed keep alive response. +2017-07-13 18:56:05.353 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-13 18:56:05.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-13 18:56:05.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-13 18:56:08.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-13 18:56:08.458 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-13 18:56:08.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-13 18:56:08.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-13 18:56:08.464 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3107.1262ms +2017-07-13 18:56:08.468 +05:30 [Information] Request finished in 3114.494ms 200 application/json; charset=utf-8 +2017-07-13 18:56:08.469 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" completed keep alive response. +2017-07-13 18:58:33.925 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" received FIN. +2017-07-13 18:58:33.926 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" received FIN. +2017-07-13 18:58:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" received FIN. +2017-07-13 18:58:33.927 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" disconnecting. +2017-07-13 18:58:33.990 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" disconnecting. +2017-07-13 18:58:33.937 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" received FIN. +2017-07-13 18:58:33.995 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" disconnecting. +2017-07-13 18:58:33.995 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" sending FIN. +2017-07-13 18:58:34.001 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" received FIN. +2017-07-13 18:58:34.001 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" disconnecting. +2017-07-13 18:58:34.007 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" disconnecting. +2017-07-13 18:58:34.006 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" sending FIN. +2017-07-13 18:58:34.006 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" received FIN. +2017-07-13 18:58:34.013 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" sending FIN. +2017-07-13 18:58:34.014 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" sending FIN. +2017-07-13 18:58:34.014 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" sent FIN with status "0". +2017-07-13 18:58:34.015 +05:30 [Debug] Connection id ""0HL69U25RDKP1"" stopped. +2017-07-13 18:58:34.015 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" sent FIN with status "0". +2017-07-13 18:58:34.016 +05:30 [Debug] Connection id ""0HL69U25RDKOU"" stopped. +2017-07-13 18:58:34.012 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" sending FIN. +2017-07-13 18:58:34.013 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" disconnecting. +2017-07-13 18:58:34.018 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" sent FIN with status "0". +2017-07-13 18:58:34.019 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" sending FIN. +2017-07-13 18:58:34.019 +05:30 [Debug] Connection id ""0HL69U25RDKOT"" stopped. +2017-07-13 18:58:34.021 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" sent FIN with status "0". +2017-07-13 18:58:34.021 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" sent FIN with status "0". +2017-07-13 18:58:34.022 +05:30 [Debug] Connection id ""0HL69U25RDKP0"" stopped. +2017-07-13 18:58:34.023 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" sent FIN with status "0". +2017-07-13 18:58:34.025 +05:30 [Debug] Connection id ""0HL69U25RDKOV"" stopped. +2017-07-13 18:58:34.023 +05:30 [Debug] Connection id ""0HL69U25RDKP2"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170717.txt b/src/Api.Socioboard/wwwroot/log/log-20170717.txt index b7d9e6a45..61170e1f4 100644 --- a/src/Api.Socioboard/wwwroot/log/log-20170717.txt +++ b/src/Api.Socioboard/wwwroot/log/log-20170717.txt @@ -1,23 +1,4631 @@ -2017-07-17 15:30:33.069 +05:30 [Debug] Hosting starting -2017-07-17 15:30:33.660 +05:30 [Debug] Hosting started -2017-07-17 15:30:33.828 +05:30 [Debug] Connection id ""0HL6CVAL5MJOL"" started. -2017-07-17 15:30:33.850 +05:30 [Debug] Connection id ""0HL6CVAL5MJOM"" started. -2017-07-17 15:30:34.561 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 -2017-07-17 15:30:34.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values -2017-07-17 15:30:34.699 +05:30 [Information] Request finished in 240.6995ms 200 -2017-07-17 15:30:34.871 +05:30 [Debug] Connection id ""0HL6CVAL5MJOM"" completed keep alive response. -2017-07-17 15:30:35.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. -2017-07-17 15:30:35.995 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1cec12d5-1fc8-41b7-ab9f-f2cedba379ba"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' -2017-07-17 15:30:36.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" -2017-07-17 15:30:36.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid -2017-07-17 15:30:36.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". -2017-07-17 15:30:36.272 +05:30 [Debug] No information found on request to perform content negotiation. -2017-07-17 15:30:36.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. -2017-07-17 15:30:36.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". -2017-07-17 15:30:36.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 708.3727ms -2017-07-17 15:30:36.908 +05:30 [Information] Request finished in 2490.8669ms 200 application/json; charset=utf-8 -2017-07-17 15:30:36.910 +05:30 [Debug] Connection id ""0HL6CVAL5MJOL"" completed keep alive response. -2017-07-17 15:30:36.936 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico -2017-07-17 15:30:36.939 +05:30 [Debug] Request did not match any routes. -2017-07-17 15:30:36.947 +05:30 [Information] Request finished in 10.272ms 404 -2017-07-17 15:30:36.948 +05:30 [Debug] Connection id ""0HL6CVAL5MJOM"" completed keep alive response. +2017-07-17 10:36:03.875 +05:30 [Debug] Hosting starting +2017-07-17 10:36:04.183 +05:30 [Debug] Hosting started +2017-07-17 10:36:04.226 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" started. +2017-07-17 10:36:04.227 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" started. +2017-07-17 10:36:04.501 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-17 10:36:04.501 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-17 10:36:04.684 +05:30 [Information] Request finished in 223.419ms 200 +2017-07-17 10:36:04.814 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:05.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-17 10:36:05.960 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"92459ee2-545b-4414-ae06-ef9da2cecb07"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-17 10:36:06.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-17 10:36:06.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-17 10:36:06.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-17 10:36:06.312 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:06.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:06.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:06.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 532.9534ms +2017-07-17 10:36:06.719 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 10:36:06.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 10:36:06.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 10:36:06.773 +05:30 [Information] Request finished in 2431.2757ms 200 application/json; charset=utf-8 +2017-07-17 10:36:06.779 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:06.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-17 10:36:06.825 +05:30 [Debug] Request did not match any routes. +2017-07-17 10:36:06.841 +05:30 [Debug] The request path "" does not match the path filter +2017-07-17 10:36:06.845 +05:30 [Information] Request finished in 21.9561ms 404 +2017-07-17 10:36:06.846 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:10.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:36:15.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:15.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:15.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:15.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8785.8672ms +2017-07-17 10:36:15.524 +05:30 [Information] Request finished in 8809.6449ms 200 application/json; charset=utf-8 +2017-07-17 10:36:15.524 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:15.969 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 10:36:15.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 10:36:15.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 10:36:19.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 10:36:19.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:19.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:19.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:19.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3299.5756ms +2017-07-17 10:36:19.276 +05:30 [Information] Request finished in 3308.4219ms 200 application/json; charset=utf-8 +2017-07-17 10:36:19.277 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:19.794 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 10:36:19.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 10:36:19.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 10:36:22.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:36:22.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:22.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:22.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:22.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3032.5677ms +2017-07-17 10:36:22.833 +05:30 [Information] Request finished in 3038.99ms 200 application/json; charset=utf-8 +2017-07-17 10:36:22.833 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:22.836 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 10:36:22.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 10:36:22.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 10:36:25.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 10:36:25.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:25.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:25.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:25.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.1446ms +2017-07-17 10:36:25.882 +05:30 [Information] Request finished in 3045.6023ms 200 application/json; charset=utf-8 +2017-07-17 10:36:25.883 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:25.927 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 10:36:25.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 10:36:25.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 10:36:28.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:36:28.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:28.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:28.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:28.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.4661ms +2017-07-17 10:36:28.989 +05:30 [Information] Request finished in 3063.4281ms 200 application/json; charset=utf-8 +2017-07-17 10:36:28.990 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:29.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 10:36:29.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 10:36:29.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 10:36:32.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:32.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:32.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:32.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:32.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3320.3714ms +2017-07-17 10:36:32.456 +05:30 [Information] Request finished in 3326.0067ms 200 application/json; charset=utf-8 +2017-07-17 10:36:32.457 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:32.555 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:36:32.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:36:32.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:36:35.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:35.738 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:35.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:35.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:35.748 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3188.4881ms +2017-07-17 10:36:35.751 +05:30 [Information] Request finished in 3195.4448ms 200 application/json; charset=utf-8 +2017-07-17 10:36:35.752 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:47.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 10:36:47.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 10:36:47.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 10:36:47.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 10:36:47.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 10:36:47.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 10:36:48.731 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" started. +2017-07-17 10:36:48.732 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" started. +2017-07-17 10:36:48.748 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" started. +2017-07-17 10:36:48.774 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 10:36:48.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 10:36:48.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 10:36:48.802 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:36:48.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:36:48.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:36:49.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 10:36:49.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 10:36:49.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 10:36:49.758 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" started. +2017-07-17 10:36:51.069 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 10:36:51.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 10:36:51.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 10:36:52.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:52.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:52.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:52.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:52.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:52.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4591.0816ms +2017-07-17 10:36:52.256 +05:30 [Information] Request finished in 4689.6485ms 200 application/json; charset=utf-8 +2017-07-17 10:36:52.257 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:53.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:53.225 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:53.227 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:53.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:53.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:53.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5562.2889ms +2017-07-17 10:36:53.251 +05:30 [Information] Request finished in 5594.8885ms 200 application/json; charset=utf-8 +2017-07-17 10:36:53.252 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:36:54.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:54.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:54.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:36:54.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:36:54.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:54.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:54.399 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:54.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:54.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:54.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:54.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:54.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3355.2675ms +2017-07-17 10:36:54.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5624.6441ms +2017-07-17 10:36:54.434 +05:30 [Information] Request finished in 3365.8781ms 200 application/json; charset=utf-8 +2017-07-17 10:36:54.436 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" completed keep alive response. +2017-07-17 10:36:54.444 +05:30 [Information] Request finished in 5701.9495ms 200 application/json; charset=utf-8 +2017-07-17 10:36:54.445 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 10:36:54.447 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" completed keep alive response. +2017-07-17 10:36:54.455 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 10:36:54.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 10:36:54.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:54.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:54.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:54.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:55.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6233.5588ms +2017-07-17 10:36:55.015 +05:30 [Information] Request finished in 6279.8243ms 200 application/json; charset=utf-8 +2017-07-17 10:36:55.015 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:36:55.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 10:36:55.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:55.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:55.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:55.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1171.7254ms +2017-07-17 10:36:55.695 +05:30 [Information] Request finished in 1256.1168ms 200 application/json; charset=utf-8 +2017-07-17 10:36:55.696 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" completed keep alive response. +2017-07-17 10:36:55.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 10:36:55.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 10:36:55.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 10:36:56.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:56.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:36:56.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:56.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:56.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7617.8832ms +2017-07-17 10:36:56.660 +05:30 [Information] Request finished in 7884.6169ms 200 application/json; charset=utf-8 +2017-07-17 10:36:56.660 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" completed keep alive response. +2017-07-17 10:36:57.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 10:36:58.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:36:58.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:36:58.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:36:58.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2287.7199ms +2017-07-17 10:36:58.021 +05:30 [Information] Request finished in 2294.6182ms 200 application/json; charset=utf-8 +2017-07-17 10:36:58.022 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" completed keep alive response. +2017-07-17 10:37:45.381 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 10:37:45.383 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 10:37:45.383 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 10:37:48.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:37:48.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:37:48.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:37:48.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:37:48.454 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3069.235ms +2017-07-17 10:37:48.458 +05:30 [Information] Request finished in 3081.8333ms 200 application/json; charset=utf-8 +2017-07-17 10:37:48.459 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" completed keep alive response. +2017-07-17 10:37:48.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 10:37:48.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 10:37:48.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 10:37:51.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 10:37:51.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:37:51.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:37:51.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:37:51.531 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3057.6335ms +2017-07-17 10:37:51.534 +05:30 [Information] Request finished in 3070.0183ms 200 application/json; charset=utf-8 +2017-07-17 10:37:51.535 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" completed keep alive response. +2017-07-17 10:37:51.551 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-17 10:37:51.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-17 10:37:51.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-17 10:37:54.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["20", "8d4c9f141836b74"]) - ModelState is Valid +2017-07-17 10:37:54.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-17 10:37:54.711 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-17 10:37:54.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3156.1958ms +2017-07-17 10:37:54.716 +05:30 [Information] Request finished in 3164.3877ms 200 +2017-07-17 10:37:54.717 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:38:04.201 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" received FIN. +2017-07-17 10:38:04.201 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" received FIN. +2017-07-17 10:38:04.204 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" received FIN. +2017-07-17 10:38:04.206 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" disconnecting. +2017-07-17 10:38:04.205 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" disconnecting. +2017-07-17 10:38:04.207 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" disconnecting. +2017-07-17 10:38:04.207 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" sending FIN. +2017-07-17 10:38:04.210 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" sending FIN. +2017-07-17 10:38:04.215 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" sending FIN. +2017-07-17 10:38:04.221 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" sent FIN with status "0". +2017-07-17 10:38:04.222 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" sent FIN with status "0". +2017-07-17 10:38:04.225 +05:30 [Debug] Connection id ""0HL6CQ6378OTD"" stopped. +2017-07-17 10:38:04.226 +05:30 [Debug] Connection id ""0HL6CQ6378OT9"" stopped. +2017-07-17 10:38:04.226 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" sent FIN with status "0". +2017-07-17 10:38:04.228 +05:30 [Debug] Connection id ""0HL6CQ6378OTA"" stopped. +2017-07-17 10:38:52.649 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" received FIN. +2017-07-17 10:38:52.649 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" received FIN. +2017-07-17 10:38:52.650 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" disconnecting. +2017-07-17 10:38:52.651 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" disconnecting. +2017-07-17 10:38:52.674 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" sending FIN. +2017-07-17 10:38:52.653 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" sending FIN. +2017-07-17 10:38:52.675 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" sent FIN with status "0". +2017-07-17 10:38:52.675 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" sent FIN with status "0". +2017-07-17 10:38:52.676 +05:30 [Debug] Connection id ""0HL6CQ6378OTE"" stopped. +2017-07-17 10:38:52.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 10:38:52.676 +05:30 [Debug] Connection id ""0HL6CQ6378OTB"" stopped. +2017-07-17 10:38:52.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 10:38:52.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 10:38:55.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 10:38:55.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:38:55.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:38:55.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:38:55.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3198.615ms +2017-07-17 10:38:55.884 +05:30 [Information] Request finished in 3209.2677ms 200 application/json; charset=utf-8 +2017-07-17 10:38:55.887 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:38:55.989 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 10:38:55.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 10:38:55.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 10:38:59.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:38:59.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:38:59.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:38:59.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:38:59.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3111.2523ms +2017-07-17 10:38:59.110 +05:30 [Information] Request finished in 3120.9326ms 200 application/json; charset=utf-8 +2017-07-17 10:38:59.111 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:38:59.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:38:59.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:38:59.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:39:02.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:02.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:02.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:02.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:02.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3130.1812ms +2017-07-17 10:39:02.269 +05:30 [Information] Request finished in 3153.5083ms 200 application/json; charset=utf-8 +2017-07-17 10:39:02.270 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:39:03.649 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" started. +2017-07-17 10:39:03.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 10:39:03.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 10:39:03.666 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 10:39:03.677 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 10:39:03.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 10:39:03.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 10:39:03.704 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" started. +2017-07-17 10:39:03.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 10:39:03.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 10:39:03.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 10:39:04.182 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" started. +2017-07-17 10:39:04.185 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" started. +2017-07-17 10:39:04.187 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" started. +2017-07-17 10:39:04.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 10:39:04.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 10:39:04.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 10:39:04.931 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" started. +2017-07-17 10:39:05.225 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 10:39:05.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 10:39:05.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 10:39:05.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:39:05.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:39:05.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:39:06.327 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 10:39:06.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 10:39:06.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 10:39:07.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 10:39:07.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:07.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:07.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:07.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:07.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:07.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1884.9116ms +2017-07-17 10:39:07.652 +05:30 [Information] Request finished in 1893.8639ms 200 application/json; charset=utf-8 +2017-07-17 10:39:07.653 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" completed keep alive response. +2017-07-17 10:39:07.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:07.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:07.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:07.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1389.0363ms +2017-07-17 10:39:07.723 +05:30 [Information] Request finished in 1401.4548ms 200 application/json; charset=utf-8 +2017-07-17 10:39:07.724 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" completed keep alive response. +2017-07-17 10:39:08.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:08.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:08.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:08.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:08.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:08.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:08.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:08.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4908.2486ms +2017-07-17 10:39:08.630 +05:30 [Information] Request finished in 4967.0753ms 200 application/json; charset=utf-8 +2017-07-17 10:39:08.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:08.647 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:39:08.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:08.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:08.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:08.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:08.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:08.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5008.9546ms +2017-07-17 10:39:08.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:08.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4978.4997ms +2017-07-17 10:39:08.712 +05:30 [Information] Request finished in 5039.3843ms 200 application/json; charset=utf-8 +2017-07-17 10:39:08.714 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" completed keep alive response. +2017-07-17 10:39:08.717 +05:30 [Information] Request finished in 5006.3885ms 200 application/json; charset=utf-8 +2017-07-17 10:39:08.719 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" completed keep alive response. +2017-07-17 10:39:08.726 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:39:08.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:39:08.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:39:09.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:09.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:09.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:09.826 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:09.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:09.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:09.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5638.274ms +2017-07-17 10:39:09.833 +05:30 [Information] Request finished in 5646.8095ms 200 application/json; charset=utf-8 +2017-07-17 10:39:09.834 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" completed keep alive response. +2017-07-17 10:39:11.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:11.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:11.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:11.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:11.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6029.9619ms +2017-07-17 10:39:11.264 +05:30 [Information] Request finished in 6039.434ms 200 application/json; charset=utf-8 +2017-07-17 10:39:11.265 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" completed keep alive response. +2017-07-17 10:39:11.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:11.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:11.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:11.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:11.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3150.7899ms +2017-07-17 10:39:11.883 +05:30 [Information] Request finished in 3156.9285ms 200 application/json; charset=utf-8 +2017-07-17 10:39:11.883 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" completed keep alive response. +2017-07-17 10:39:12.449 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 10:39:12.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 10:39:12.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 10:39:12.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 10:39:12.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 10:39:12.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 10:39:12.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 10:39:12.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 10:39:12.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 10:39:12.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 10:39:12.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 10:39:12.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 10:39:12.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 10:39:12.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 10:39:12.893 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 10:39:13.591 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 10:39:13.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 10:39:13.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 10:39:14.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:14.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:14.675 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:14.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:14.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:14.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2217.539ms +2017-07-17 10:39:14.682 +05:30 [Information] Request finished in 2236.25ms 200 application/json; charset=utf-8 +2017-07-17 10:39:14.682 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" completed keep alive response. +2017-07-17 10:39:15.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:15.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:15.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:15.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:15.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:15.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3308.3349ms +2017-07-17 10:39:15.764 +05:30 [Information] Request finished in 3318.5929ms 200 application/json; charset=utf-8 +2017-07-17 10:39:15.765 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" completed keep alive response. +2017-07-17 10:39:16.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:16.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:16.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 10:39:16.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:16.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:16.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:16.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:16.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3353.1497ms +2017-07-17 10:39:16.321 +05:30 [Information] Request finished in 3441.8132ms 200 application/json; charset=utf-8 +2017-07-17 10:39:16.351 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" completed keep alive response. +2017-07-17 10:39:16.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:16.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:16.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:16.406 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:16.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3513.8265ms +2017-07-17 10:39:16.410 +05:30 [Information] Request finished in 3548.3512ms 200 application/json; charset=utf-8 +2017-07-17 10:39:16.411 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" completed keep alive response. +2017-07-17 10:39:16.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 10:39:16.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:16.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:16.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:16.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3179.078ms +2017-07-17 10:39:16.782 +05:30 [Information] Request finished in 3203.2347ms 200 application/json; charset=utf-8 +2017-07-17 10:39:16.783 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" completed keep alive response. +2017-07-17 10:39:16.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 10:39:16.952 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 10:39:16.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 10:39:16.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 10:39:16.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4067.3168ms +2017-07-17 10:39:16.961 +05:30 [Information] Request finished in 4098.8851ms 200 application/json; charset=utf-8 +2017-07-17 10:39:16.962 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" completed keep alive response. +2017-07-17 10:42:04.200 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" received FIN. +2017-07-17 10:42:04.202 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" received FIN. +2017-07-17 10:42:04.202 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" disconnecting. +2017-07-17 10:42:04.203 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" received FIN. +2017-07-17 10:42:04.205 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" disconnecting. +2017-07-17 10:42:04.208 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" received FIN. +2017-07-17 10:42:04.210 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" sending FIN. +2017-07-17 10:42:04.210 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" sending FIN. +2017-07-17 10:42:04.210 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" sent FIN with status "0". +2017-07-17 10:42:04.211 +05:30 [Debug] Connection id ""0HL6CQ6378OTC"" stopped. +2017-07-17 10:42:04.211 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" sent FIN with status "0". +2017-07-17 10:42:04.212 +05:30 [Debug] Connection id ""0HL6CQ6378OTK"" stopped. +2017-07-17 10:42:04.209 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" disconnecting. +2017-07-17 10:42:04.215 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" disconnecting. +2017-07-17 10:42:04.200 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" received FIN. +2017-07-17 10:42:04.218 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" received FIN. +2017-07-17 10:42:04.218 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" received FIN. +2017-07-17 10:42:04.215 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" sending FIN. +2017-07-17 10:42:04.220 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" sending FIN. +2017-07-17 10:42:04.220 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" sent FIN with status "0". +2017-07-17 10:42:04.221 +05:30 [Debug] Connection id ""0HL6CQ6378OTI"" stopped. +2017-07-17 10:42:04.221 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" sent FIN with status "0". +2017-07-17 10:42:04.222 +05:30 [Debug] Connection id ""0HL6CQ6378OTG"" stopped. +2017-07-17 10:42:04.224 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" disconnecting. +2017-07-17 10:42:04.224 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" disconnecting. +2017-07-17 10:42:04.225 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" sending FIN. +2017-07-17 10:42:04.226 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" sending FIN. +2017-07-17 10:42:04.226 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" sent FIN with status "0". +2017-07-17 10:42:04.227 +05:30 [Debug] Connection id ""0HL6CQ6378OTJ"" stopped. +2017-07-17 10:42:04.229 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" sent FIN with status "0". +2017-07-17 10:42:04.229 +05:30 [Debug] Connection id ""0HL6CQ6378OTF"" stopped. +2017-07-17 10:42:04.224 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" disconnecting. +2017-07-17 10:42:04.230 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" sending FIN. +2017-07-17 10:42:04.230 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" sent FIN with status "0". +2017-07-17 10:42:04.230 +05:30 [Debug] Connection id ""0HL6CQ6378OTH"" stopped. +2017-07-17 11:52:36.539 +05:30 [Debug] Hosting starting +2017-07-17 11:52:36.769 +05:30 [Debug] Hosting started +2017-07-17 11:52:36.884 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" started. +2017-07-17 11:52:36.888 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" started. +2017-07-17 11:52:37.068 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-17 11:52:37.068 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-17 11:52:37.205 +05:30 [Information] Request finished in 100.6937ms 200 +2017-07-17 11:52:37.283 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:52:37.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-17 11:52:37.857 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8b4b002f-f4b1-40d9-8f4b-bec0e840450f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-17 11:52:37.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-17 11:52:38.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-17 11:52:38.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-17 11:52:38.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:52:38.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:38.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:38.454 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 505.7793ms +2017-07-17 11:52:38.529 +05:30 [Information] Request finished in 1500.7405ms 200 application/json; charset=utf-8 +2017-07-17 11:52:38.532 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:52:39.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 11:52:39.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 11:52:39.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 11:52:41.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:52:45.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:52:45.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:45.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:45.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6444.7649ms +2017-07-17 11:52:45.678 +05:30 [Information] Request finished in 6464.2033ms 200 application/json; charset=utf-8 +2017-07-17 11:52:45.679 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:52:46.040 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 11:52:46.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 11:52:46.042 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 11:52:49.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 11:52:49.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:52:49.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:49.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:49.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3365.9522ms +2017-07-17 11:52:49.414 +05:30 [Information] Request finished in 3374.3867ms 200 application/json; charset=utf-8 +2017-07-17 11:52:49.416 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:52:49.844 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 11:52:49.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 11:52:49.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 11:52:52.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:52:52.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:52:52.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:52.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:52.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.2409ms +2017-07-17 11:52:52.906 +05:30 [Information] Request finished in 3062.2005ms 200 application/json; charset=utf-8 +2017-07-17 11:52:52.906 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:52:52.911 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 11:52:52.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 11:52:52.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 11:52:55.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 11:52:55.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:52:55.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:55.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:55.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.6623ms +2017-07-17 11:52:55.985 +05:30 [Information] Request finished in 3074.4069ms 200 application/json; charset=utf-8 +2017-07-17 11:52:55.986 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:52:56.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 11:52:56.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 11:52:56.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 11:52:59.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:52:59.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:52:59.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:52:59.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:52:59.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3066.8414ms +2017-07-17 11:52:59.101 +05:30 [Information] Request finished in 3074.8753ms 200 application/json; charset=utf-8 +2017-07-17 11:52:59.101 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:52:59.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 11:52:59.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 11:52:59.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 11:53:02.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:02.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:02.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:02.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:02.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3290.9921ms +2017-07-17 11:53:02.446 +05:30 [Information] Request finished in 3310.9619ms 200 application/json; charset=utf-8 +2017-07-17 11:53:02.449 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:53:02.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 11:53:02.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 11:53:02.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 11:53:05.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:05.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:05.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:05.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:05.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3133.4253ms +2017-07-17 11:53:05.713 +05:30 [Information] Request finished in 3138.3969ms 200 application/json; charset=utf-8 +2017-07-17 11:53:05.713 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:53:14.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 11:53:14.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 11:53:14.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 11:53:14.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 11:53:14.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 11:53:14.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 11:53:15.464 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" started. +2017-07-17 11:53:15.466 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" started. +2017-07-17 11:53:15.467 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" started. +2017-07-17 11:53:15.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 11:53:15.490 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 11:53:15.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 11:53:15.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 11:53:15.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 11:53:15.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 11:53:15.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 11:53:15.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 11:53:15.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 11:53:16.493 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" started. +2017-07-17 11:53:16.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 11:53:16.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 11:53:16.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 11:53:18.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:18.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:18.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:18.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:53:18.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:18.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:18.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3954.2188ms +2017-07-17 11:53:18.682 +05:30 [Information] Request finished in 3983.5133ms 200 application/json; charset=utf-8 +2017-07-17 11:53:18.683 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:53:18.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:18.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:53:18.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:18.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:18.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4000.9024ms +2017-07-17 11:53:18.727 +05:30 [Information] Request finished in 4029.2693ms 200 application/json; charset=utf-8 +2017-07-17 11:53:18.727 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:53:19.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:19.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:19.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 11:53:19.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:19.429 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:53:19.429 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:19.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:19.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3903.6915ms +2017-07-17 11:53:19.462 +05:30 [Information] Request finished in 3961.195ms 200 application/json; charset=utf-8 +2017-07-17 11:53:19.465 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" completed keep alive response. +2017-07-17 11:53:19.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:53:19.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:19.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:19.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:19.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3171.5999ms +2017-07-17 11:53:19.729 +05:30 [Information] Request finished in 3201.1997ms 200 application/json; charset=utf-8 +2017-07-17 11:53:19.730 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" completed keep alive response. +2017-07-17 11:53:19.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 11:53:19.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 11:53:19.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 11:53:19.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:19.880 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:53:19.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:19.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:19.948 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4415.9763ms +2017-07-17 11:53:19.950 +05:30 [Information] Request finished in 4475.4264ms 200 application/json; charset=utf-8 +2017-07-17 11:53:19.951 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" completed keep alive response. +2017-07-17 11:53:21.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:21.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:53:21.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:21.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:21.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6053.9928ms +2017-07-17 11:53:21.573 +05:30 [Information] Request finished in 6086.3166ms 200 application/json; charset=utf-8 +2017-07-17 11:53:21.573 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" completed keep alive response. +2017-07-17 11:53:22.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 11:53:22.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:22.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:22.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:22.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3095.8664ms +2017-07-17 11:53:22.872 +05:30 [Information] Request finished in 3136.1314ms 200 application/json; charset=utf-8 +2017-07-17 11:53:22.872 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" completed keep alive response. +2017-07-17 11:53:22.904 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 11:53:22.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 11:53:22.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 11:53:25.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 11:53:25.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:53:25.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:53:25.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:53:25.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2286.1162ms +2017-07-17 11:53:25.198 +05:30 [Information] Request finished in 2294.2034ms 200 application/json; charset=utf-8 +2017-07-17 11:53:25.200 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" completed keep alive response. +2017-07-17 11:53:58.914 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 11:53:58.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 11:53:58.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 11:54:01.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:54:01.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:54:01.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:54:01.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:54:01.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.1022ms +2017-07-17 11:54:01.975 +05:30 [Information] Request finished in 3064.7921ms 200 application/json; charset=utf-8 +2017-07-17 11:54:01.976 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" completed keep alive response. +2017-07-17 11:54:01.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 11:54:01.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 11:54:01.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 11:54:05.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 11:54:05.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 11:54:05.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:54:05.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:54:05.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3065.247ms +2017-07-17 11:54:05.064 +05:30 [Information] Request finished in 3085.568ms 200 application/json; charset=utf-8 +2017-07-17 11:54:05.065 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" completed keep alive response. +2017-07-17 11:54:05.085 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-17 11:54:05.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-17 11:54:05.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-17 11:54:08.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["21", "8d4ccd1f3be5e72"]) - ModelState is Valid +2017-07-17 11:54:08.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-17 11:54:08.198 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-17 11:54:08.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3109.8919ms +2017-07-17 11:54:08.201 +05:30 [Information] Request finished in 3118.691ms 200 +2017-07-17 11:54:08.201 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" completed keep alive response. +2017-07-17 11:54:36.859 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" received FIN. +2017-07-17 11:54:36.859 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" received FIN. +2017-07-17 11:54:36.863 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" disconnecting. +2017-07-17 11:54:36.860 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" disconnecting. +2017-07-17 11:54:36.864 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" sending FIN. +2017-07-17 11:54:36.860 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" received FIN. +2017-07-17 11:54:36.868 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" sending FIN. +2017-07-17 11:54:36.869 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" disconnecting. +2017-07-17 11:54:36.873 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" sending FIN. +2017-07-17 11:54:36.880 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" sent FIN with status "0". +2017-07-17 11:54:36.880 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" sent FIN with status "0". +2017-07-17 11:54:36.882 +05:30 [Debug] Connection id ""0HL6CRGRU8VCD"" stopped. +2017-07-17 11:54:36.882 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" sent FIN with status "0". +2017-07-17 11:54:36.883 +05:30 [Debug] Connection id ""0HL6CRGRU8VCG"" stopped. +2017-07-17 11:54:36.882 +05:30 [Debug] Connection id ""0HL6CRGRU8VCC"" stopped. +2017-07-17 11:56:36.857 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" received FIN. +2017-07-17 11:56:36.857 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" received FIN. +2017-07-17 11:56:36.857 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" disconnecting. +2017-07-17 11:56:36.859 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" sending FIN. +2017-07-17 11:56:36.859 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" sent FIN with status "0". +2017-07-17 11:56:36.858 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" received FIN. +2017-07-17 11:56:36.861 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" disconnecting. +2017-07-17 11:56:36.864 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" disconnecting. +2017-07-17 11:56:36.864 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" sending FIN. +2017-07-17 11:56:36.865 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" sending FIN. +2017-07-17 11:56:36.860 +05:30 [Debug] Connection id ""0HL6CRGRU8VCE"" stopped. +2017-07-17 11:56:36.867 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" sent FIN with status "0". +2017-07-17 11:56:36.868 +05:30 [Debug] Connection id ""0HL6CRGRU8VCH"" stopped. +2017-07-17 11:56:36.870 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" sent FIN with status "0". +2017-07-17 11:56:36.870 +05:30 [Debug] Connection id ""0HL6CRGRU8VCF"" stopped. +2017-07-17 11:57:00.112 +05:30 [Debug] Hosting starting +2017-07-17 11:57:00.321 +05:30 [Debug] Hosting started +2017-07-17 11:57:00.581 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" started. +2017-07-17 11:57:00.581 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" started. +2017-07-17 11:57:00.850 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-17 11:57:00.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-17 11:57:00.939 +05:30 [Information] Request finished in 139.2374ms 200 +2017-07-17 11:57:01.035 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" completed keep alive response. +2017-07-17 11:57:01.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-17 11:57:01.822 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cac6f7bb-17a0-4298-8836-3604995ee861"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-17 11:57:01.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-17 11:57:02.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-17 11:57:02.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-17 11:57:02.095 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 11:57:02.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 11:57:02.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 11:57:02.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 430.1601ms +2017-07-17 11:57:02.427 +05:30 [Information] Request finished in 1645.475ms 200 application/json; charset=utf-8 +2017-07-17 11:57:02.429 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" completed keep alive response. +2017-07-17 11:59:00.554 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" received FIN. +2017-07-17 11:59:00.554 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" received FIN. +2017-07-17 11:59:00.557 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" disconnecting. +2017-07-17 11:59:00.563 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" disconnecting. +2017-07-17 11:59:00.565 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" sending FIN. +2017-07-17 11:59:00.571 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" sent FIN with status "0". +2017-07-17 11:59:00.579 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" sending FIN. +2017-07-17 11:59:00.583 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" sent FIN with status "0". +2017-07-17 11:59:00.584 +05:30 [Debug] Connection id ""0HL6CRJAH2ALM"" stopped. +2017-07-17 11:59:00.584 +05:30 [Debug] Connection id ""0HL6CRJAH2ALL"" stopped. +2017-07-17 13:34:41.270 +05:30 [Debug] Hosting starting +2017-07-17 13:34:42.951 +05:30 [Debug] Hosting started +2017-07-17 13:34:43.072 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" started. +2017-07-17 13:34:43.072 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" started. +2017-07-17 13:34:43.370 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-17 13:34:43.373 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-17 13:34:43.534 +05:30 [Information] Request finished in 200.4991ms 200 +2017-07-17 13:34:43.735 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" completed keep alive response. +2017-07-17 13:34:45.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-17 13:34:45.644 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"49fff348-9d4d-455d-908e-eb007431f225"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-17 13:34:46.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-17 13:34:46.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-17 13:34:46.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-17 13:34:46.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 13:34:46.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 13:34:46.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 13:34:47.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 951.5749ms +2017-07-17 13:34:47.206 +05:30 [Information] Request finished in 3920.1748ms 200 application/json; charset=utf-8 +2017-07-17 13:34:47.209 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" completed keep alive response. +2017-07-17 13:35:20.224 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 13:35:20.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 13:35:20.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 13:35:23.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ba21daa531c5"]) - ModelState is Valid +2017-07-17 13:35:29.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 13:35:29.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 13:35:29.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 13:35:29.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9513.2574ms +2017-07-17 13:35:29.762 +05:30 [Information] Request finished in 9532.4041ms 200 application/json; charset=utf-8 +2017-07-17 13:35:29.762 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" completed keep alive response. +2017-07-17 13:35:51.856 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 13:35:51.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 13:35:51.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 13:35:55.782 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" received FIN. +2017-07-17 13:35:55.783 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" disconnecting. +2017-07-17 13:35:55.784 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" sending FIN. +2017-07-17 13:35:55.984 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" sent FIN with status "0". +2017-07-17 13:35:55.990 +05:30 [Debug] Connection id ""0HL6CT9TM5TFO"" stopped. +2017-07-17 13:35:58.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ba21daa531c5"]) - ModelState is Valid +2017-07-17 13:35:58.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 13:35:58.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 13:35:58.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 13:35:58.901 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7037.384ms +2017-07-17 13:35:58.904 +05:30 [Information] Request finished in 7156.6881ms 200 application/json; charset=utf-8 +2017-07-17 13:35:58.905 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" completed keep alive response. +2017-07-17 13:37:39.311 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" received FIN. +2017-07-17 13:37:39.312 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" started. +2017-07-17 13:37:39.313 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" disconnecting. +2017-07-17 13:37:39.321 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" sending FIN. +2017-07-17 13:37:39.322 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" sent FIN with status "0". +2017-07-17 13:37:39.322 +05:30 [Debug] Connection id ""0HL6CT9TM5TFP"" stopped. +2017-07-17 13:37:39.350 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 13:37:39.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 13:37:39.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 13:37:42.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ba21daa531c5"]) - ModelState is Valid +2017-07-17 13:37:42.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 13:37:42.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 13:37:42.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 13:37:42.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.1093ms +2017-07-17 13:37:42.416 +05:30 [Information] Request finished in 3066.2918ms 200 application/json; charset=utf-8 +2017-07-17 13:37:42.417 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" completed keep alive response. +2017-07-17 13:38:27.473 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 13:38:27.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 13:38:27.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 13:38:30.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ba21daa531c5"]) - ModelState is Valid +2017-07-17 13:38:30.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 13:38:30.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 13:38:30.542 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 13:38:30.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3066.6742ms +2017-07-17 13:38:30.555 +05:30 [Information] Request finished in 3080.0081ms 200 application/json; charset=utf-8 +2017-07-17 13:38:30.555 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" completed keep alive response. +2017-07-17 13:40:43.024 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" received FIN. +2017-07-17 13:40:43.027 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" disconnecting. +2017-07-17 13:40:43.028 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" sending FIN. +2017-07-17 13:40:43.029 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" sent FIN with status "0". +2017-07-17 13:40:43.030 +05:30 [Debug] Connection id ""0HL6CT9TM5TFQ"" stopped. +2017-07-17 17:32:16.200 +05:30 [Debug] Hosting starting +2017-07-17 17:32:16.722 +05:30 [Debug] Hosting started +2017-07-17 17:32:16.836 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" started. +2017-07-17 17:32:16.836 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" started. +2017-07-17 17:32:17.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-17 17:32:17.034 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-17 17:32:17.100 +05:30 [Information] Request finished in 87.39ms 200 +2017-07-17 17:32:17.163 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:32:18.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-17 17:32:18.588 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"91b9a14d-1c5a-4891-a74b-260d780fc4c9"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-17 17:32:18.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-17 17:32:18.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-17 17:32:18.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-17 17:32:18.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:32:18.929 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:32:18.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:32:19.233 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 432.9076ms +2017-07-17 17:32:19.356 +05:30 [Information] Request finished in 2358.1403ms 200 application/json; charset=utf-8 +2017-07-17 17:32:19.362 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:32:39.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 17:32:39.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 17:32:39.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 17:32:42.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:32:48.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:32:48.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:32:48.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:32:48.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9131.0404ms +2017-07-17 17:32:48.460 +05:30 [Information] Request finished in 9142.4385ms 200 application/json; charset=utf-8 +2017-07-17 17:32:48.461 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:32:49.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:32:49.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:32:49.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:32:52.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:32:52.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:32:52.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:32:52.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:32:52.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3372.8533ms +2017-07-17 17:32:52.398 +05:30 [Information] Request finished in 3384.5907ms 200 application/json; charset=utf-8 +2017-07-17 17:32:52.399 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:32:52.489 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:32:52.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:32:52.491 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:32:55.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:32:55.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:32:55.616 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:32:55.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:32:55.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3133.4132ms +2017-07-17 17:32:55.632 +05:30 [Information] Request finished in 3141.8088ms 200 application/json; charset=utf-8 +2017-07-17 17:32:55.633 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:33:01.489 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:33:01.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:33:01.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:33:01.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:33:01.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:33:01.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:33:01.590 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" started. +2017-07-17 17:33:01.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:33:01.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:33:01.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:33:02.743 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" started. +2017-07-17 17:33:02.771 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" started. +2017-07-17 17:33:02.778 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" started. +2017-07-17 17:33:02.795 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:33:02.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:33:02.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:33:03.809 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" started. +2017-07-17 17:33:04.790 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:33:04.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:33:04.793 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:33:05.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:33:05.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:33:05.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:33:06.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:33:06.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:33:06.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:33:07.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:07.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:07.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:08.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:08.184 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:08.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:08.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6620.6563ms +2017-07-17 17:33:08.276 +05:30 [Information] Request finished in 6656.0386ms 200 application/json; charset=utf-8 +2017-07-17 17:33:08.277 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" completed keep alive response. +2017-07-17 17:33:08.353 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:33:08.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:08.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:33:08.354 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:08.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:33:08.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:08.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:08.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6873.5199ms +2017-07-17 17:33:08.379 +05:30 [Information] Request finished in 6890.911ms 200 application/json; charset=utf-8 +2017-07-17 17:33:08.380 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:33:08.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:08.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:08.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:08.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:08.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6931.5759ms +2017-07-17 17:33:08.434 +05:30 [Information] Request finished in 6946.3687ms 200 application/json; charset=utf-8 +2017-07-17 17:33:08.434 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:33:09.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:09.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:09.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:09.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:09.973 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:09.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:10.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:10.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4210.1252ms +2017-07-17 17:33:10.124 +05:30 [Information] Request finished in 4322.1849ms 200 application/json; charset=utf-8 +2017-07-17 17:33:10.151 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" completed keep alive response. +2017-07-17 17:33:10.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:33:10.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:10.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:10.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:10.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:10.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:10.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:10.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:10.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4087.7697ms +2017-07-17 17:33:10.896 +05:30 [Information] Request finished in 4109.1442ms 200 application/json; charset=utf-8 +2017-07-17 17:33:10.897 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" completed keep alive response. +2017-07-17 17:33:11.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8208.3179ms +2017-07-17 17:33:11.018 +05:30 [Information] Request finished in 8255.8078ms 200 application/json; charset=utf-8 +2017-07-17 17:33:11.018 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" completed keep alive response. +2017-07-17 17:33:11.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:11.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:11.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:11.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:11.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3196.2263ms +2017-07-17 17:33:11.562 +05:30 [Information] Request finished in 3237.2875ms 200 application/json; charset=utf-8 +2017-07-17 17:33:11.563 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" completed keep alive response. +2017-07-17 17:33:12.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:12.353 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:12.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:12.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:12.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7565.2393ms +2017-07-17 17:33:12.363 +05:30 [Information] Request finished in 7578.8634ms 200 application/json; charset=utf-8 +2017-07-17 17:33:12.363 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" completed keep alive response. +2017-07-17 17:33:13.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:33:13.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:33:13.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:33:13.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:33:13.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:33:13.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:33:13.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:33:13.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:33:13.840 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:33:13.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:33:13.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:33:13.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:33:13.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:33:13.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:33:13.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:33:15.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:33:15.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:33:15.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:33:15.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:15.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:15.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:15.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:15.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:15.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2324.1014ms +2017-07-17 17:33:15.836 +05:30 [Information] Request finished in 2538.8792ms 200 application/json; charset=utf-8 +2017-07-17 17:33:15.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:33:16.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:16.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:16.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:16.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:16.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:16.645 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:16.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3228.7048ms +2017-07-17 17:33:16.675 +05:30 [Information] Request finished in 3380.3981ms 200 application/json; charset=utf-8 +2017-07-17 17:33:16.676 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:33:16.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:16.913 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:16.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:16.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:16.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3069.3599ms +2017-07-17 17:33:16.922 +05:30 [Information] Request finished in 3082.3352ms 200 application/json; charset=utf-8 +2017-07-17 17:33:16.923 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" completed keep alive response. +2017-07-17 17:33:16.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:17.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:17.054 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:17.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:17.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:17.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3208.3775ms +2017-07-17 17:33:17.060 +05:30 [Information] Request finished in 3223.3134ms 200 application/json; charset=utf-8 +2017-07-17 17:33:17.061 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" completed keep alive response. +2017-07-17 17:33:17.162 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:17.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:17.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:33:17.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:17.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:17.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3749.6696ms +2017-07-17 17:33:17.600 +05:30 [Information] Request finished in 3763.9135ms 200 application/json; charset=utf-8 +2017-07-17 17:33:17.602 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" completed keep alive response. +2017-07-17 17:33:18.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:33:18.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:18.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:18.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:18.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3357.9933ms +2017-07-17 17:33:18.600 +05:30 [Information] Request finished in 3369.7506ms 200 application/json; charset=utf-8 +2017-07-17 17:33:18.601 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" completed keep alive response. +2017-07-17 17:33:42.825 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:33:42.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:33:42.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:33:44.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:33:44.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:44.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:44.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:44.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2126.5723ms +2017-07-17 17:33:44.961 +05:30 [Information] Request finished in 2134.911ms 200 application/json; charset=utf-8 +2017-07-17 17:33:44.961 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" completed keep alive response. +2017-07-17 17:33:44.980 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:33:44.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:33:44.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:33:48.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:33:48.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:48.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:48.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:48.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3074.3035ms +2017-07-17 17:33:48.063 +05:30 [Information] Request finished in 3097.6985ms 200 application/json; charset=utf-8 +2017-07-17 17:33:48.063 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:33:48.079 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:33:48.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:33:48.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:33:51.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:33:51.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:51.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:51.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:51.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.4592ms +2017-07-17 17:33:51.136 +05:30 [Information] Request finished in 3060.0758ms 200 application/json; charset=utf-8 +2017-07-17 17:33:51.137 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:33:51.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:33:51.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:33:51.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:33:54.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:54.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:54.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:54.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:54.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3146.5947ms +2017-07-17 17:33:54.303 +05:30 [Information] Request finished in 3159.9302ms 200 application/json; charset=utf-8 +2017-07-17 17:33:54.305 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" completed keep alive response. +2017-07-17 17:33:54.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:33:54.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:33:54.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:33:57.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:33:57.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:33:57.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:33:57.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:33:57.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3142.7239ms +2017-07-17 17:33:57.472 +05:30 [Information] Request finished in 3163.0677ms 200 application/json; charset=utf-8 +2017-07-17 17:33:57.473 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" completed keep alive response. +2017-07-17 17:33:59.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:33:59.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:33:59.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:33:59.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:33:59.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:33:59.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:33:59.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:33:59.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:33:59.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:33:59.961 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:33:59.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:33:59.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:33:59.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:33:59.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:33:59.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:34:02.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:34:02.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:02.177 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:34:02.178 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:02.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:02.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3163.6123ms +2017-07-17 17:34:02.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:34:02.252 +05:30 [Information] Request finished in 3244.467ms 200 application/json; charset=utf-8 +2017-07-17 17:34:02.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:34:02.254 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" completed keep alive response. +2017-07-17 17:34:02.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:02.359 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:34:02.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:02.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:02.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3343.9798ms +2017-07-17 17:34:02.367 +05:30 [Information] Request finished in 3373.1463ms 200 application/json; charset=utf-8 +2017-07-17 17:34:02.368 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" completed keep alive response. +2017-07-17 17:34:03.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:34:03.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:03.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:34:03.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:03.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:03.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:03.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:34:03.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:34:03.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3300.0486ms +2017-07-17 17:34:03.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:03.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:03.430 +05:30 [Information] Request finished in 3515.0475ms 200 application/json; charset=utf-8 +2017-07-17 17:34:03.432 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" completed keep alive response. +2017-07-17 17:34:03.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3434.7699ms +2017-07-17 17:34:03.533 +05:30 [Information] Request finished in 3640.0463ms 200 application/json; charset=utf-8 +2017-07-17 17:34:03.535 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" completed keep alive response. +2017-07-17 17:34:03.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:03.657 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:34:03.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:03.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:03.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3702.7498ms +2017-07-17 17:34:03.664 +05:30 [Information] Request finished in 3771.4927ms 200 application/json; charset=utf-8 +2017-07-17 17:34:03.664 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" completed keep alive response. +2017-07-17 17:34:05.868 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:34:05.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:34:05.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:34:08.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:34:08.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:08.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:08.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:08.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3035.1787ms +2017-07-17 17:34:08.914 +05:30 [Information] Request finished in 3052.1834ms 200 application/json; charset=utf-8 +2017-07-17 17:34:08.915 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" completed keep alive response. +2017-07-17 17:34:08.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:34:08.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:34:08.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:34:11.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:34:11.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:11.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:11.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:11.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.7768ms +2017-07-17 17:34:11.982 +05:30 [Information] Request finished in 3063.6334ms 200 application/json; charset=utf-8 +2017-07-17 17:34:11.983 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" completed keep alive response. +2017-07-17 17:34:11.990 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:34:11.990 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:34:11.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:34:15.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:34:15.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:34:15.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:34:15.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:34:15.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3083.4049ms +2017-07-17 17:34:15.082 +05:30 [Information] Request finished in 3089.8915ms 200 application/json; charset=utf-8 +2017-07-17 17:34:15.083 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" completed keep alive response. +2017-07-17 17:35:29.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" received FIN. +2017-07-17 17:35:29.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" received FIN. +2017-07-17 17:35:29.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" disconnecting. +2017-07-17 17:35:29.834 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" received FIN. +2017-07-17 17:35:29.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" received FIN. +2017-07-17 17:35:29.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" disconnecting. +2017-07-17 17:35:29.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" disconnecting. +2017-07-17 17:35:29.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" received FIN. +2017-07-17 17:35:29.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" disconnecting. +2017-07-17 17:35:29.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" received FIN. +2017-07-17 17:35:29.855 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" started. +2017-07-17 17:35:29.855 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" disconnecting. +2017-07-17 17:35:29.861 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" disconnecting. +2017-07-17 17:35:29.862 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" sending FIN. +2017-07-17 17:35:29.866 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:35:29.861 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" received FIN. +2017-07-17 17:35:29.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:35:29.870 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" sending FIN. +2017-07-17 17:35:29.874 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" sending FIN. +2017-07-17 17:35:29.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:35:29.874 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" disconnecting. +2017-07-17 17:35:29.882 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" sending FIN. +2017-07-17 17:35:29.881 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" sending FIN. +2017-07-17 17:35:29.894 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" sending FIN. +2017-07-17 17:35:29.895 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" sending FIN. +2017-07-17 17:35:29.901 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" sent FIN with status "0". +2017-07-17 17:35:29.901 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" sent FIN with status "0". +2017-07-17 17:35:29.911 +05:30 [Debug] Connection id ""0HL6D1ELKKTFM"" stopped. +2017-07-17 17:35:29.911 +05:30 [Debug] Connection id ""0HL6D1ELKKTFN"" stopped. +2017-07-17 17:35:29.913 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" sent FIN with status "0". +2017-07-17 17:35:29.920 +05:30 [Debug] Connection id ""0HL6D1ELKKTFK"" stopped. +2017-07-17 17:35:29.917 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" sent FIN with status "0". +2017-07-17 17:35:29.923 +05:30 [Debug] Connection id ""0HL6D1ELKKTFI"" stopped. +2017-07-17 17:35:29.923 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" sent FIN with status "0". +2017-07-17 17:35:29.925 +05:30 [Debug] Connection id ""0HL6D1ELKKTFH"" stopped. +2017-07-17 17:35:29.924 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" sent FIN with status "0". +2017-07-17 17:35:29.926 +05:30 [Debug] Connection id ""0HL6D1ELKKTFL"" stopped. +2017-07-17 17:35:29.927 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" sent FIN with status "0". +2017-07-17 17:35:29.927 +05:30 [Debug] Connection id ""0HL6D1ELKKTFJ"" stopped. +2017-07-17 17:35:32.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:35:32.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:33.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:33.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:33.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3117.0134ms +2017-07-17 17:35:33.007 +05:30 [Information] Request finished in 3144.0766ms 200 application/json; charset=utf-8 +2017-07-17 17:35:33.008 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:33.010 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:35:33.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:35:33.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:35:36.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:35:36.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:36.052 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:36.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:36.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3040.7148ms +2017-07-17 17:35:36.058 +05:30 [Information] Request finished in 3047.8262ms 200 application/json; charset=utf-8 +2017-07-17 17:35:36.059 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:36.074 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:35:36.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:35:36.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:35:39.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:35:39.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:39.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:39.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:39.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3043.6375ms +2017-07-17 17:35:39.128 +05:30 [Information] Request finished in 3058.3092ms 200 application/json; charset=utf-8 +2017-07-17 17:35:39.129 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:39.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:35:39.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:35:39.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:35:42.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:42.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:42.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:42.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:42.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3163.6054ms +2017-07-17 17:35:42.304 +05:30 [Information] Request finished in 3171.7268ms 200 application/json; charset=utf-8 +2017-07-17 17:35:42.305 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:42.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:35:42.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:35:42.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:35:45.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:45.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:45.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:45.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:45.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3133.0752ms +2017-07-17 17:35:45.451 +05:30 [Information] Request finished in 3140.016ms 200 application/json; charset=utf-8 +2017-07-17 17:35:45.452 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:47.003 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" started. +2017-07-17 17:35:47.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:35:47.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:35:47.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:35:47.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:35:47.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:35:47.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:35:48.056 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" started. +2017-07-17 17:35:48.057 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" started. +2017-07-17 17:35:48.060 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" started. +2017-07-17 17:35:48.084 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:35:48.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:35:48.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:35:48.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:35:48.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:35:48.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:35:48.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:35:48.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:35:48.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:35:49.255 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" started. +2017-07-17 17:35:49.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:35:49.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:35:49.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:35:50.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:50.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:50.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:35:50.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:50.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:50.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:50.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3237.4593ms +2017-07-17 17:35:50.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:50.287 +05:30 [Information] Request finished in 3282.1841ms 200 application/json; charset=utf-8 +2017-07-17 17:35:50.288 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:50.287 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:35:50.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:50.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:50.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3296.5955ms +2017-07-17 17:35:50.320 +05:30 [Information] Request finished in 3314.0101ms 200 application/json; charset=utf-8 +2017-07-17 17:35:50.320 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" completed keep alive response. +2017-07-17 17:35:50.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:51.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:51.304 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:35:51.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:51.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:51.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3274.2633ms +2017-07-17 17:35:51.529 +05:30 [Information] Request finished in 3412.0364ms 200 application/json; charset=utf-8 +2017-07-17 17:35:51.537 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" completed keep alive response. +2017-07-17 17:35:51.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:53.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:35:53.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:53.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:53.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:53.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3418.283ms +2017-07-17 17:35:53.055 +05:30 [Information] Request finished in 3648.476ms 200 application/json; charset=utf-8 +2017-07-17 17:35:53.055 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" completed keep alive response. +2017-07-17 17:35:53.064 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:35:53.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:35:53.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:35:53.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:53.404 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:35:53.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:53.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:53.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5320.1544ms +2017-07-17 17:35:53.450 +05:30 [Information] Request finished in 5378.1438ms 200 application/json; charset=utf-8 +2017-07-17 17:35:53.451 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" completed keep alive response. +2017-07-17 17:35:55.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:35:55.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:55.674 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:35:55.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:55.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:55.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 7557.7819ms +2017-07-17 17:35:55.698 +05:30 [Information] Request finished in 7588.1976ms 200 application/json; charset=utf-8 +2017-07-17 17:35:55.699 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" completed keep alive response. +2017-07-17 17:35:56.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:35:56.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:56.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:56.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:56.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3067.1686ms +2017-07-17 17:35:56.142 +05:30 [Information] Request finished in 3080.7901ms 200 application/json; charset=utf-8 +2017-07-17 17:35:56.143 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" completed keep alive response. +2017-07-17 17:35:56.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:35:56.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:35:56.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:35:59.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:35:59.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:35:59.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:35:59.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:35:59.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3334.4685ms +2017-07-17 17:35:59.499 +05:30 [Information] Request finished in 3348.4704ms 200 application/json; charset=utf-8 +2017-07-17 17:35:59.500 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" completed keep alive response. +2017-07-17 17:37:59.175 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" received FIN. +2017-07-17 17:37:59.176 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" received FIN. +2017-07-17 17:37:59.176 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" received FIN. +2017-07-17 17:37:59.176 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" received FIN. +2017-07-17 17:37:59.178 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" received FIN. +2017-07-17 17:37:59.177 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" disconnecting. +2017-07-17 17:37:59.179 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" received FIN. +2017-07-17 17:37:59.176 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" disconnecting. +2017-07-17 17:37:59.186 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" disconnecting. +2017-07-17 17:37:59.186 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" disconnecting. +2017-07-17 17:37:59.186 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" disconnecting. +2017-07-17 17:37:59.188 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" disconnecting. +2017-07-17 17:37:59.188 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" sending FIN. +2017-07-17 17:37:59.187 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" started. +2017-07-17 17:37:59.200 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" sending FIN. +2017-07-17 17:37:59.200 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" sending FIN. +2017-07-17 17:37:59.201 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" sending FIN. +2017-07-17 17:37:59.201 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" sending FIN. +2017-07-17 17:37:59.200 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" sending FIN. +2017-07-17 17:37:59.202 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" sent FIN with status "0". +2017-07-17 17:37:59.202 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" sent FIN with status "0". +2017-07-17 17:37:59.203 +05:30 [Debug] Connection id ""0HL6D1ELKKTFO"" stopped. +2017-07-17 17:37:59.204 +05:30 [Debug] Connection id ""0HL6D1ELKKTFP"" stopped. +2017-07-17 17:37:59.206 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" sent FIN with status "0". +2017-07-17 17:37:59.207 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" sent FIN with status "0". +2017-07-17 17:37:59.208 +05:30 [Debug] Connection id ""0HL6D1ELKKTFQ"" stopped. +2017-07-17 17:37:59.208 +05:30 [Debug] Connection id ""0HL6D1ELKKTFR"" stopped. +2017-07-17 17:37:59.209 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" sent FIN with status "0". +2017-07-17 17:37:59.210 +05:30 [Debug] Connection id ""0HL6D1ELKKTFT"" stopped. +2017-07-17 17:37:59.209 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" sent FIN with status "0". +2017-07-17 17:37:59.211 +05:30 [Debug] Connection id ""0HL6D1ELKKTFS"" stopped. +2017-07-17 17:37:59.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:37:59.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:37:59.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:38:02.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:38:02.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:02.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:02.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:02.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3052.0341ms +2017-07-17 17:38:02.274 +05:30 [Information] Request finished in 3061.9291ms 200 application/json; charset=utf-8 +2017-07-17 17:38:02.275 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:02.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:38:02.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:38:02.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:38:05.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:38:05.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:05.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:05.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:05.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3078.4369ms +2017-07-17 17:38:05.373 +05:30 [Information] Request finished in 3089.437ms 200 application/json; charset=utf-8 +2017-07-17 17:38:05.374 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:05.406 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:38:05.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:38:05.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:38:08.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:38:08.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:08.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:08.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:08.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3037.663ms +2017-07-17 17:38:08.449 +05:30 [Information] Request finished in 3069.2199ms 200 application/json; charset=utf-8 +2017-07-17 17:38:08.450 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:08.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:38:08.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:38:08.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:38:11.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:11.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:11.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:11.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:11.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3135.6393ms +2017-07-17 17:38:11.605 +05:30 [Information] Request finished in 3149.8028ms 200 application/json; charset=utf-8 +2017-07-17 17:38:11.605 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:11.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:38:11.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:38:11.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:38:14.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:14.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:14.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:14.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:14.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.8369ms +2017-07-17 17:38:14.754 +05:30 [Information] Request finished in 3142.2057ms 200 application/json; charset=utf-8 +2017-07-17 17:38:14.755 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" started. +2017-07-17 17:38:16.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:38:16.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:38:16.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:38:16.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:38:16.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:38:16.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:38:17.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" started. +2017-07-17 17:38:17.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" started. +2017-07-17 17:38:17.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" started. +2017-07-17 17:38:17.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:38:17.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:38:17.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:38:17.880 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:38:17.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:38:17.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:38:17.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:38:17.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:38:17.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:38:20.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:20.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:20.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:20.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:38:20.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:20.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:20.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:20.146 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:38:20.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:20.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3285.6451ms +2017-07-17 17:38:20.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:20.154 +05:30 [Information] Request finished in 3302.2667ms 200 application/json; charset=utf-8 +2017-07-17 17:38:20.156 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" completed keep alive response. +2017-07-17 17:38:20.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3292.2208ms +2017-07-17 17:38:20.168 +05:30 [Information] Request finished in 3320.1627ms 200 application/json; charset=utf-8 +2017-07-17 17:38:20.169 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:21.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:21.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:21.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:38:21.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:21.774 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:38:21.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:21.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:21.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3932.0963ms +2017-07-17 17:38:21.875 +05:30 [Information] Request finished in 4015.0831ms 200 application/json; charset=utf-8 +2017-07-17 17:38:21.893 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" completed keep alive response. +2017-07-17 17:38:21.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:21.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:38:21.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:21.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:21.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4076.1008ms +2017-07-17 17:38:21.987 +05:30 [Information] Request finished in 4132.274ms 200 application/json; charset=utf-8 +2017-07-17 17:38:21.988 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" completed keep alive response. +2017-07-17 17:38:22.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:38:22.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:38:22.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:38:24.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:38:24.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:24.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:24.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:24.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1403.2375ms +2017-07-17 17:38:24.045 +05:30 [Information] Request finished in 1433.3612ms 200 application/json; charset=utf-8 +2017-07-17 17:38:24.046 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" completed keep alive response. +2017-07-17 17:38:24.133 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:38:24.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:38:24.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:38:24.410 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:24.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:38:24.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:24.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:24.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6505.4187ms +2017-07-17 17:38:24.422 +05:30 [Information] Request finished in 6593.0739ms 200 application/json; charset=utf-8 +2017-07-17 17:38:24.423 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" completed keep alive response. +2017-07-17 17:38:27.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:38:27.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:27.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:27.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:27.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3061.2136ms +2017-07-17 17:38:27.199 +05:30 [Information] Request finished in 3147.9216ms 200 application/json; charset=utf-8 +2017-07-17 17:38:27.199 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" completed keep alive response. +2017-07-17 17:38:27.210 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:38:27.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:38:27.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:38:30.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:38:30.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:38:30.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:38:30.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:38:30.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3088.791ms +2017-07-17 17:38:30.308 +05:30 [Information] Request finished in 3101.7319ms 200 application/json; charset=utf-8 +2017-07-17 17:38:30.309 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" completed keep alive response. +2017-07-17 17:39:43.737 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" received FIN. +2017-07-17 17:39:43.737 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" received FIN. +2017-07-17 17:39:43.743 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" received FIN. +2017-07-17 17:39:43.739 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" received FIN. +2017-07-17 17:39:43.740 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" disconnecting. +2017-07-17 17:39:43.745 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" disconnecting. +2017-07-17 17:39:43.753 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" received FIN. +2017-07-17 17:39:43.757 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" disconnecting. +2017-07-17 17:39:43.759 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" sending FIN. +2017-07-17 17:39:43.759 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" disconnecting. +2017-07-17 17:39:43.760 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" sent FIN with status "0". +2017-07-17 17:39:43.761 +05:30 [Debug] Connection id ""0HL6D1ELKKTG2"" stopped. +2017-07-17 17:39:43.757 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" sending FIN. +2017-07-17 17:39:43.761 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" sending FIN. +2017-07-17 17:39:43.760 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" disconnecting. +2017-07-17 17:39:43.762 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" sent FIN with status "0". +2017-07-17 17:39:43.762 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" sending FIN. +2017-07-17 17:39:43.765 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" sent FIN with status "0". +2017-07-17 17:39:43.764 +05:30 [Debug] Connection id ""0HL6D1ELKKTG0"" stopped. +2017-07-17 17:39:43.766 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" sending FIN. +2017-07-17 17:39:43.766 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" sent FIN with status "0". +2017-07-17 17:39:43.765 +05:30 [Debug] Connection id ""0HL6D1ELKKTG1"" stopped. +2017-07-17 17:39:43.766 +05:30 [Debug] Connection id ""0HL6D1ELKKTFU"" stopped. +2017-07-17 17:39:43.767 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" sent FIN with status "0". +2017-07-17 17:39:43.768 +05:30 [Debug] Connection id ""0HL6D1ELKKTFV"" stopped. +2017-07-17 17:39:43.768 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" started. +2017-07-17 17:39:43.772 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 17:39:43.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 17:39:43.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 17:39:46.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:39:46.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:39:46.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:39:46.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:39:46.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3171.5216ms +2017-07-17 17:39:46.955 +05:30 [Information] Request finished in 3184.0284ms 200 application/json; charset=utf-8 +2017-07-17 17:39:46.956 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" completed keep alive response. +2017-07-17 17:39:47.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:39:47.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:39:47.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:39:50.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:39:50.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:39:50.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:39:50.172 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:39:50.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3128.7716ms +2017-07-17 17:39:50.177 +05:30 [Information] Request finished in 3134.3773ms 200 application/json; charset=utf-8 +2017-07-17 17:39:50.178 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" completed keep alive response. +2017-07-17 17:39:50.182 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:39:50.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:39:50.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:39:53.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:39:53.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:39:53.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:39:53.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:39:53.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.4372ms +2017-07-17 17:39:53.297 +05:30 [Information] Request finished in 3113.7884ms 200 application/json; charset=utf-8 +2017-07-17 17:39:53.298 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" completed keep alive response. +2017-07-17 17:39:57.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:39:57.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:39:57.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:39:57.424 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" started. +2017-07-17 17:39:57.427 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" started. +2017-07-17 17:39:57.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:39:57.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:39:57.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:39:57.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:39:57.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:39:57.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:39:58.067 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" started. +2017-07-17 17:39:58.071 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" started. +2017-07-17 17:39:58.075 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" started. +2017-07-17 17:39:58.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:39:58.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:39:58.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:39:58.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:39:58.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:39:58.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:39:58.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:39:58.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:39:58.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:39:58.984 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" started. +2017-07-17 17:39:58.992 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:39:58.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:39:58.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:40:00.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:00.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:00.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:00.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:00.965 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:00.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:01.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:01.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:01.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:01.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:01.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3472.721ms +2017-07-17 17:40:01.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:01.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3520.1102ms +2017-07-17 17:40:01.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:01.099 +05:30 [Information] Request finished in 3538.0045ms 200 application/json; charset=utf-8 +2017-07-17 17:40:01.101 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" completed keep alive response. +2017-07-17 17:40:01.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:01.103 +05:30 [Information] Request finished in 3648.4105ms 200 application/json; charset=utf-8 +2017-07-17 17:40:01.107 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" completed keep alive response. +2017-07-17 17:40:01.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:01.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4031.1032ms +2017-07-17 17:40:01.133 +05:30 [Information] Request finished in 4047.6666ms 200 application/json; charset=utf-8 +2017-07-17 17:40:01.134 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" completed keep alive response. +2017-07-17 17:40:01.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:40:01.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:40:01.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:40:01.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:01.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:01.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:02.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:02.074 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:02.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:02.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:02.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4022.0614ms +2017-07-17 17:40:02.210 +05:30 [Information] Request finished in 4107.3766ms 200 application/json; charset=utf-8 +2017-07-17 17:40:02.211 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" completed keep alive response. +2017-07-17 17:40:02.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:40:02.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:02.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:02.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:02.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:02.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4136.9894ms +2017-07-17 17:40:02.269 +05:30 [Information] Request finished in 4170.2691ms 200 application/json; charset=utf-8 +2017-07-17 17:40:02.270 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" completed keep alive response. +2017-07-17 17:40:02.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:02.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:02.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:02.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3296.2873ms +2017-07-17 17:40:02.301 +05:30 [Information] Request finished in 3314.0237ms 200 application/json; charset=utf-8 +2017-07-17 17:40:02.303 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" completed keep alive response. +2017-07-17 17:40:02.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:02.778 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:02.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:02.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:02.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4687.2181ms +2017-07-17 17:40:02.794 +05:30 [Information] Request finished in 4721.5589ms 200 application/json; charset=utf-8 +2017-07-17 17:40:02.795 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" completed keep alive response. +2017-07-17 17:40:04.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:04.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:04.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:04.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:04.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3176.4158ms +2017-07-17 17:40:04.330 +05:30 [Information] Request finished in 3186.4631ms 200 application/json; charset=utf-8 +2017-07-17 17:40:04.331 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" completed keep alive response. +2017-07-17 17:40:05.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:40:05.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:40:05.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:40:05.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:40:05.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:40:05.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:40:05.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:40:05.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:40:05.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:40:05.741 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:40:05.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:40:05.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:40:05.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:40:05.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:40:05.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:40:06.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:06.496 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:40:06.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:40:06.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:40:06.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:06.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:06.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:06.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:06.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 1410.8892ms +2017-07-17 17:40:06.560 +05:30 [Information] Request finished in 1447.8432ms 200 application/json; charset=utf-8 +2017-07-17 17:40:06.561 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" completed keep alive response. +2017-07-17 17:40:07.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:07.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:07.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:07.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:07.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:07.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1383.0268ms +2017-07-17 17:40:07.121 +05:30 [Information] Request finished in 1411.3782ms 200 application/json; charset=utf-8 +2017-07-17 17:40:07.122 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" completed keep alive response. +2017-07-17 17:40:08.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:08.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:08.278 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:08.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:08.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:08.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3136.2256ms +2017-07-17 17:40:08.287 +05:30 [Information] Request finished in 3174.0897ms 200 application/json; charset=utf-8 +2017-07-17 17:40:08.288 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" completed keep alive response. +2017-07-17 17:40:08.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:08.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:40:09.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:09.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:09.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:09.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:09.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3341.2912ms +2017-07-17 17:40:09.091 +05:30 [Information] Request finished in 3379.7085ms 200 application/json; charset=utf-8 +2017-07-17 17:40:09.091 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" completed keep alive response. +2017-07-17 17:40:09.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:40:09.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:09.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:09.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:09.633 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3082.8172ms +2017-07-17 17:40:09.635 +05:30 [Information] Request finished in 3184.815ms 200 application/json; charset=utf-8 +2017-07-17 17:40:09.636 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" completed keep alive response. +2017-07-17 17:40:09.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:40:09.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:40:09.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:40:09.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:40:09.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3970.3236ms +2017-07-17 17:40:09.724 +05:30 [Information] Request finished in 4012.6038ms 200 application/json; charset=utf-8 +2017-07-17 17:40:09.725 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" completed keep alive response. +2017-07-17 17:42:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" received FIN. +2017-07-17 17:42:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" received FIN. +2017-07-17 17:42:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" received FIN. +2017-07-17 17:42:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" received FIN. +2017-07-17 17:42:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" received FIN. +2017-07-17 17:42:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" received FIN. +2017-07-17 17:42:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" disconnecting. +2017-07-17 17:42:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" sending FIN. +2017-07-17 17:42:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" sent FIN with status "0". +2017-07-17 17:42:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTG5"" stopped. +2017-07-17 17:42:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" disconnecting. +2017-07-17 17:42:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" sending FIN. +2017-07-17 17:42:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" disconnecting. +2017-07-17 17:42:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" disconnecting. +2017-07-17 17:42:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" received FIN. +2017-07-17 17:42:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" disconnecting. +2017-07-17 17:42:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" disconnecting. +2017-07-17 17:42:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" disconnecting. +2017-07-17 17:42:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" sending FIN. +2017-07-17 17:42:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" sent FIN with status "0". +2017-07-17 17:42:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" sending FIN. +2017-07-17 17:42:16.841 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" sending FIN. +2017-07-17 17:42:16.841 +05:30 [Debug] Connection id ""0HL6D1ELKKTG3"" stopped. +2017-07-17 17:42:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" sending FIN. +2017-07-17 17:42:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" sent FIN with status "0". +2017-07-17 17:42:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTG6"" stopped. +2017-07-17 17:42:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" sending FIN. +2017-07-17 17:42:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" sent FIN with status "0". +2017-07-17 17:42:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" sent FIN with status "0". +2017-07-17 17:42:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTG4"" stopped. +2017-07-17 17:42:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" sent FIN with status "0". +2017-07-17 17:42:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTG7"" stopped. +2017-07-17 17:42:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTG9"" stopped. +2017-07-17 17:42:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" sent FIN with status "0". +2017-07-17 17:42:16.850 +05:30 [Debug] Connection id ""0HL6D1ELKKTG8"" stopped. +2017-07-17 17:43:45.954 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" started. +2017-07-17 17:43:45.968 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:43:45.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:43:45.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:43:49.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:43:49.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:43:49.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:43:49.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:43:49.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.9293ms +2017-07-17 17:43:49.052 +05:30 [Information] Request finished in 3095.3336ms 200 application/json; charset=utf-8 +2017-07-17 17:43:49.052 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:43:49.057 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:43:49.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:43:49.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:43:52.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:43:52.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:43:52.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:43:52.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:43:52.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3052.6009ms +2017-07-17 17:43:52.117 +05:30 [Information] Request finished in 3062.4849ms 200 application/json; charset=utf-8 +2017-07-17 17:43:52.117 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:43:52.132 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:43:52.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:43:52.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:43:55.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:43:55.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:43:55.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:43:55.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:43:55.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3058.1582ms +2017-07-17 17:43:55.213 +05:30 [Information] Request finished in 3081.0146ms 200 application/json; charset=utf-8 +2017-07-17 17:43:55.213 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:43:55.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:43:55.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:43:55.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:43:58.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:43:58.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:43:58.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:43:58.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:43:58.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3156.4361ms +2017-07-17 17:43:58.393 +05:30 [Information] Request finished in 3173.2458ms 200 application/json; charset=utf-8 +2017-07-17 17:43:58.393 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:43:58.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:43:58.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:43:58.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:44:01.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:01.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:01.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:01.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:01.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3118.0344ms +2017-07-17 17:44:01.531 +05:30 [Information] Request finished in 3130.8067ms 200 application/json; charset=utf-8 +2017-07-17 17:44:01.531 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:44:03.151 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" started. +2017-07-17 17:44:03.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:44:03.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:44:03.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:44:03.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:44:03.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:44:03.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:44:03.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" started. +2017-07-17 17:44:03.852 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" started. +2017-07-17 17:44:03.860 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" started. +2017-07-17 17:44:03.879 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:44:03.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:44:03.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:44:03.886 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:44:03.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:44:03.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:44:03.894 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:44:03.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:44:03.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:44:05.237 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" started. +2017-07-17 17:44:05.253 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:44:05.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:44:05.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:44:06.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:06.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:06.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:44:06.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:06.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:06.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3174.6442ms +2017-07-17 17:44:06.337 +05:30 [Information] Request finished in 3183.9536ms 200 application/json; charset=utf-8 +2017-07-17 17:44:06.338 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:44:06.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:06.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:06.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:44:06.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:06.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:06.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3393.4472ms +2017-07-17 17:44:06.558 +05:30 [Information] Request finished in 3403.8308ms 200 application/json; charset=utf-8 +2017-07-17 17:44:06.558 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" completed keep alive response. +2017-07-17 17:44:07.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:07.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:07.425 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:44:07.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:07.466 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:44:07.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:07.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:07.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:07.512 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3623.3701ms +2017-07-17 17:44:07.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:44:07.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:07.514 +05:30 [Information] Request finished in 3660.4336ms 200 application/json; charset=utf-8 +2017-07-17 17:44:07.515 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" completed keep alive response. +2017-07-17 17:44:07.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:07.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3608.2723ms +2017-07-17 17:44:07.526 +05:30 [Information] Request finished in 3639.9712ms 200 application/json; charset=utf-8 +2017-07-17 17:44:07.527 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" completed keep alive response. +2017-07-17 17:44:08.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:44:08.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:08.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:08.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:08.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3141.1076ms +2017-07-17 17:44:08.404 +05:30 [Information] Request finished in 3149.868ms 200 application/json; charset=utf-8 +2017-07-17 17:44:08.405 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" completed keep alive response. +2017-07-17 17:44:08.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:44:08.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:44:08.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:44:09.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:09.171 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:44:09.171 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:09.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:09.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5292.188ms +2017-07-17 17:44:09.180 +05:30 [Information] Request finished in 5325.4313ms 200 application/json; charset=utf-8 +2017-07-17 17:44:09.181 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" completed keep alive response. +2017-07-17 17:44:11.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:44:11.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:11.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:11.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:11.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.0126ms +2017-07-17 17:44:11.498 +05:30 [Information] Request finished in 3083.6942ms 200 application/json; charset=utf-8 +2017-07-17 17:44:11.498 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" completed keep alive response. +2017-07-17 17:44:11.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:44:11.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:44:11.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:44:14.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:44:14.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:44:14.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:44:14.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:44:14.583 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3070.3879ms +2017-07-17 17:44:14.593 +05:30 [Information] Request finished in 3085.8677ms 200 application/json; charset=utf-8 +2017-07-17 17:44:14.593 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" completed keep alive response. +2017-07-17 17:46:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" received FIN. +2017-07-17 17:46:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" received FIN. +2017-07-17 17:46:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" received FIN. +2017-07-17 17:46:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" received FIN. +2017-07-17 17:46:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" disconnecting. +2017-07-17 17:46:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" sending FIN. +2017-07-17 17:46:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" disconnecting. +2017-07-17 17:46:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" sent FIN with status "0". +2017-07-17 17:46:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" received FIN. +2017-07-17 17:46:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" received FIN. +2017-07-17 17:46:16.829 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" disconnecting. +2017-07-17 17:46:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" disconnecting. +2017-07-17 17:46:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTGE"" stopped. +2017-07-17 17:46:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" disconnecting. +2017-07-17 17:46:16.838 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" disconnecting. +2017-07-17 17:46:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" sending FIN. +2017-07-17 17:46:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" sending FIN. +2017-07-17 17:46:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" sending FIN. +2017-07-17 17:46:16.841 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" sent FIN with status "0". +2017-07-17 17:46:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" sending FIN. +2017-07-17 17:46:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTGB"" stopped. +2017-07-17 17:46:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" sending FIN. +2017-07-17 17:46:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" sent FIN with status "0". +2017-07-17 17:46:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTGA"" stopped. +2017-07-17 17:46:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" sent FIN with status "0". +2017-07-17 17:46:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" sent FIN with status "0". +2017-07-17 17:46:16.851 +05:30 [Debug] Connection id ""0HL6D1ELKKTGC"" stopped. +2017-07-17 17:46:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTGD"" stopped. +2017-07-17 17:46:16.852 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" sent FIN with status "0". +2017-07-17 17:46:16.852 +05:30 [Debug] Connection id ""0HL6D1ELKKTGF"" stopped. +2017-07-17 17:48:59.932 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" started. +2017-07-17 17:48:59.934 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:48:59.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:48:59.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:49:02.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:49:03.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:03.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:03.013 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:03.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.6949ms +2017-07-17 17:49:03.018 +05:30 [Information] Request finished in 3084.5633ms 200 application/json; charset=utf-8 +2017-07-17 17:49:03.019 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:03.021 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:49:03.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:49:03.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:49:06.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:49:06.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:06.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:06.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:06.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3104.8942ms +2017-07-17 17:49:06.135 +05:30 [Information] Request finished in 3114.3446ms 200 application/json; charset=utf-8 +2017-07-17 17:49:06.136 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:06.145 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:49:06.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:49:06.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:49:09.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:49:09.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:09.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:09.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:09.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3119.6404ms +2017-07-17 17:49:09.271 +05:30 [Information] Request finished in 3127.502ms 200 application/json; charset=utf-8 +2017-07-17 17:49:09.272 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:09.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:49:09.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:49:09.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:49:12.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:12.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:12.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:12.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:12.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3157.9895ms +2017-07-17 17:49:12.447 +05:30 [Information] Request finished in 3169.3571ms 200 application/json; charset=utf-8 +2017-07-17 17:49:12.448 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:12.452 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:49:12.454 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:49:12.455 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:49:15.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:15.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:15.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:15.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:15.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3149.0566ms +2017-07-17 17:49:15.609 +05:30 [Information] Request finished in 3156.6701ms 200 application/json; charset=utf-8 +2017-07-17 17:49:15.609 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:17.455 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" started. +2017-07-17 17:49:17.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:49:17.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:49:17.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:49:17.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:49:17.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:49:17.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:49:18.367 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" started. +2017-07-17 17:49:18.370 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" started. +2017-07-17 17:49:18.378 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" started. +2017-07-17 17:49:18.386 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:49:18.387 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:49:18.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:49:18.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:49:18.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:49:18.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:49:18.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:49:18.411 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:49:18.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:49:19.698 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" started. +2017-07-17 17:49:19.773 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:49:19.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:49:19.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:49:20.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:20.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:20.652 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:49:20.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:20.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:20.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3175.0932ms +2017-07-17 17:49:20.660 +05:30 [Information] Request finished in 3201.9743ms 200 application/json; charset=utf-8 +2017-07-17 17:49:20.660 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:20.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:20.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:20.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:49:20.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:20.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:20.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3382.7487ms +2017-07-17 17:49:20.904 +05:30 [Information] Request finished in 3440.7126ms 200 application/json; charset=utf-8 +2017-07-17 17:49:20.905 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" completed keep alive response. +2017-07-17 17:49:21.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:21.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:21.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:49:21.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:21.786 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:49:21.804 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:21.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:21.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3476.0046ms +2017-07-17 17:49:21.966 +05:30 [Information] Request finished in 3542.8279ms 200 application/json; charset=utf-8 +2017-07-17 17:49:21.969 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" completed keep alive response. +2017-07-17 17:49:22.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:22.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:49:22.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:22.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:22.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3606.0058ms +2017-07-17 17:49:22.027 +05:30 [Information] Request finished in 3628.5781ms 200 application/json; charset=utf-8 +2017-07-17 17:49:22.028 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" completed keep alive response. +2017-07-17 17:49:23.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:49:23.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:23.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:23.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:23.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3292.3569ms +2017-07-17 17:49:23.073 +05:30 [Information] Request finished in 3360.4386ms 200 application/json; charset=utf-8 +2017-07-17 17:49:23.073 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" completed keep alive response. +2017-07-17 17:49:23.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:49:23.078 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:49:23.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:49:23.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:23.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:49:23.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:23.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:23.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5284.1589ms +2017-07-17 17:49:23.693 +05:30 [Information] Request finished in 5306.566ms 200 application/json; charset=utf-8 +2017-07-17 17:49:23.694 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" completed keep alive response. +2017-07-17 17:49:26.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:49:26.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:26.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:26.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:26.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3070.3786ms +2017-07-17 17:49:26.153 +05:30 [Information] Request finished in 3076.9374ms 200 application/json; charset=utf-8 +2017-07-17 17:49:26.154 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" completed keep alive response. +2017-07-17 17:49:26.159 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:49:26.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:49:26.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:49:29.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:49:29.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:49:29.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:49:29.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:49:29.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3089.38ms +2017-07-17 17:49:29.259 +05:30 [Information] Request finished in 3097.7283ms 200 application/json; charset=utf-8 +2017-07-17 17:49:29.260 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" completed keep alive response. +2017-07-17 17:50:41.465 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" received FIN. +2017-07-17 17:50:41.467 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" received FIN. +2017-07-17 17:50:41.468 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" received FIN. +2017-07-17 17:50:41.467 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" received FIN. +2017-07-17 17:50:41.470 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" disconnecting. +2017-07-17 17:50:41.469 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" started. +2017-07-17 17:50:41.472 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" sending FIN. +2017-07-17 17:50:41.473 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" sent FIN with status "0". +2017-07-17 17:50:41.470 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" received FIN. +2017-07-17 17:50:41.475 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" received FIN. +2017-07-17 17:50:41.477 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" disconnecting. +2017-07-17 17:50:41.479 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" disconnecting. +2017-07-17 17:50:41.474 +05:30 [Debug] Connection id ""0HL6D1ELKKTGI"" stopped. +2017-07-17 17:50:41.484 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" disconnecting. +2017-07-17 17:50:41.484 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" disconnecting. +2017-07-17 17:50:41.486 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" sending FIN. +2017-07-17 17:50:41.489 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" sending FIN. +2017-07-17 17:50:41.487 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" sending FIN. +2017-07-17 17:50:41.489 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" sent FIN with status "0". +2017-07-17 17:50:41.489 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" sending FIN. +2017-07-17 17:50:41.491 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" sent FIN with status "0". +2017-07-17 17:50:41.491 +05:30 [Debug] Connection id ""0HL6D1ELKKTGG"" stopped. +2017-07-17 17:50:41.480 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" disconnecting. +2017-07-17 17:50:41.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 17:50:41.492 +05:30 [Debug] Connection id ""0HL6D1ELKKTGH"" stopped. +2017-07-17 17:50:41.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 17:50:41.501 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" sent FIN with status "0". +2017-07-17 17:50:41.507 +05:30 [Debug] Connection id ""0HL6D1ELKKTGK"" stopped. +2017-07-17 17:50:41.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 17:50:41.505 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" sent FIN with status "0". +2017-07-17 17:50:41.510 +05:30 [Debug] Connection id ""0HL6D1ELKKTGJ"" stopped. +2017-07-17 17:50:41.511 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" sending FIN. +2017-07-17 17:50:41.511 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" sent FIN with status "0". +2017-07-17 17:50:41.511 +05:30 [Debug] Connection id ""0HL6D1ELKKTGL"" stopped. +2017-07-17 17:50:43.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:50:43.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:50:43.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:50:43.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:50:43.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2266.2633ms +2017-07-17 17:50:43.778 +05:30 [Information] Request finished in 2292.0056ms 200 application/json; charset=utf-8 +2017-07-17 17:50:43.778 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" completed keep alive response. +2017-07-17 17:50:43.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:50:43.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:50:43.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:50:46.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:50:46.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:50:46.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:50:46.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:50:46.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3135.1722ms +2017-07-17 17:50:46.978 +05:30 [Information] Request finished in 3142.5087ms 200 application/json; charset=utf-8 +2017-07-17 17:50:46.979 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" completed keep alive response. +2017-07-17 17:50:46.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:50:46.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:50:46.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:50:50.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:50:50.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:50:50.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:50:50.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:50:50.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3126.7961ms +2017-07-17 17:50:50.120 +05:30 [Information] Request finished in 3135.833ms 200 application/json; charset=utf-8 +2017-07-17 17:50:50.120 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" completed keep alive response. +2017-07-17 17:50:58.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:50:58.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:50:58.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:50:59.048 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" started. +2017-07-17 17:50:59.063 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" started. +2017-07-17 17:50:59.086 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:50:59.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:50:59.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:50:59.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:50:59.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:50:59.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:50:59.658 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" started. +2017-07-17 17:50:59.662 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" started. +2017-07-17 17:50:59.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:50:59.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:50:59.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:50:59.708 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" started. +2017-07-17 17:50:59.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:50:59.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:50:59.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:50:59.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:50:59.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:50:59.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:51:00.799 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" started. +2017-07-17 17:51:00.803 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:51:00.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:51:00.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:51:02.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:02.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:02.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:02.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:02.233 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3292.8432ms +2017-07-17 17:51:02.236 +05:30 [Information] Request finished in 3304.087ms 200 application/json; charset=utf-8 +2017-07-17 17:51:02.237 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" completed keep alive response. +2017-07-17 17:51:02.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:51:02.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:51:02.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:51:02.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:02.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:02.377 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:02.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:02.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:02.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:02.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3292.8816ms +2017-07-17 17:51:02.385 +05:30 [Information] Request finished in 3320.0428ms 200 application/json; charset=utf-8 +2017-07-17 17:51:02.385 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" completed keep alive response. +2017-07-17 17:51:02.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:02.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:02.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:02.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:02.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3242.3121ms +2017-07-17 17:51:02.399 +05:30 [Information] Request finished in 3333.8845ms 200 application/json; charset=utf-8 +2017-07-17 17:51:02.400 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" completed keep alive response. +2017-07-17 17:51:02.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:02.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:02.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:03.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:03.059 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:03.060 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:03.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:03.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3412.3843ms +2017-07-17 17:51:03.179 +05:30 [Information] Request finished in 3482.2935ms 200 application/json; charset=utf-8 +2017-07-17 17:51:03.180 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" completed keep alive response. +2017-07-17 17:51:03.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:03.258 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:03.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:03.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:03.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3522.8386ms +2017-07-17 17:51:03.265 +05:30 [Information] Request finished in 3542.8785ms 200 application/json; charset=utf-8 +2017-07-17 17:51:03.265 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" completed keep alive response. +2017-07-17 17:51:03.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:03.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:03.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:03.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:51:03.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:03.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4160.8151ms +2017-07-17 17:51:03.890 +05:30 [Information] Request finished in 4181.4639ms 200 application/json; charset=utf-8 +2017-07-17 17:51:03.891 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" completed keep alive response. +2017-07-17 17:51:03.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:03.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:03.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:03.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3129.4745ms +2017-07-17 17:51:03.943 +05:30 [Information] Request finished in 3141.3403ms 200 application/json; charset=utf-8 +2017-07-17 17:51:03.943 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" completed keep alive response. +2017-07-17 17:51:05.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:05.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:05.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:05.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:05.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3157.4783ms +2017-07-17 17:51:05.418 +05:30 [Information] Request finished in 3177.7983ms 200 application/json; charset=utf-8 +2017-07-17 17:51:05.418 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" completed keep alive response. +2017-07-17 17:51:06.214 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:51:06.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:51:06.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:51:06.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:51:06.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:51:06.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:51:06.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:51:06.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:51:06.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:51:06.719 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:51:06.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:51:06.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:51:06.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:51:06.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:51:06.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:51:07.428 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:51:07.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:51:07.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:51:07.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:07.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:07.450 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:07.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:07.453 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:07.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1232.0155ms +2017-07-17 17:51:07.462 +05:30 [Information] Request finished in 1247.5284ms 200 application/json; charset=utf-8 +2017-07-17 17:51:07.463 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" completed keep alive response. +2017-07-17 17:51:09.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:09.357 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:09.361 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:09.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:09.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:09.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3139.6949ms +2017-07-17 17:51:09.371 +05:30 [Information] Request finished in 3156.1901ms 200 application/json; charset=utf-8 +2017-07-17 17:51:09.371 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" completed keep alive response. +2017-07-17 17:51:09.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:51:09.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:09.582 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:09.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:09.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2150.8966ms +2017-07-17 17:51:09.588 +05:30 [Information] Request finished in 2187.0103ms 200 application/json; charset=utf-8 +2017-07-17 17:51:09.589 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" completed keep alive response. +2017-07-17 17:51:09.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:09.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:09.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:09.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:09.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:09.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:09.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3161.5792ms +2017-07-17 17:51:09.920 +05:30 [Information] Request finished in 3216.9873ms 200 application/json; charset=utf-8 +2017-07-17 17:51:09.921 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" completed keep alive response. +2017-07-17 17:51:10.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:10.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:10.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:10.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:10.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3397.3131ms +2017-07-17 17:51:10.131 +05:30 [Information] Request finished in 3428.465ms 200 application/json; charset=utf-8 +2017-07-17 17:51:10.132 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" completed keep alive response. +2017-07-17 17:51:13.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:51:14.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:51:14.730 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:51:14.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:51:14.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:51:14.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8018.7693ms +2017-07-17 17:51:14.741 +05:30 [Information] Request finished in 8038.4053ms 200 application/json; charset=utf-8 +2017-07-17 17:51:14.742 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" completed keep alive response. +2017-07-17 17:52:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" received FIN. +2017-07-17 17:52:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" received FIN. +2017-07-17 17:52:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" received FIN. +2017-07-17 17:52:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" received FIN. +2017-07-17 17:52:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" received FIN. +2017-07-17 17:52:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" received FIN. +2017-07-17 17:52:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" received FIN. +2017-07-17 17:52:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" disconnecting. +2017-07-17 17:52:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" sending FIN. +2017-07-17 17:52:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" sent FIN with status "0". +2017-07-17 17:52:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTGM"" stopped. +2017-07-17 17:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" disconnecting. +2017-07-17 17:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" disconnecting. +2017-07-17 17:52:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" disconnecting. +2017-07-17 17:52:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" disconnecting. +2017-07-17 17:52:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" disconnecting. +2017-07-17 17:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" sending FIN. +2017-07-17 17:52:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" sending FIN. +2017-07-17 17:52:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" sending FIN. +2017-07-17 17:52:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" sending FIN. +2017-07-17 17:52:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" sending FIN. +2017-07-17 17:52:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" sent FIN with status "0". +2017-07-17 17:52:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTGR"" stopped. +2017-07-17 17:52:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" disconnecting. +2017-07-17 17:52:16.829 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" sent FIN with status "0". +2017-07-17 17:52:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTGP"" stopped. +2017-07-17 17:52:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" sent FIN with status "0". +2017-07-17 17:52:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTGN"" stopped. +2017-07-17 17:52:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" sent FIN with status "0". +2017-07-17 17:52:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTGS"" stopped. +2017-07-17 17:52:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" sent FIN with status "0". +2017-07-17 17:52:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTGO"" stopped. +2017-07-17 17:52:16.838 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" sending FIN. +2017-07-17 17:52:16.838 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" sent FIN with status "0". +2017-07-17 17:52:16.839 +05:30 [Debug] Connection id ""0HL6D1ELKKTGQ"" stopped. +2017-07-17 17:57:45.438 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" started. +2017-07-17 17:57:45.440 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:57:45.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:57:45.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:57:48.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:57:48.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:57:48.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:57:48.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:57:48.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3085.5254ms +2017-07-17 17:57:48.532 +05:30 [Information] Request finished in 3091.7889ms 200 application/json; charset=utf-8 +2017-07-17 17:57:48.532 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:57:48.553 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:57:48.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:57:48.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:57:51.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:57:51.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:57:51.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:57:51.626 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:57:51.628 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3070.136ms +2017-07-17 17:57:51.630 +05:30 [Information] Request finished in 3095.2677ms 200 application/json; charset=utf-8 +2017-07-17 17:57:51.631 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:57:51.644 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 17:57:51.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 17:57:51.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 17:57:54.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:57:54.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:57:54.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:57:54.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:57:54.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3037.1151ms +2017-07-17 17:57:54.688 +05:30 [Information] Request finished in 3047.9454ms 200 application/json; charset=utf-8 +2017-07-17 17:57:54.689 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:57:54.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 17:57:54.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 17:57:54.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 17:57:57.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:57:57.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:57:57.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:57:57.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:57:57.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3161.6206ms +2017-07-17 17:57:57.868 +05:30 [Information] Request finished in 3172.3757ms 200 application/json; charset=utf-8 +2017-07-17 17:57:57.868 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:57:57.878 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:57:57.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:57:57.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:58:00.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:00.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:00.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:00.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:00.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3112.2817ms +2017-07-17 17:58:01.000 +05:30 [Information] Request finished in 3123.4109ms 200 application/json; charset=utf-8 +2017-07-17 17:58:01.001 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:58:02.713 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" started. +2017-07-17 17:58:02.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 17:58:02.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 17:58:02.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 17:58:02.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 17:58:02.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 17:58:02.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 17:58:03.548 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" started. +2017-07-17 17:58:03.548 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" started. +2017-07-17 17:58:03.556 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" started. +2017-07-17 17:58:03.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 17:58:03.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 17:58:03.580 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 17:58:03.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 17:58:03.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 17:58:03.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 17:58:03.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 17:58:03.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 17:58:03.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 17:58:05.214 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" started. +2017-07-17 17:58:05.264 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 17:58:05.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 17:58:05.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 17:58:05.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:05.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:05.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:05.614 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:58:05.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:05.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:05.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2755.8216ms +2017-07-17 17:58:05.627 +05:30 [Information] Request finished in 2907.3572ms 200 application/json; charset=utf-8 +2017-07-17 17:58:05.633 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" completed keep alive response. +2017-07-17 17:58:06.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:06.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:06.157 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:58:06.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:06.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:06.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:06.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3472.8193ms +2017-07-17 17:58:06.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:06.328 +05:30 [Information] Request finished in 3585.7566ms 200 application/json; charset=utf-8 +2017-07-17 17:58:06.334 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 17:58:06.334 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:58:06.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:06.376 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:06.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2753.0793ms +2017-07-17 17:58:06.389 +05:30 [Information] Request finished in 2813.9292ms 200 application/json; charset=utf-8 +2017-07-17 17:58:06.391 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" completed keep alive response. +2017-07-17 17:58:06.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 17:58:07.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:07.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:07.352 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:58:07.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 17:58:07.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:07.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:07.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:07.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:07.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3729.1983ms +2017-07-17 17:58:07.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3773.2778ms +2017-07-17 17:58:07.445 +05:30 [Information] Request finished in 3844.5481ms 200 application/json; charset=utf-8 +2017-07-17 17:58:07.446 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" completed keep alive response. +2017-07-17 17:58:07.478 +05:30 [Information] Request finished in 3822.9707ms 200 application/json; charset=utf-8 +2017-07-17 17:58:07.486 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" completed keep alive response. +2017-07-17 17:58:08.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 17:58:08.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:08.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:08.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:08.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3223.1935ms +2017-07-17 17:58:08.493 +05:30 [Information] Request finished in 3261.3588ms 200 application/json; charset=utf-8 +2017-07-17 17:58:08.493 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" completed keep alive response. +2017-07-17 17:58:08.496 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 17:58:08.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 17:58:08.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 17:58:11.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 17:58:11.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:11.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:11.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:11.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3098.2596ms +2017-07-17 17:58:11.601 +05:30 [Information] Request finished in 3105.4438ms 200 application/json; charset=utf-8 +2017-07-17 17:58:11.602 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" completed keep alive response. +2017-07-17 17:58:11.610 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 17:58:11.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 17:58:11.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 17:58:14.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 17:58:14.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 17:58:14.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 17:58:14.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 17:58:14.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3109.3551ms +2017-07-17 17:58:14.740 +05:30 [Information] Request finished in 3117.5024ms 200 application/json; charset=utf-8 +2017-07-17 17:58:14.742 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" completed keep alive response. +2017-07-17 18:00:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" received FIN. +2017-07-17 18:00:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" received FIN. +2017-07-17 18:00:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" disconnecting. +2017-07-17 18:00:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" disconnecting. +2017-07-17 18:00:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" received FIN. +2017-07-17 18:00:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" received FIN. +2017-07-17 18:00:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" received FIN. +2017-07-17 18:00:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" disconnecting. +2017-07-17 18:00:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" received FIN. +2017-07-17 18:00:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" sending FIN. +2017-07-17 18:00:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" disconnecting. +2017-07-17 18:00:16.826 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" sent FIN with status "0". +2017-07-17 18:00:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" disconnecting. +2017-07-17 18:00:16.829 +05:30 [Debug] Connection id ""0HL6D1ELKKTH0"" stopped. +2017-07-17 18:00:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" sending FIN. +2017-07-17 18:00:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" sending FIN. +2017-07-17 18:00:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" sending FIN. +2017-07-17 18:00:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" disconnecting. +2017-07-17 18:00:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" sent FIN with status "0". +2017-07-17 18:00:16.839 +05:30 [Debug] Connection id ""0HL6D1ELKKTH1"" stopped. +2017-07-17 18:00:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" sending FIN. +2017-07-17 18:00:16.841 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" sent FIN with status "0". +2017-07-17 18:00:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTGT"" stopped. +2017-07-17 18:00:16.838 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" sending FIN. +2017-07-17 18:00:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" sent FIN with status "0". +2017-07-17 18:00:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTH2"" stopped. +2017-07-17 18:00:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" sent FIN with status "0". +2017-07-17 18:00:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTGU"" stopped. +2017-07-17 18:00:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" sent FIN with status "0". +2017-07-17 18:00:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTGV"" stopped. +2017-07-17 18:36:33.229 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" started. +2017-07-17 18:36:33.231 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:36:33.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:36:33.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:36:36.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:36:36.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:36.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:36.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:36.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3089.4916ms +2017-07-17 18:36:36.331 +05:30 [Information] Request finished in 3099.0429ms 200 application/json; charset=utf-8 +2017-07-17 18:36:36.333 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:36.342 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:36:36.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:36:36.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:36:39.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:36:39.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:39.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:39.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:39.406 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.2334ms +2017-07-17 18:36:39.410 +05:30 [Information] Request finished in 3068.521ms 200 application/json; charset=utf-8 +2017-07-17 18:36:39.411 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:39.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:36:39.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:36:39.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:36:42.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:36:42.726 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:42.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:42.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:42.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3219.5975ms +2017-07-17 18:36:42.732 +05:30 [Information] Request finished in 3225.8474ms 200 application/json; charset=utf-8 +2017-07-17 18:36:42.732 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:42.735 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:36:42.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:36:42.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:36:45.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:36:45.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:45.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:45.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:45.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3038.5907ms +2017-07-17 18:36:45.789 +05:30 [Information] Request finished in 3054.1493ms 200 application/json; charset=utf-8 +2017-07-17 18:36:45.790 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:45.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:36:45.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:36:45.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:36:48.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:36:48.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:48.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:48.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:48.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3071.6324ms +2017-07-17 18:36:48.926 +05:30 [Information] Request finished in 3084.5014ms 200 application/json; charset=utf-8 +2017-07-17 18:36:48.927 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:48.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:36:48.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:36:48.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:36:51.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:36:52.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:52.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:52.065 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:52.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3095.5094ms +2017-07-17 18:36:52.084 +05:30 [Information] Request finished in 3111.7845ms 200 application/json; charset=utf-8 +2017-07-17 18:36:52.091 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:52.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:36:52.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:36:52.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:36:55.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:36:55.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:55.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:55.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:55.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.4562ms +2017-07-17 18:36:55.216 +05:30 [Information] Request finished in 3118.2618ms 200 application/json; charset=utf-8 +2017-07-17 18:36:55.217 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:36:57.323 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" started. +2017-07-17 18:36:57.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:36:57.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:36:57.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:36:57.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:36:57.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:36:57.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:36:57.981 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" started. +2017-07-17 18:36:57.982 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" started. +2017-07-17 18:36:57.991 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" started. +2017-07-17 18:36:58.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:36:58.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:36:58.015 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:36:58.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:36:58.023 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:36:58.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:36:58.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:36:58.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:36:58.060 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:36:58.990 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" started. +2017-07-17 18:36:59.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:36:59.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:36:59.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:36:59.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:36:59.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:36:59.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:36:59.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:36:59.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:36:59.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1825.1954ms +2017-07-17 18:36:59.969 +05:30 [Information] Request finished in 1966.654ms 200 application/json; charset=utf-8 +2017-07-17 18:36:59.985 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:37:00.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:00.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:00.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:00.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:00.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:00.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:01.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3576.7545ms +2017-07-17 18:37:01.590 +05:30 [Information] Request finished in 4115.0359ms 200 application/json; charset=utf-8 +2017-07-17 18:37:01.607 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:37:02.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:02.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:02.287 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:02.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:02.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:02.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5146.2041ms +2017-07-17 18:37:02.616 +05:30 [Information] Request finished in 5250.321ms 200 application/json; charset=utf-8 +2017-07-17 18:37:02.621 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:37:03.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:03.109 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:03.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:03.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:37:03.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:03.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:03.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:03.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5060.4979ms +2017-07-17 18:37:03.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:03.159 +05:30 [Information] Request finished in 5158.9141ms 200 application/json; charset=utf-8 +2017-07-17 18:37:03.160 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" completed keep alive response. +2017-07-17 18:37:03.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4087.2449ms +2017-07-17 18:37:03.343 +05:30 [Information] Request finished in 4321.2238ms 200 application/json; charset=utf-8 +2017-07-17 18:37:03.344 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:37:03.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:37:03.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:37:03.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:37:06.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:06.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:37:06.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:06.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:06.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:06.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3486.2422ms +2017-07-17 18:37:06.939 +05:30 [Information] Request finished in 3559.0311ms 200 application/json; charset=utf-8 +2017-07-17 18:37:06.940 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:37:06.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:37:06.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:37:06.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:37:08.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:08.687 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:08.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:08.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:08.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 10654.4515ms +2017-07-17 18:37:08.744 +05:30 [Information] Request finished in 10750.9472ms 200 application/json; charset=utf-8 +2017-07-17 18:37:08.744 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" completed keep alive response. +2017-07-17 18:37:10.231 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:37:10.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:10.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:10.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:10.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3288.6184ms +2017-07-17 18:37:10.280 +05:30 [Information] Request finished in 3295.0388ms 200 application/json; charset=utf-8 +2017-07-17 18:37:10.281 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:37:12.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:37:12.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:37:12.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:37:15.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:37:15.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:15.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:15.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:15.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3117.5361ms +2017-07-17 18:37:15.851 +05:30 [Information] Request finished in 3124.3889ms 200 application/json; charset=utf-8 +2017-07-17 18:37:15.851 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:37:15.854 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:37:15.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:37:15.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:37:18.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:37:18.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:18.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:18.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:18.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3034.5758ms +2017-07-17 18:37:18.895 +05:30 [Information] Request finished in 3041.0486ms 200 application/json; charset=utf-8 +2017-07-17 18:37:18.895 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" completed keep alive response. +2017-07-17 18:37:18.904 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:37:18.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:37:18.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:37:21.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:37:21.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:21.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:21.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:21.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3075.1934ms +2017-07-17 18:37:21.988 +05:30 [Information] Request finished in 3085.0073ms 200 application/json; charset=utf-8 +2017-07-17 18:37:21.988 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:37:21.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:37:21.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:37:21.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:37:25.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:25.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:25.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:25.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:25.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3121.0494ms +2017-07-17 18:37:25.123 +05:30 [Information] Request finished in 3129.3665ms 200 application/json; charset=utf-8 +2017-07-17 18:37:25.124 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:37:25.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:37:25.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:37:25.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:37:28.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:28.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:28.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:28.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:28.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3139.786ms +2017-07-17 18:37:28.276 +05:30 [Information] Request finished in 3146.5388ms 200 application/json; charset=utf-8 +2017-07-17 18:37:28.277 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" completed keep alive response. +2017-07-17 18:37:29.530 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:37:29.531 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:37:29.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:37:29.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:37:29.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:37:29.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:37:30.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:37:30.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:37:30.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:37:30.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:37:30.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:37:30.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:37:30.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:37:30.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:37:30.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:37:30.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:37:30.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:37:30.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:37:32.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:32.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:32.335 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:32.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:32.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:32.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2225.8315ms +2017-07-17 18:37:32.345 +05:30 [Information] Request finished in 2241.0772ms 200 application/json; charset=utf-8 +2017-07-17 18:37:32.345 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:37:32.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:32.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:32.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:32.738 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:32.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:32.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:32.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3223.9321ms +2017-07-17 18:37:32.774 +05:30 [Information] Request finished in 3243.8698ms 200 application/json; charset=utf-8 +2017-07-17 18:37:32.778 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:37:32.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:32.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:32.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:32.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:32.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3322.5255ms +2017-07-17 18:37:32.865 +05:30 [Information] Request finished in 3335.7984ms 200 application/json; charset=utf-8 +2017-07-17 18:37:32.866 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:37:33.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:33.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:37:33.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:33.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:33.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:33.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:33.609 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3489.8065ms +2017-07-17 18:37:33.612 +05:30 [Information] Request finished in 3509.7084ms 200 application/json; charset=utf-8 +2017-07-17 18:37:33.613 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" completed keep alive response. +2017-07-17 18:37:33.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:37:33.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:33.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:33.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:33.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3135.9131ms +2017-07-17 18:37:33.952 +05:30 [Information] Request finished in 3193.6973ms 200 application/json; charset=utf-8 +2017-07-17 18:37:33.952 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" completed keep alive response. +2017-07-17 18:37:33.978 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:37:33.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:37:33.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:37:34.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:34.231 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:37:34.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:34.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:34.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4103.2935ms +2017-07-17 18:37:34.239 +05:30 [Information] Request finished in 4135.1043ms 200 application/json; charset=utf-8 +2017-07-17 18:37:34.240 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:37:37.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:37:37.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:37.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:37.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:37.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3067.5106ms +2017-07-17 18:37:37.050 +05:30 [Information] Request finished in 3092.8893ms 200 application/json; charset=utf-8 +2017-07-17 18:37:37.050 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:37:37.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:37:37.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:37:37.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:37:40.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:37:40.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:40.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:40.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:40.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3104.4821ms +2017-07-17 18:37:40.166 +05:30 [Information] Request finished in 3110.8902ms 200 application/json; charset=utf-8 +2017-07-17 18:37:40.167 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:37:53.519 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:37:53.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:37:53.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:37:55.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:37:55.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:55.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:55.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:55.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2091.4757ms +2017-07-17 18:37:55.615 +05:30 [Information] Request finished in 2097.426ms 200 application/json; charset=utf-8 +2017-07-17 18:37:55.616 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:37:55.618 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:37:55.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:37:55.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:37:58.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:37:58.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:37:58.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:37:58.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:37:58.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3046.3182ms +2017-07-17 18:37:58.670 +05:30 [Information] Request finished in 3051.9722ms 200 application/json; charset=utf-8 +2017-07-17 18:37:58.670 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" completed keep alive response. +2017-07-17 18:37:58.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:37:58.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:37:58.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:38:01.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:38:01.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:01.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:01.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:01.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.1508ms +2017-07-17 18:38:01.736 +05:30 [Information] Request finished in 3057.5626ms 200 application/json; charset=utf-8 +2017-07-17 18:38:01.737 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" completed keep alive response. +2017-07-17 18:38:01.746 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:38:01.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:38:01.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:38:04.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:04.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:04.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:04.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:04.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3108.2976ms +2017-07-17 18:38:04.863 +05:30 [Information] Request finished in 3117.9407ms 200 application/json; charset=utf-8 +2017-07-17 18:38:04.864 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:38:04.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:38:04.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:38:04.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:38:07.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:07.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:07.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:07.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:07.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3105.5885ms +2017-07-17 18:38:07.986 +05:30 [Information] Request finished in 3115.1703ms 200 application/json; charset=utf-8 +2017-07-17 18:38:07.986 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:38:09.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:38:09.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:38:09.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:38:09.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:38:09.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:38:09.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:38:09.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:38:09.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:38:09.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:38:09.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:38:09.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:38:09.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:38:10.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:38:10.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:38:10.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:38:11.325 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:38:11.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:38:11.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:38:13.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:13.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:13.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:13.489 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:38:13.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:13.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:13.494 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:38:13.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:13.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:13.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:13.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4059.1027ms +2017-07-17 18:38:13.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4055.9268ms +2017-07-17 18:38:13.510 +05:30 [Information] Request finished in 4075.6238ms 200 application/json; charset=utf-8 +2017-07-17 18:38:13.511 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:38:13.523 +05:30 [Information] Request finished in 4077.2073ms 200 application/json; charset=utf-8 +2017-07-17 18:38:13.525 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:38:14.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:14.441 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:14.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:38:14.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:14.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:38:14.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:38:14.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:14.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:14.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:14.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:14.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4677.3532ms +2017-07-17 18:38:14.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:14.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3267.9991ms +2017-07-17 18:38:14.599 +05:30 [Information] Request finished in 4740.4219ms 200 application/json; charset=utf-8 +2017-07-17 18:38:14.616 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" completed keep alive response. +2017-07-17 18:38:14.636 +05:30 [Information] Request finished in 3308.4614ms 200 application/json; charset=utf-8 +2017-07-17 18:38:14.650 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" completed keep alive response. +2017-07-17 18:38:14.672 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:38:14.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:38:14.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:38:14.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:14.762 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:38:14.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:14.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:14.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3978.2666ms +2017-07-17 18:38:14.769 +05:30 [Information] Request finished in 3984.8757ms 200 application/json; charset=utf-8 +2017-07-17 18:38:14.770 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" completed keep alive response. +2017-07-17 18:38:15.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:15.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:38:15.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:15.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:15.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5429.8449ms +2017-07-17 18:38:15.297 +05:30 [Information] Request finished in 5439.9885ms 200 application/json; charset=utf-8 +2017-07-17 18:38:15.297 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" completed keep alive response. +2017-07-17 18:38:15.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:38:15.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:15.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:15.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:15.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1161.1734ms +2017-07-17 18:38:15.897 +05:30 [Information] Request finished in 1228.0056ms 200 application/json; charset=utf-8 +2017-07-17 18:38:15.897 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" completed keep alive response. +2017-07-17 18:38:15.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:38:15.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:38:15.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:38:18.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:38:18.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:38:18.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:38:18.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:38:18.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3080.2385ms +2017-07-17 18:38:18.997 +05:30 [Information] Request finished in 3089.3979ms 200 application/json; charset=utf-8 +2017-07-17 18:38:18.998 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" completed keep alive response. +2017-07-17 18:40:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" received FIN. +2017-07-17 18:40:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" received FIN. +2017-07-17 18:40:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" received FIN. +2017-07-17 18:40:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" received FIN. +2017-07-17 18:40:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" received FIN. +2017-07-17 18:40:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" disconnecting. +2017-07-17 18:40:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" received FIN. +2017-07-17 18:40:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" sending FIN. +2017-07-17 18:40:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" sent FIN with status "0". +2017-07-17 18:40:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTH8"" stopped. +2017-07-17 18:40:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" disconnecting. +2017-07-17 18:40:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" sending FIN. +2017-07-17 18:40:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" disconnecting. +2017-07-17 18:40:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" disconnecting. +2017-07-17 18:40:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" disconnecting. +2017-07-17 18:40:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" sending FIN. +2017-07-17 18:40:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" sent FIN with status "0". +2017-07-17 18:40:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" sent FIN with status "0". +2017-07-17 18:40:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" disconnecting. +2017-07-17 18:40:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTH5"" stopped. +2017-07-17 18:40:16.850 +05:30 [Debug] Connection id ""0HL6D1ELKKTH7"" stopped. +2017-07-17 18:40:16.851 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" sending FIN. +2017-07-17 18:40:16.852 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" sending FIN. +2017-07-17 18:40:16.852 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" sent FIN with status "0". +2017-07-17 18:40:16.853 +05:30 [Debug] Connection id ""0HL6D1ELKKTH4"" stopped. +2017-07-17 18:40:16.853 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" sending FIN. +2017-07-17 18:40:16.854 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" sent FIN with status "0". +2017-07-17 18:40:16.854 +05:30 [Debug] Connection id ""0HL6D1ELKKTH3"" stopped. +2017-07-17 18:40:16.855 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" sent FIN with status "0". +2017-07-17 18:40:16.855 +05:30 [Debug] Connection id ""0HL6D1ELKKTH6"" stopped. +2017-07-17 18:44:13.655 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" started. +2017-07-17 18:44:13.657 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:44:13.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:44:13.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:44:16.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:44:16.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:16.832 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:16.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:16.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3173.0899ms +2017-07-17 18:44:16.838 +05:30 [Information] Request finished in 3180.1049ms 200 application/json; charset=utf-8 +2017-07-17 18:44:16.838 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:16.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:44:16.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:44:16.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:44:19.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:44:19.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:19.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:19.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:19.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3089.4499ms +2017-07-17 18:44:19.935 +05:30 [Information] Request finished in 3095.0284ms 200 application/json; charset=utf-8 +2017-07-17 18:44:19.936 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:19.946 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:44:19.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:44:19.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:44:23.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:44:23.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:23.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:23.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:23.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3058.4704ms +2017-07-17 18:44:23.013 +05:30 [Information] Request finished in 3067.5596ms 200 application/json; charset=utf-8 +2017-07-17 18:44:23.013 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:23.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:44:23.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:44:23.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:44:26.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:26.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:26.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:26.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:26.135 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3108.4559ms +2017-07-17 18:44:26.137 +05:30 [Information] Request finished in 3116.9597ms 200 application/json; charset=utf-8 +2017-07-17 18:44:26.137 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:26.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:44:26.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:44:26.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:44:29.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:29.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:29.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:29.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:29.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.8995ms +2017-07-17 18:44:29.263 +05:30 [Information] Request finished in 3119.9201ms 200 application/json; charset=utf-8 +2017-07-17 18:44:29.263 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:31.372 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" started. +2017-07-17 18:44:31.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:44:31.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:44:31.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:44:31.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:44:31.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:44:31.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:44:31.980 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" started. +2017-07-17 18:44:31.986 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" started. +2017-07-17 18:44:31.991 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" started. +2017-07-17 18:44:32.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:44:32.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:44:32.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:44:32.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:44:32.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:44:32.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:44:32.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:44:32.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:44:32.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:44:32.752 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" started. +2017-07-17 18:44:32.754 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:44:32.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:44:32.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:44:34.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:34.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:34.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:34.772 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:44:34.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:34.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:34.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3374.8355ms +2017-07-17 18:44:34.785 +05:30 [Information] Request finished in 3408.8598ms 200 application/json; charset=utf-8 +2017-07-17 18:44:34.786 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" completed keep alive response. +2017-07-17 18:44:34.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:34.849 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:44:34.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:34.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:34.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3443.2433ms +2017-07-17 18:44:34.855 +05:30 [Information] Request finished in 3473.4805ms 200 application/json; charset=utf-8 +2017-07-17 18:44:34.855 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:44:35.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:35.124 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:35.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:35.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:44:35.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:35.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:44:35.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:35.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3224.0841ms +2017-07-17 18:44:35.251 +05:30 [Information] Request finished in 3255.4956ms 200 application/json; charset=utf-8 +2017-07-17 18:44:35.252 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" completed keep alive response. +2017-07-17 18:44:35.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:35.450 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:44:35.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:35.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:35.454 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3426.9838ms +2017-07-17 18:44:35.456 +05:30 [Information] Request finished in 3465.1571ms 200 application/json; charset=utf-8 +2017-07-17 18:44:35.457 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" completed keep alive response. +2017-07-17 18:44:35.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:44:35.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:35.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:35.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:35.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3136.4696ms +2017-07-17 18:44:35.902 +05:30 [Information] Request finished in 3148.5447ms 200 application/json; charset=utf-8 +2017-07-17 18:44:35.902 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" completed keep alive response. +2017-07-17 18:44:35.906 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:44:35.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:44:35.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:44:36.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:36.979 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:44:36.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:36.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:36.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4958.029ms +2017-07-17 18:44:36.985 +05:30 [Information] Request finished in 4984.8737ms 200 application/json; charset=utf-8 +2017-07-17 18:44:36.986 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" completed keep alive response. +2017-07-17 18:44:38.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:44:38.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:38.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:38.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:38.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3036.5189ms +2017-07-17 18:44:38.957 +05:30 [Information] Request finished in 3052.1685ms 200 application/json; charset=utf-8 +2017-07-17 18:44:38.957 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" completed keep alive response. +2017-07-17 18:44:38.965 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:44:38.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:44:38.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:44:42.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:44:42.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:44:42.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:44:42.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:44:42.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3105.4408ms +2017-07-17 18:44:42.100 +05:30 [Information] Request finished in 3134.4501ms 200 application/json; charset=utf-8 +2017-07-17 18:44:42.101 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" completed keep alive response. +2017-07-17 18:46:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" received FIN. +2017-07-17 18:46:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" received FIN. +2017-07-17 18:46:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" received FIN. +2017-07-17 18:46:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" received FIN. +2017-07-17 18:46:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" disconnecting. +2017-07-17 18:46:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" received FIN. +2017-07-17 18:46:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" disconnecting. +2017-07-17 18:46:16.826 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" sending FIN. +2017-07-17 18:46:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" sent FIN with status "0". +2017-07-17 18:46:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTHD"" stopped. +2017-07-17 18:46:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" received FIN. +2017-07-17 18:46:16.826 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" disconnecting. +2017-07-17 18:46:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" sending FIN. +2017-07-17 18:46:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" disconnecting. +2017-07-17 18:46:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" disconnecting. +2017-07-17 18:46:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" sending FIN. +2017-07-17 18:46:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" disconnecting. +2017-07-17 18:46:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" sending FIN. +2017-07-17 18:46:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" sending FIN. +2017-07-17 18:46:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" sent FIN with status "0". +2017-07-17 18:46:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" sending FIN. +2017-07-17 18:46:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTH9"" stopped. +2017-07-17 18:46:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" sent FIN with status "0". +2017-07-17 18:46:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTHA"" stopped. +2017-07-17 18:46:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" sent FIN with status "0". +2017-07-17 18:46:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTHB"" stopped. +2017-07-17 18:46:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" sent FIN with status "0". +2017-07-17 18:46:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTHE"" stopped. +2017-07-17 18:46:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" sent FIN with status "0". +2017-07-17 18:46:16.850 +05:30 [Debug] Connection id ""0HL6D1ELKKTHC"" stopped. +2017-07-17 18:47:56.875 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" started. +2017-07-17 18:47:56.881 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:47:56.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:47:56.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:47:59.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:47:59.986 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:47:59.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:47:59.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:47:59.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.5152ms +2017-07-17 18:47:59.994 +05:30 [Information] Request finished in 3114.8058ms 200 application/json; charset=utf-8 +2017-07-17 18:47:59.994 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:47:59.998 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:48:00.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:48:00.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:48:03.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:48:03.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:03.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:03.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:03.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3157.0774ms +2017-07-17 18:48:03.183 +05:30 [Information] Request finished in 3184.5584ms 200 application/json; charset=utf-8 +2017-07-17 18:48:03.184 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:03.195 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:48:03.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:48:03.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:48:06.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:48:06.243 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:06.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:06.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:06.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.6721ms +2017-07-17 18:48:06.249 +05:30 [Information] Request finished in 3058.0473ms 200 application/json; charset=utf-8 +2017-07-17 18:48:06.250 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:06.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:48:06.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:48:06.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:48:09.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:09.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:09.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:09.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:09.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3155.6018ms +2017-07-17 18:48:09.432 +05:30 [Information] Request finished in 3174.5853ms 200 application/json; charset=utf-8 +2017-07-17 18:48:09.432 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:09.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:48:09.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:48:09.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:48:12.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:12.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:12.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:12.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:12.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3195.4092ms +2017-07-17 18:48:12.716 +05:30 [Information] Request finished in 3276.099ms 200 application/json; charset=utf-8 +2017-07-17 18:48:12.717 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:14.470 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" started. +2017-07-17 18:48:14.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:48:14.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:48:14.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:48:14.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:48:14.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:48:14.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:48:15.207 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" started. +2017-07-17 18:48:15.207 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" started. +2017-07-17 18:48:15.212 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" started. +2017-07-17 18:48:15.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:48:15.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:48:15.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:48:15.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:48:15.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:48:15.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:48:15.260 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:48:15.261 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:48:15.262 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:48:16.970 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" started. +2017-07-17 18:48:17.398 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:48:17.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:48:17.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:48:17.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:18.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:18.196 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:48:18.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:18.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:18.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2992.7939ms +2017-07-17 18:48:18.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:18.441 +05:30 [Information] Request finished in 3085.3165ms 200 application/json; charset=utf-8 +2017-07-17 18:48:18.441 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" completed keep alive response. +2017-07-17 18:48:19.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:19.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:19.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:19.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:48:19.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:19.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:48:19.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:19.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:19.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:48:19.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4771.746ms +2017-07-17 18:48:19.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:19.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:19.403 +05:30 [Information] Request finished in 4879.7411ms 200 application/json; charset=utf-8 +2017-07-17 18:48:19.404 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:19.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4828.234ms +2017-07-17 18:48:19.843 +05:30 [Information] Request finished in 5350.2162ms 200 application/json; charset=utf-8 +2017-07-17 18:48:19.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" completed keep alive response. +2017-07-17 18:48:19.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:19.984 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:48:19.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:19.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:19.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4736.3633ms +2017-07-17 18:48:19.993 +05:30 [Information] Request finished in 4776.8163ms 200 application/json; charset=utf-8 +2017-07-17 18:48:19.993 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" completed keep alive response. +2017-07-17 18:48:20.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:20.354 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:48:20.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:20.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:20.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5116.6383ms +2017-07-17 18:48:20.361 +05:30 [Information] Request finished in 5149.4105ms 200 application/json; charset=utf-8 +2017-07-17 18:48:20.362 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" completed keep alive response. +2017-07-17 18:48:21.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:48:21.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:21.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:21.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:21.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3591.4709ms +2017-07-17 18:48:21.032 +05:30 [Information] Request finished in 3980.9267ms 200 application/json; charset=utf-8 +2017-07-17 18:48:21.032 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" completed keep alive response. +2017-07-17 18:48:21.037 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:48:21.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:48:21.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:48:24.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:48:24.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:24.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:24.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:24.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3164.9773ms +2017-07-17 18:48:24.211 +05:30 [Information] Request finished in 3174.8435ms 200 application/json; charset=utf-8 +2017-07-17 18:48:24.212 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" completed keep alive response. +2017-07-17 18:48:24.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:48:24.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:48:24.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:48:27.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:48:27.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:27.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:27.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:27.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3092.349ms +2017-07-17 18:48:27.327 +05:30 [Information] Request finished in 3106.5198ms 200 application/json; charset=utf-8 +2017-07-17 18:48:27.328 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:48:54.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 18:48:54.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 18:48:54.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 18:48:58.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:48:58.196 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:48:58.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:48:58.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:48:58.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3209.767ms +2017-07-17 18:48:58.202 +05:30 [Information] Request finished in 3257.87ms 200 application/json; charset=utf-8 +2017-07-17 18:48:58.202 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" completed keep alive response. +2017-07-17 18:48:58.258 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:48:58.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:48:58.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:49:01.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:01.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:01.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:01.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:01.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3107.664ms +2017-07-17 18:49:01.373 +05:30 [Information] Request finished in 3115.4471ms 200 application/json; charset=utf-8 +2017-07-17 18:49:01.374 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" completed keep alive response. +2017-07-17 18:49:01.378 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:49:01.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:49:01.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:49:04.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:04.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:04.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:04.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:04.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3102.1421ms +2017-07-17 18:49:04.489 +05:30 [Information] Request finished in 3111.6679ms 200 application/json; charset=utf-8 +2017-07-17 18:49:04.490 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" completed keep alive response. +2017-07-17 18:49:07.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:49:07.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:49:07.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:49:08.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:49:08.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:49:08.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:49:08.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:49:08.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:49:08.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:49:09.163 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:49:09.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:49:09.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:49:09.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:49:09.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:49:09.169 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:49:09.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:49:09.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:49:09.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:49:10.463 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" started. +2017-07-17 18:49:11.617 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:49:11.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:49:11.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:49:12.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:12.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:12.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:12.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:12.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5084.9821ms +2017-07-17 18:49:12.726 +05:30 [Information] Request finished in 5115.0011ms 200 application/json; charset=utf-8 +2017-07-17 18:49:12.727 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" completed keep alive response. +2017-07-17 18:49:12.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:49:12.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:49:12.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:49:13.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:13.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:13.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:13.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:13.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:13.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:13.819 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:13.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:13.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:13.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5258.9692ms +2017-07-17 18:49:13.902 +05:30 [Information] Request finished in 5366.7388ms 200 application/json; charset=utf-8 +2017-07-17 18:49:13.903 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" completed keep alive response. +2017-07-17 18:49:14.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:14.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:14.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:14.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:14.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:14.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:14.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:14.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:14.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4906.4716ms +2017-07-17 18:49:14.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5504.1319ms +2017-07-17 18:49:14.259 +05:30 [Information] Request finished in 5732.4173ms 200 application/json; charset=utf-8 +2017-07-17 18:49:14.260 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:49:14.284 +05:30 [Information] Request finished in 5099.4581ms 200 application/json; charset=utf-8 +2017-07-17 18:49:14.299 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:14.300 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" completed keep alive response. +2017-07-17 18:49:14.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:14.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:14.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:14.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5141.139ms +2017-07-17 18:49:14.319 +05:30 [Information] Request finished in 5159.6614ms 200 application/json; charset=utf-8 +2017-07-17 18:49:14.320 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" completed keep alive response. +2017-07-17 18:49:14.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:14.670 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:14.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:14.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:14.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5502.6596ms +2017-07-17 18:49:14.677 +05:30 [Information] Request finished in 5517.8696ms 200 application/json; charset=utf-8 +2017-07-17 18:49:14.678 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" completed keep alive response. +2017-07-17 18:49:14.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:49:15.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:15.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:15.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:15.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3442.8973ms +2017-07-17 18:49:15.070 +05:30 [Information] Request finished in 3453.9087ms 200 application/json; charset=utf-8 +2017-07-17 18:49:15.071 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" completed keep alive response. +2017-07-17 18:49:15.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:15.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:15.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:15.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:15.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3181.0862ms +2017-07-17 18:49:15.919 +05:30 [Information] Request finished in 3189.1368ms 200 application/json; charset=utf-8 +2017-07-17 18:49:15.920 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" completed keep alive response. +2017-07-17 18:49:17.342 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:49:17.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:49:17.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:49:17.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:49:17.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:49:17.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:49:18.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:49:18.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:49:18.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:49:18.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:49:18.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:49:18.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:49:18.642 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:49:18.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:49:18.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:49:19.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:19.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:49:19.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:49:19.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:49:19.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:19.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:19.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:19.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:19.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2291.3378ms +2017-07-17 18:49:19.648 +05:30 [Information] Request finished in 2315.587ms 200 application/json; charset=utf-8 +2017-07-17 18:49:19.648 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" completed keep alive response. +2017-07-17 18:49:20.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:20.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:20.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:20.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:20.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:20.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3170.7555ms +2017-07-17 18:49:20.532 +05:30 [Information] Request finished in 3198.122ms 200 application/json; charset=utf-8 +2017-07-17 18:49:20.532 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" completed keep alive response. +2017-07-17 18:49:20.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:20.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:20.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:20.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:20.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:20.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:20.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2342.3079ms +2017-07-17 18:49:20.982 +05:30 [Information] Request finished in 2359.4626ms 200 application/json; charset=utf-8 +2017-07-17 18:49:20.983 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" completed keep alive response. +2017-07-17 18:49:21.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:49:21.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:21.827 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:21.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:21.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:21.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3246.576ms +2017-07-17 18:49:21.907 +05:30 [Information] Request finished in 3264.6947ms 200 application/json; charset=utf-8 +2017-07-17 18:49:21.930 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" completed keep alive response. +2017-07-17 18:49:21.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:21.938 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:49:21.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:21.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:21.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3299.8546ms +2017-07-17 18:49:21.967 +05:30 [Information] Request finished in 3342.2784ms 200 application/json; charset=utf-8 +2017-07-17 18:49:21.969 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" completed keep alive response. +2017-07-17 18:49:22.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:49:22.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:49:22.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:49:22.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:49:22.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3087.2228ms +2017-07-17 18:49:22.725 +05:30 [Information] Request finished in 3107.2078ms 200 application/json; charset=utf-8 +2017-07-17 18:49:22.726 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" completed keep alive response. +2017-07-17 18:50:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" received FIN. +2017-07-17 18:50:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" disconnecting. +2017-07-17 18:50:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" sending FIN. +2017-07-17 18:50:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" sent FIN with status "0". +2017-07-17 18:50:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHK"" stopped. +2017-07-17 18:52:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" received FIN. +2017-07-17 18:52:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" received FIN. +2017-07-17 18:52:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" received FIN. +2017-07-17 18:52:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" received FIN. +2017-07-17 18:52:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" received FIN. +2017-07-17 18:52:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" received FIN. +2017-07-17 18:52:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" disconnecting. +2017-07-17 18:52:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" sending FIN. +2017-07-17 18:52:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" sent FIN with status "0". +2017-07-17 18:52:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTHJ"" stopped. +2017-07-17 18:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" disconnecting. +2017-07-17 18:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" disconnecting. +2017-07-17 18:52:16.820 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" sending FIN. +2017-07-17 18:52:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" sending FIN. +2017-07-17 18:52:16.820 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" disconnecting. +2017-07-17 18:52:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" sent FIN with status "0". +2017-07-17 18:52:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTHG"" stopped. +2017-07-17 18:52:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" sent FIN with status "0". +2017-07-17 18:52:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" disconnecting. +2017-07-17 18:52:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" disconnecting. +2017-07-17 18:52:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTHF"" stopped. +2017-07-17 18:52:16.826 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" sending FIN. +2017-07-17 18:52:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" sending FIN. +2017-07-17 18:52:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" sending FIN. +2017-07-17 18:52:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" sent FIN with status "0". +2017-07-17 18:52:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTHL"" stopped. +2017-07-17 18:52:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" sent FIN with status "0". +2017-07-17 18:52:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" sent FIN with status "0". +2017-07-17 18:52:16.834 +05:30 [Debug] Connection id ""0HL6D1ELKKTHI"" stopped. +2017-07-17 18:52:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTHH"" stopped. +2017-07-17 18:52:52.898 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" started. +2017-07-17 18:52:52.903 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:52:52.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:52:52.905 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:52:55.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:52:55.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:52:55.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:52:55.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:52:55.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.7876ms +2017-07-17 18:52:55.963 +05:30 [Information] Request finished in 3063.7006ms 200 application/json; charset=utf-8 +2017-07-17 18:52:55.964 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:52:55.985 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:52:55.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:52:55.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:52:59.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:52:59.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:52:59.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:52:59.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:52:59.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3072.8885ms +2017-07-17 18:52:59.067 +05:30 [Information] Request finished in 3097.9176ms 200 application/json; charset=utf-8 +2017-07-17 18:52:59.068 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:52:59.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:52:59.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:52:59.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:53:02.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:53:02.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:02.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:02.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:02.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.2682ms +2017-07-17 18:53:02.170 +05:30 [Information] Request finished in 3070.1628ms 200 application/json; charset=utf-8 +2017-07-17 18:53:02.173 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:53:02.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:53:02.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:53:02.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:53:05.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:05.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:05.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:05.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:05.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3142.6186ms +2017-07-17 18:53:05.330 +05:30 [Information] Request finished in 3150.8235ms 200 application/json; charset=utf-8 +2017-07-17 18:53:05.331 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:53:05.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:53:05.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:53:05.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:53:08.473 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:08.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:08.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:08.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:08.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3202.4835ms +2017-07-17 18:53:08.547 +05:30 [Information] Request finished in 3211.2353ms 200 application/json; charset=utf-8 +2017-07-17 18:53:08.548 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:53:10.940 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" started. +2017-07-17 18:53:10.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:53:10.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:53:10.948 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:53:10.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:53:10.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:53:10.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:53:11.759 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" started. +2017-07-17 18:53:11.768 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" started. +2017-07-17 18:53:11.769 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" started. +2017-07-17 18:53:11.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:53:11.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:53:11.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:53:11.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:53:11.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:53:11.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:53:11.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:53:11.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:53:11.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:53:13.189 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" started. +2017-07-17 18:53:13.267 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:53:13.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:53:13.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:53:14.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:14.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:14.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:14.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:53:14.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:14.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:14.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:14.302 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:53:14.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:14.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3348.2969ms +2017-07-17 18:53:14.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:14.308 +05:30 [Information] Request finished in 3364.2988ms 200 application/json; charset=utf-8 +2017-07-17 18:53:14.309 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:53:14.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3356.384ms +2017-07-17 18:53:14.322 +05:30 [Information] Request finished in 3380.0359ms 200 application/json; charset=utf-8 +2017-07-17 18:53:14.323 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:53:15.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:15.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:15.243 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:53:15.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:15.310 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:53:15.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:15.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:15.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3523.9927ms +2017-07-17 18:53:15.383 +05:30 [Information] Request finished in 3576.6059ms 200 application/json; charset=utf-8 +2017-07-17 18:53:15.384 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:53:15.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:15.681 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:53:15.681 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:15.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:15.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3883.1617ms +2017-07-17 18:53:15.692 +05:30 [Information] Request finished in 3923.1661ms 200 application/json; charset=utf-8 +2017-07-17 18:53:15.693 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:53:16.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:53:16.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:16.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:16.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:16.558 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3250.8828ms +2017-07-17 18:53:16.562 +05:30 [Information] Request finished in 3369.6681ms 200 application/json; charset=utf-8 +2017-07-17 18:53:16.562 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" completed keep alive response. +2017-07-17 18:53:16.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:53:16.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:53:16.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:53:17.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:17.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:53:17.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:17.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:17.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5207.2966ms +2017-07-17 18:53:17.056 +05:30 [Information] Request finished in 5255.3917ms 200 application/json; charset=utf-8 +2017-07-17 18:53:17.059 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" completed keep alive response. +2017-07-17 18:53:17.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:53:17.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:17.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:17.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:17.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1157.6425ms +2017-07-17 18:53:17.731 +05:30 [Information] Request finished in 1166.4311ms 200 application/json; charset=utf-8 +2017-07-17 18:53:17.732 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:53:17.754 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:53:17.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:53:17.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:53:20.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:53:21.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:21.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:21.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:21.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3327.0579ms +2017-07-17 18:53:21.094 +05:30 [Information] Request finished in 3344.1718ms 200 application/json; charset=utf-8 +2017-07-17 18:53:21.095 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:53:47.771 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:53:47.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:53:47.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:53:51.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:53:51.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:51.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:51.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:51.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3305.5599ms +2017-07-17 18:53:51.084 +05:30 [Information] Request finished in 3315.1424ms 200 application/json; charset=utf-8 +2017-07-17 18:53:51.085 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:53:51.093 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:53:51.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:53:51.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:53:54.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:53:54.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:54.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:54.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:54.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3158.0358ms +2017-07-17 18:53:54.260 +05:30 [Information] Request finished in 3169.223ms 200 application/json; charset=utf-8 +2017-07-17 18:53:54.261 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:53:54.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:53:54.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:53:54.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:53:57.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:53:57.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:53:57.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:53:57.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:53:57.640 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3351.6225ms +2017-07-17 18:53:57.643 +05:30 [Information] Request finished in 3374.3921ms 200 application/json; charset=utf-8 +2017-07-17 18:53:57.644 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" completed keep alive response. +2017-07-17 18:53:57.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:53:57.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:53:57.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:54:00.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:00.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:00.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:00.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:00.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3182.9693ms +2017-07-17 18:54:00.867 +05:30 [Information] Request finished in 3218.058ms 200 application/json; charset=utf-8 +2017-07-17 18:54:00.868 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" completed keep alive response. +2017-07-17 18:54:00.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:54:00.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:54:00.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:54:03.964 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:04.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:04.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:04.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:04.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3158.7751ms +2017-07-17 18:54:04.062 +05:30 [Information] Request finished in 3164.5479ms 200 application/json; charset=utf-8 +2017-07-17 18:54:04.063 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:54:06.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:54:06.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:54:06.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:54:06.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:54:06.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:54:06.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:54:07.422 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:54:07.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:54:07.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:54:07.431 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:54:07.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:54:07.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:54:07.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:54:07.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:54:07.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:54:09.295 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:54:09.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:54:09.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:54:09.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:09.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:09.967 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:09.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:10.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:10.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3372.1687ms +2017-07-17 18:54:10.306 +05:30 [Information] Request finished in 3622.555ms 200 application/json; charset=utf-8 +2017-07-17 18:54:10.447 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:54:11.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:11.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:11.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:11.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:11.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:11.765 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:11.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:11.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:11.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5080.5067ms +2017-07-17 18:54:11.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:11.877 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:11.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:11.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:11.953 +05:30 [Information] Request finished in 5328.5553ms 200 application/json; charset=utf-8 +2017-07-17 18:54:11.960 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:54:12.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4460.7413ms +2017-07-17 18:54:12.070 +05:30 [Information] Request finished in 4635.8037ms 200 application/json; charset=utf-8 +2017-07-17 18:54:12.070 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:54:12.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:12.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:12.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:12.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:12.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:12.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:12.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:12.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4863.3104ms +2017-07-17 18:54:12.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:12.313 +05:30 [Information] Request finished in 4889.601ms 200 application/json; charset=utf-8 +2017-07-17 18:54:12.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4865.8219ms +2017-07-17 18:54:12.317 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" completed keep alive response. +2017-07-17 18:54:12.333 +05:30 [Information] Request finished in 4908.8877ms 200 application/json; charset=utf-8 +2017-07-17 18:54:12.335 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" completed keep alive response. +2017-07-17 18:54:13.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:54:13.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:13.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:13.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:13.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4056.2407ms +2017-07-17 18:54:13.360 +05:30 [Information] Request finished in 4069.8201ms 200 application/json; charset=utf-8 +2017-07-17 18:54:13.360 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:54:13.364 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:54:13.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:54:13.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:54:16.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:54:16.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:16.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:16.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:16.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3100.8479ms +2017-07-17 18:54:16.489 +05:30 [Information] Request finished in 3114.9594ms 200 application/json; charset=utf-8 +2017-07-17 18:54:16.492 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:54:16.528 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:54:16.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:54:16.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:54:19.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:54:19.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:19.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:19.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:19.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3139.3989ms +2017-07-17 18:54:19.677 +05:30 [Information] Request finished in 3148.7083ms 200 application/json; charset=utf-8 +2017-07-17 18:54:19.677 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:54:27.661 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:54:27.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:54:27.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:54:30.798 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:54:30.805 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:30.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:30.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:30.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3148.7768ms +2017-07-17 18:54:30.816 +05:30 [Information] Request finished in 3156.7814ms 200 application/json; charset=utf-8 +2017-07-17 18:54:30.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:54:30.822 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:54:30.824 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:54:30.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:54:33.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:54:33.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:33.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:33.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:33.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3063.8473ms +2017-07-17 18:54:33.896 +05:30 [Information] Request finished in 3075.8515ms 200 application/json; charset=utf-8 +2017-07-17 18:54:33.897 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" completed keep alive response. +2017-07-17 18:54:33.903 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:54:33.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:54:33.905 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:54:35.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:54:35.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:35.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:35.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:35.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 1178.3075ms +2017-07-17 18:54:35.090 +05:30 [Information] Request finished in 1186.6296ms 200 application/json; charset=utf-8 +2017-07-17 18:54:35.090 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" completed keep alive response. +2017-07-17 18:54:35.098 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:54:35.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:54:35.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:54:38.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:38.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:38.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:38.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:38.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3112.921ms +2017-07-17 18:54:38.219 +05:30 [Information] Request finished in 3121.556ms 200 application/json; charset=utf-8 +2017-07-17 18:54:38.220 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:54:38.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:54:38.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:54:38.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:54:41.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:41.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:41.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:41.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:41.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3127.6632ms +2017-07-17 18:54:41.362 +05:30 [Information] Request finished in 3137.584ms 200 application/json; charset=utf-8 +2017-07-17 18:54:41.362 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:54:43.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:54:43.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:54:43.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:54:43.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:54:43.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:54:43.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:54:44.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:54:44.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:54:44.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:54:44.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:54:44.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:54:44.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:54:44.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:54:44.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:54:44.202 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:54:44.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:44.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:44.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:44.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:44.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:44.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1275.9686ms +2017-07-17 18:54:44.754 +05:30 [Information] Request finished in 1358.9239ms 200 application/json; charset=utf-8 +2017-07-17 18:54:44.763 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:54:45.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:45.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:45.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:45.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:45.556 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:54:45.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:54:45.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:54:45.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:45.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2255.1685ms +2017-07-17 18:54:45.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:45.794 +05:30 [Information] Request finished in 2373.8422ms 200 application/json; charset=utf-8 +2017-07-17 18:54:45.799 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:54:46.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:46.572 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:46.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:46.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:46.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2433.1006ms +2017-07-17 18:54:46.609 +05:30 [Information] Request finished in 2458.6976ms 200 application/json; charset=utf-8 +2017-07-17 18:54:46.611 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" completed keep alive response. +2017-07-17 18:54:47.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:47.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:54:47.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:47.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:47.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:47.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:47.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3753.2525ms +2017-07-17 18:54:47.989 +05:30 [Information] Request finished in 3838.7014ms 200 application/json; charset=utf-8 +2017-07-17 18:54:47.990 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" completed keep alive response. +2017-07-17 18:54:48.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:48.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:54:48.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:48.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:48.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3853.1754ms +2017-07-17 18:54:48.048 +05:30 [Information] Request finished in 3897.155ms 200 application/json; charset=utf-8 +2017-07-17 18:54:48.049 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" completed keep alive response. +2017-07-17 18:54:48.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:54:48.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:48.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:48.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:48.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3283.5872ms +2017-07-17 18:54:48.896 +05:30 [Information] Request finished in 3392.9777ms 200 application/json; charset=utf-8 +2017-07-17 18:54:48.896 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" completed keep alive response. +2017-07-17 18:54:48.901 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:54:48.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:54:48.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:54:51.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:54:51.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:51.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:51.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:51.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.4515ms +2017-07-17 18:54:51.947 +05:30 [Information] Request finished in 3047.1972ms 200 application/json; charset=utf-8 +2017-07-17 18:54:51.948 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" completed keep alive response. +2017-07-17 18:54:51.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:54:51.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:54:51.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:54:55.029 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:54:55.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:54:55.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:54:55.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:54:55.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3102.9995ms +2017-07-17 18:54:55.081 +05:30 [Information] Request finished in 3124.0115ms 200 application/json; charset=utf-8 +2017-07-17 18:54:55.082 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" completed keep alive response. +2017-07-17 18:56:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" received FIN. +2017-07-17 18:56:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" disconnecting. +2017-07-17 18:56:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" received FIN. +2017-07-17 18:56:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" sending FIN. +2017-07-17 18:56:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" received FIN. +2017-07-17 18:56:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" disconnecting. +2017-07-17 18:56:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" received FIN. +2017-07-17 18:56:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" disconnecting. +2017-07-17 18:56:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" received FIN. +2017-07-17 18:56:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" received FIN. +2017-07-17 18:56:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" sending FIN. +2017-07-17 18:56:16.828 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" sent FIN with status "0". +2017-07-17 18:56:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" sent FIN with status "0". +2017-07-17 18:56:16.829 +05:30 [Debug] Connection id ""0HL6D1ELKKTHR"" stopped. +2017-07-17 18:56:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" disconnecting. +2017-07-17 18:56:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTHQ"" stopped. +2017-07-17 18:56:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" disconnecting. +2017-07-17 18:56:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" disconnecting. +2017-07-17 18:56:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" sending FIN. +2017-07-17 18:56:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" sending FIN. +2017-07-17 18:56:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" sending FIN. +2017-07-17 18:56:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" sending FIN. +2017-07-17 18:56:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" sent FIN with status "0". +2017-07-17 18:56:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" sent FIN with status "0". +2017-07-17 18:56:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHN"" stopped. +2017-07-17 18:56:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHO"" stopped. +2017-07-17 18:56:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" sent FIN with status "0". +2017-07-17 18:56:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" sent FIN with status "0". +2017-07-17 18:56:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTHP"" stopped. +2017-07-17 18:56:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTHM"" stopped. +2017-07-17 18:56:17.694 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" started. +2017-07-17 18:56:17.695 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:56:17.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:56:17.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:56:20.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:56:20.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:20.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:20.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:20.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.2888ms +2017-07-17 18:56:20.772 +05:30 [Information] Request finished in 3072.6855ms 200 application/json; charset=utf-8 +2017-07-17 18:56:20.773 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:20.777 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:56:20.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:56:20.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:56:23.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:56:23.864 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:23.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:23.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:23.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3088.4073ms +2017-07-17 18:56:23.871 +05:30 [Information] Request finished in 3095.6571ms 200 application/json; charset=utf-8 +2017-07-17 18:56:23.872 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:23.885 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-17 18:56:23.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-17 18:56:23.889 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-17 18:56:26.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["22", "8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:56:26.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-17 18:56:26.981 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-17 18:56:26.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3091.7167ms +2017-07-17 18:56:26.988 +05:30 [Information] Request finished in 3104.0027ms 200 +2017-07-17 18:56:26.989 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:27.128 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:56:27.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:56:27.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:56:30.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd0bcb2d01a4"]) - ModelState is Valid +2017-07-17 18:56:30.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:30.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:30.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:30.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.0677ms +2017-07-17 18:56:30.183 +05:30 [Information] Request finished in 3055.1266ms 200 application/json; charset=utf-8 +2017-07-17 18:56:30.184 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:36.255 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 18:56:36.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 18:56:36.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 18:56:39.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:56:39.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:39.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:39.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:39.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3122.4935ms +2017-07-17 18:56:39.412 +05:30 [Information] Request finished in 3157.465ms 200 application/json; charset=utf-8 +2017-07-17 18:56:39.413 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:39.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:56:39.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:56:39.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:56:42.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:42.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:42.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:42.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:42.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3112.5317ms +2017-07-17 18:56:42.629 +05:30 [Information] Request finished in 3123.352ms 200 application/json; charset=utf-8 +2017-07-17 18:56:42.629 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:42.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:56:42.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:56:42.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:56:45.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:45.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:45.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:45.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:45.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3087.7886ms +2017-07-17 18:56:45.736 +05:30 [Information] Request finished in 3095.7461ms 200 application/json; charset=utf-8 +2017-07-17 18:56:45.736 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:47.111 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" started. +2017-07-17 18:56:47.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:56:47.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:56:47.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:56:47.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:56:47.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:56:47.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:56:47.224 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" started. +2017-07-17 18:56:47.227 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:56:47.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:56:47.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:56:47.677 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" started. +2017-07-17 18:56:47.677 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" started. +2017-07-17 18:56:47.681 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" started. +2017-07-17 18:56:47.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:56:47.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:56:47.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:56:47.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:56:47.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:56:47.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:56:47.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:56:47.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:56:47.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:56:48.512 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" started. +2017-07-17 18:56:48.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:56:48.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:56:48.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:56:48.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:48.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:48.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:48.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:48.736 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:48.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:48.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:48.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:48.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:48.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1556.7344ms +2017-07-17 18:56:48.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 1513.7676ms +2017-07-17 18:56:48.769 +05:30 [Information] Request finished in 1635.8527ms 200 application/json; charset=utf-8 +2017-07-17 18:56:48.770 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:48.773 +05:30 [Information] Request finished in 1545.2874ms 200 application/json; charset=utf-8 +2017-07-17 18:56:48.775 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" completed keep alive response. +2017-07-17 18:56:48.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:56:48.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:56:48.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:56:50.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:50.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:50.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:50.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:50.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:50.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3181.9373ms +2017-07-17 18:56:50.375 +05:30 [Information] Request finished in 3261.7922ms 200 application/json; charset=utf-8 +2017-07-17 18:56:50.375 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" completed keep alive response. +2017-07-17 18:56:50.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:50.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:50.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:51.095 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:51.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:51.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:51.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:51.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:51.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3428.3227ms +2017-07-17 18:56:51.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:51.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:51.144 +05:30 [Information] Request finished in 3455.9682ms 200 application/json; charset=utf-8 +2017-07-17 18:56:51.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:51.145 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" completed keep alive response. +2017-07-17 18:56:51.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3455.5994ms +2017-07-17 18:56:51.154 +05:30 [Information] Request finished in 3473.8947ms 200 application/json; charset=utf-8 +2017-07-17 18:56:51.154 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" completed keep alive response. +2017-07-17 18:56:51.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:56:51.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:51.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:51.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:51.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3080.0932ms +2017-07-17 18:56:51.603 +05:30 [Information] Request finished in 3089.6902ms 200 application/json; charset=utf-8 +2017-07-17 18:56:51.603 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" completed keep alive response. +2017-07-17 18:56:51.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:51.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:51.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:51.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:51.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.8823ms +2017-07-17 18:56:51.929 +05:30 [Information] Request finished in 3145.4764ms 200 application/json; charset=utf-8 +2017-07-17 18:56:51.929 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:52.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:56:52.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:56:52.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:56:52.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:56:52.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:56:52.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:56:53.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:56:53.139 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:56:53.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:56:53.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:56:53.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:56:53.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:56:53.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:56:53.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:56:53.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:56:53.304 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:53.306 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:53.310 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:53.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:53.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5648.4283ms +2017-07-17 18:56:53.379 +05:30 [Information] Request finished in 5686.8022ms 200 application/json; charset=utf-8 +2017-07-17 18:56:53.380 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" completed keep alive response. +2017-07-17 18:56:53.664 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 18:56:53.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 18:56:53.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 18:56:53.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:53.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:54.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:54.017 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:54.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:54.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:54.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 1359.4258ms +2017-07-17 18:56:54.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:54.027 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:54.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:54.032 +05:30 [Information] Request finished in 1369.9677ms 200 application/json; charset=utf-8 +2017-07-17 18:56:54.033 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" completed keep alive response. +2017-07-17 18:56:54.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:54.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1376.0352ms +2017-07-17 18:56:54.054 +05:30 [Information] Request finished in 1395.2472ms 200 application/json; charset=utf-8 +2017-07-17 18:56:54.056 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" completed keep alive response. +2017-07-17 18:56:55.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:55.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:55.374 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:55.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:55.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:55.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2235.2845ms +2017-07-17 18:56:55.384 +05:30 [Information] Request finished in 2253.2827ms 200 application/json; charset=utf-8 +2017-07-17 18:56:55.385 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" completed keep alive response. +2017-07-17 18:56:56.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:56.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:56:56.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:56.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:56.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:56.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:56.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3371.7992ms +2017-07-17 18:56:56.519 +05:30 [Information] Request finished in 3386.8758ms 200 application/json; charset=utf-8 +2017-07-17 18:56:56.520 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" completed keep alive response. +2017-07-17 18:56:56.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 18:56:56.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:56.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:56.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:56.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3302.2836ms +2017-07-17 18:56:56.990 +05:30 [Information] Request finished in 3338.2179ms 200 application/json; charset=utf-8 +2017-07-17 18:56:56.991 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" completed keep alive response. +2017-07-17 18:56:56.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:56:56.995 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:56:56.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:56:56.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:56:57.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3852.108ms +2017-07-17 18:56:57.016 +05:30 [Information] Request finished in 3882.1158ms 200 application/json; charset=utf-8 +2017-07-17 18:56:57.017 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" completed keep alive response. +2017-07-17 18:58:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" received FIN. +2017-07-17 18:58:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" received FIN. +2017-07-17 18:58:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" received FIN. +2017-07-17 18:58:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" received FIN. +2017-07-17 18:58:16.814 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" received FIN. +2017-07-17 18:58:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" disconnecting. +2017-07-17 18:58:16.820 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" sending FIN. +2017-07-17 18:58:16.821 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" sent FIN with status "0". +2017-07-17 18:58:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTHU"" stopped. +2017-07-17 18:58:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" received FIN. +2017-07-17 18:58:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" received FIN. +2017-07-17 18:58:16.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" disconnecting. +2017-07-17 18:58:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" disconnecting. +2017-07-17 18:58:16.835 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" disconnecting. +2017-07-17 18:58:16.836 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" disconnecting. +2017-07-17 18:58:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" disconnecting. +2017-07-17 18:58:16.837 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" sending FIN. +2017-07-17 18:58:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" sending FIN. +2017-07-17 18:58:16.834 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" sending FIN. +2017-07-17 18:58:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" disconnecting. +2017-07-17 18:58:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" sent FIN with status "0". +2017-07-17 18:58:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" sending FIN. +2017-07-17 18:58:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTHV"" stopped. +2017-07-17 18:58:16.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" sending FIN. +2017-07-17 18:58:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" sent FIN with status "0". +2017-07-17 18:58:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" sent FIN with status "0". +2017-07-17 18:58:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTHT"" stopped. +2017-07-17 18:58:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTI2"" stopped. +2017-07-17 18:58:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" sending FIN. +2017-07-17 18:58:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" sent FIN with status "0". +2017-07-17 18:58:16.849 +05:30 [Debug] Connection id ""0HL6D1ELKKTI0"" stopped. +2017-07-17 18:58:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" sent FIN with status "0". +2017-07-17 18:58:16.850 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" sent FIN with status "0". +2017-07-17 18:58:16.851 +05:30 [Debug] Connection id ""0HL6D1ELKKTHS"" stopped. +2017-07-17 18:58:16.850 +05:30 [Debug] Connection id ""0HL6D1ELKKTI1"" stopped. +2017-07-17 18:59:28.617 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" started. +2017-07-17 18:59:28.618 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:59:28.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:59:28.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:59:31.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 18:59:31.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:31.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:31.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:31.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.704ms +2017-07-17 18:59:31.691 +05:30 [Information] Request finished in 3072.1995ms 200 application/json; charset=utf-8 +2017-07-17 18:59:31.691 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:31.730 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:59:31.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:59:31.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:59:34.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:59:34.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:34.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:34.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:34.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.8325ms +2017-07-17 18:59:34.804 +05:30 [Information] Request finished in 3106.5208ms 200 application/json; charset=utf-8 +2017-07-17 18:59:34.805 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:34.829 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 18:59:34.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 18:59:34.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 18:59:37.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 18:59:37.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:37.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:37.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:37.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.7135ms +2017-07-17 18:59:37.880 +05:30 [Information] Request finished in 3053.5997ms 200 application/json; charset=utf-8 +2017-07-17 18:59:37.881 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:37.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 18:59:37.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 18:59:37.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 18:59:38.212 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" started. +2017-07-17 18:59:38.214 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:59:38.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:59:38.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:59:40.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:41.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:41.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:41.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:41.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3103.0499ms +2017-07-17 18:59:41.008 +05:30 [Information] Request finished in 3110.2089ms 200 application/json; charset=utf-8 +2017-07-17 18:59:41.008 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:41.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:59:41.016 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:59:41.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:59:41.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 18:59:41.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:41.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:41.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:41.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3048.6582ms +2017-07-17 18:59:41.271 +05:30 [Information] Request finished in 3056.2185ms 200 application/json; charset=utf-8 +2017-07-17 18:59:41.272 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" completed keep alive response. +2017-07-17 18:59:41.274 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 18:59:41.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 18:59:41.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 18:59:44.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:44.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:44.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:44.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:44.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3109.4696ms +2017-07-17 18:59:44.130 +05:30 [Information] Request finished in 3115.945ms 200 application/json; charset=utf-8 +2017-07-17 18:59:44.131 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:44.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 18:59:44.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:44.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:44.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:44.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3091.3886ms +2017-07-17 18:59:44.429 +05:30 [Information] Request finished in 3121.3891ms 200 application/json; charset=utf-8 +2017-07-17 18:59:44.430 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" completed keep alive response. +2017-07-17 18:59:44.500 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-17 18:59:44.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-17 18:59:44.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-17 18:59:45.706 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" started. +2017-07-17 18:59:45.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 18:59:45.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 18:59:45.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 18:59:45.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 18:59:45.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 18:59:45.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 18:59:46.116 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" started. +2017-07-17 18:59:46.121 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" started. +2017-07-17 18:59:46.121 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" started. +2017-07-17 18:59:46.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 18:59:46.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 18:59:46.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 18:59:46.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 18:59:46.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 18:59:46.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 18:59:46.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 18:59:46.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 18:59:46.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 18:59:46.845 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" started. +2017-07-17 18:59:46.846 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 18:59:46.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 18:59:46.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 18:59:47.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["23", "8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 18:59:47.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-17 18:59:47.632 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-17 18:59:47.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3130.9835ms +2017-07-17 18:59:47.638 +05:30 [Information] Request finished in 3142.4388ms 200 +2017-07-17 18:59:47.641 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 18:59:48.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:48.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:48.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:48.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:59:48.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:48.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:48.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:48.968 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:59:48.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:48.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3255.4446ms +2017-07-17 18:59:48.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:48.976 +05:30 [Information] Request finished in 3265.7435ms 200 application/json; charset=utf-8 +2017-07-17 18:59:48.977 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" completed keep alive response. +2017-07-17 18:59:48.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3264.9218ms +2017-07-17 18:59:48.984 +05:30 [Information] Request finished in 3273.8769ms 200 application/json; charset=utf-8 +2017-07-17 18:59:48.984 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" completed keep alive response. +2017-07-17 18:59:49.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:49.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:49.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 18:59:49.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:49.509 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:59:49.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:49.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:49.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3383.7243ms +2017-07-17 18:59:49.587 +05:30 [Information] Request finished in 3463.7477ms 200 application/json; charset=utf-8 +2017-07-17 18:59:49.588 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" completed keep alive response. +2017-07-17 18:59:49.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:49.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:59:49.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:49.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:49.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3562.1964ms +2017-07-17 18:59:49.722 +05:30 [Information] Request finished in 3588.7502ms 200 application/json; charset=utf-8 +2017-07-17 18:59:49.722 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" completed keep alive response. +2017-07-17 18:59:50.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 18:59:50.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:50.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:50.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:50.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3214.6063ms +2017-07-17 18:59:50.069 +05:30 [Information] Request finished in 3222.8264ms 200 application/json; charset=utf-8 +2017-07-17 18:59:50.069 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" completed keep alive response. +2017-07-17 18:59:50.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 18:59:50.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 18:59:50.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 18:59:50.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 18:59:50.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4774.3081ms +2017-07-17 18:59:50.927 +05:30 [Information] Request finished in 4794.9956ms 200 application/json; charset=utf-8 +2017-07-17 18:59:50.927 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" completed keep alive response. +2017-07-17 19:00:32.927 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 19:00:32.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 19:00:32.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 19:00:36.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd177c12d47b"]) - ModelState is Valid +2017-07-17 19:00:36.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:36.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:36.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:36.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3165.4825ms +2017-07-17 19:00:36.100 +05:30 [Information] Request finished in 3172.3986ms 200 application/json; charset=utf-8 +2017-07-17 19:00:36.101 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 19:00:41.321 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-17 19:00:41.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-17 19:00:41.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-17 19:00:44.413 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 19:00:44.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:44.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:44.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:44.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3142.9126ms +2017-07-17 19:00:44.508 +05:30 [Information] Request finished in 3188.0101ms 200 application/json; charset=utf-8 +2017-07-17 19:00:44.508 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" completed keep alive response. +2017-07-17 19:00:44.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 19:00:44.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 19:00:44.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 19:00:47.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:47.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:47.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:47.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:47.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3188.0462ms +2017-07-17 19:00:47.802 +05:30 [Information] Request finished in 3200.6418ms 200 application/json; charset=utf-8 +2017-07-17 19:00:47.802 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" completed keep alive response. +2017-07-17 19:00:47.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 19:00:47.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 19:00:47.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 19:00:50.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:50.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:50.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:50.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:50.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3109.5567ms +2017-07-17 19:00:50.926 +05:30 [Information] Request finished in 3115.848ms 200 application/json; charset=utf-8 +2017-07-17 19:00:50.926 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" completed keep alive response. +2017-07-17 19:00:52.245 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" received FIN. +2017-07-17 19:00:52.246 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" disconnecting. +2017-07-17 19:00:52.246 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" received FIN. +2017-07-17 19:00:52.247 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" sending FIN. +2017-07-17 19:00:52.248 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" disconnecting. +2017-07-17 19:00:52.248 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" sent FIN with status "0". +2017-07-17 19:00:52.250 +05:30 [Debug] Connection id ""0HL6D1ELKKTI7"" stopped. +2017-07-17 19:00:52.248 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" received FIN. +2017-07-17 19:00:52.250 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" sending FIN. +2017-07-17 19:00:52.250 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" disconnecting. +2017-07-17 19:00:52.251 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" sent FIN with status "0". +2017-07-17 19:00:52.255 +05:30 [Debug] Connection id ""0HL6D1ELKKTI9"" stopped. +2017-07-17 19:00:52.256 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" sending FIN. +2017-07-17 19:00:52.256 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" sent FIN with status "0". +2017-07-17 19:00:52.256 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 19:00:52.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 19:00:52.256 +05:30 [Debug] Connection id ""0HL6D1ELKKTI8"" stopped. +2017-07-17 19:00:52.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 19:00:52.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 19:00:52.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 19:00:52.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 19:00:52.691 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" started. +2017-07-17 19:00:52.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 19:00:52.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 19:00:52.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 19:00:52.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 19:00:52.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 19:00:52.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 19:00:52.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 19:00:52.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 19:00:52.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 19:00:53.559 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" started. +2017-07-17 19:00:53.567 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 19:00:53.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 19:00:53.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 19:00:55.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:55.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:55.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:55.592 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:00:55.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:55.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:55.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:55.611 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:00:55.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:55.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3348.7184ms +2017-07-17 19:00:55.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:55.623 +05:30 [Information] Request finished in 3369.4831ms 200 application/json; charset=utf-8 +2017-07-17 19:00:55.624 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" completed keep alive response. +2017-07-17 19:00:55.624 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3354.2569ms +2017-07-17 19:00:55.633 +05:30 [Information] Request finished in 3381.7485ms 200 application/json; charset=utf-8 +2017-07-17 19:00:55.634 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" completed keep alive response. +2017-07-17 19:00:55.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 19:00:55.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:55.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:55.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:55.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:55.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2259.0642ms +2017-07-17 19:00:55.831 +05:30 [Information] Request finished in 2264.3931ms 200 application/json; charset=utf-8 +2017-07-17 19:00:55.832 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" completed keep alive response. +2017-07-17 19:00:55.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:55.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:00:55.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:56.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:00:56.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:56.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:56.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3285.6418ms +2017-07-17 19:00:56.039 +05:30 [Information] Request finished in 3329.4306ms 200 application/json; charset=utf-8 +2017-07-17 19:00:56.040 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" completed keep alive response. +2017-07-17 19:00:56.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:56.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:00:56.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:56.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:56.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3494.8368ms +2017-07-17 19:00:56.206 +05:30 [Information] Request finished in 3517.7428ms 200 application/json; charset=utf-8 +2017-07-17 19:00:56.207 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" completed keep alive response. +2017-07-17 19:00:56.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:00:56.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:00:56.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:00:56.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:00:56.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3871.5676ms +2017-07-17 19:00:56.604 +05:30 [Information] Request finished in 3897.1586ms 200 application/json; charset=utf-8 +2017-07-17 19:00:56.605 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" completed keep alive response. +2017-07-17 19:02:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" received FIN. +2017-07-17 19:02:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" received FIN. +2017-07-17 19:02:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" disconnecting. +2017-07-17 19:02:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" received FIN. +2017-07-17 19:02:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" disconnecting. +2017-07-17 19:02:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" received FIN. +2017-07-17 19:02:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" sending FIN. +2017-07-17 19:02:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" received FIN. +2017-07-17 19:02:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" disconnecting. +2017-07-17 19:02:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" sent FIN with status "0". +2017-07-17 19:02:16.827 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" received FIN. +2017-07-17 19:02:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTI6"" stopped. +2017-07-17 19:02:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" sending FIN. +2017-07-17 19:02:16.833 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" sending FIN. +2017-07-17 19:02:16.830 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" disconnecting. +2017-07-17 19:02:16.839 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" sent FIN with status "0". +2017-07-17 19:02:16.825 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" disconnecting. +2017-07-17 19:02:16.840 +05:30 [Debug] Connection id ""0HL6D1ELKKTI4"" stopped. +2017-07-17 19:02:16.834 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" sent FIN with status "0". +2017-07-17 19:02:16.831 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" disconnecting. +2017-07-17 19:02:16.842 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" sending FIN. +2017-07-17 19:02:16.843 +05:30 [Debug] Connection id ""0HL6D1ELKKTI3"" stopped. +2017-07-17 19:02:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" sent FIN with status "0". +2017-07-17 19:02:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTIA"" stopped. +2017-07-17 19:02:16.844 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" sending FIN. +2017-07-17 19:02:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" sending FIN. +2017-07-17 19:02:16.846 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" sent FIN with status "0". +2017-07-17 19:02:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTIB"" stopped. +2017-07-17 19:02:16.847 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" sent FIN with status "0". +2017-07-17 19:02:16.848 +05:30 [Debug] Connection id ""0HL6D1ELKKTI5"" stopped. +2017-07-17 19:25:28.768 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" started. +2017-07-17 19:25:28.769 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 19:25:28.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 19:25:28.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 19:25:31.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-17 19:25:31.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:31.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:31.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:31.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3134.362ms +2017-07-17 19:25:31.909 +05:30 [Information] Request finished in 3140.4795ms 200 application/json; charset=utf-8 +2017-07-17 19:25:31.910 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:31.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 19:25:31.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 19:25:31.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 19:25:34.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 19:25:34.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:34.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:34.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:34.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3043.9361ms +2017-07-17 19:25:34.967 +05:30 [Information] Request finished in 3052.142ms 200 application/json; charset=utf-8 +2017-07-17 19:25:34.968 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:34.976 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-17 19:25:34.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-17 19:25:34.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-17 19:25:38.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-17 19:25:38.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:38.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:38.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:38.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3045.91ms +2017-07-17 19:25:38.032 +05:30 [Information] Request finished in 3055.3673ms 200 application/json; charset=utf-8 +2017-07-17 19:25:38.033 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:38.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-17 19:25:38.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-17 19:25:38.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-17 19:25:41.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:41.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:41.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:41.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:41.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3123.697ms +2017-07-17 19:25:41.168 +05:30 [Information] Request finished in 3131.4039ms 200 application/json; charset=utf-8 +2017-07-17 19:25:41.169 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:41.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 19:25:41.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 19:25:41.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 19:25:44.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:44.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:44.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:44.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:44.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3127.3606ms +2017-07-17 19:25:44.309 +05:30 [Information] Request finished in 3135.5135ms 200 application/json; charset=utf-8 +2017-07-17 19:25:44.310 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:46.884 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" started. +2017-07-17 19:25:46.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-17 19:25:46.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-17 19:25:46.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-17 19:25:46.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-17 19:25:46.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-17 19:25:46.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-17 19:25:47.741 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" started. +2017-07-17 19:25:47.750 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" started. +2017-07-17 19:25:47.750 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" started. +2017-07-17 19:25:47.766 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-17 19:25:47.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-17 19:25:47.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-17 19:25:47.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-17 19:25:47.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-17 19:25:47.775 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-17 19:25:47.790 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-17 19:25:47.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-17 19:25:47.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-17 19:25:49.014 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" started. +2017-07-17 19:25:49.047 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-17 19:25:49.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-17 19:25:49.051 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-17 19:25:50.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:50.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:50.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:25:50.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:50.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:50.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3225.7782ms +2017-07-17 19:25:50.271 +05:30 [Information] Request finished in 3375.3377ms 200 application/json; charset=utf-8 +2017-07-17 19:25:50.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:50.272 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" completed keep alive response. +2017-07-17 19:25:50.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:50.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:25:50.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:50.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:50.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3481.5063ms +2017-07-17 19:25:50.415 +05:30 [Information] Request finished in 3527.7609ms 200 application/json; charset=utf-8 +2017-07-17 19:25:50.416 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:25:51.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:51.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:51.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-17 19:25:51.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:51.497 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:25:51.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:51.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:51.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3804.113ms +2017-07-17 19:25:51.674 +05:30 [Information] Request finished in 3888.6074ms 200 application/json; charset=utf-8 +2017-07-17 19:25:51.676 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" completed keep alive response. +2017-07-17 19:25:52.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:52.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:25:52.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:52.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:52.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4652.0589ms +2017-07-17 19:25:52.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-17 19:25:52.547 +05:30 [Information] Request finished in 4776.0204ms 200 application/json; charset=utf-8 +2017-07-17 19:25:52.547 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" completed keep alive response. +2017-07-17 19:25:52.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:52.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:52.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:52.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3537.4639ms +2017-07-17 19:25:52.602 +05:30 [Information] Request finished in 3583.0717ms 200 application/json; charset=utf-8 +2017-07-17 19:25:52.602 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" completed keep alive response. +2017-07-17 19:25:52.703 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-17 19:25:52.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-17 19:25:52.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-17 19:25:52.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:52.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-17 19:25:52.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:52.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:52.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5204.1849ms +2017-07-17 19:25:52.977 +05:30 [Information] Request finished in 5225.2177ms 200 application/json; charset=utf-8 +2017-07-17 19:25:52.978 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" completed keep alive response. +2017-07-17 19:25:55.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-17 19:25:55.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:55.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:55.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:55.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3075.3258ms +2017-07-17 19:25:55.793 +05:30 [Information] Request finished in 3185.1126ms 200 application/json; charset=utf-8 +2017-07-17 19:25:55.794 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" completed keep alive response. +2017-07-17 19:25:55.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-17 19:25:55.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-17 19:25:55.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-17 19:25:57.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-17 19:25:57.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-17 19:25:57.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-17 19:25:57.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-17 19:25:57.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2158.7297ms +2017-07-17 19:25:57.977 +05:30 [Information] Request finished in 2177.2951ms 200 application/json; charset=utf-8 +2017-07-17 19:25:57.980 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" completed keep alive response. +2017-07-17 19:28:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" received FIN. +2017-07-17 19:28:16.811 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" received FIN. +2017-07-17 19:28:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" received FIN. +2017-07-17 19:28:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" disconnecting. +2017-07-17 19:28:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" received FIN. +2017-07-17 19:28:16.813 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" received FIN. +2017-07-17 19:28:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" sending FIN. +2017-07-17 19:28:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" sent FIN with status "0". +2017-07-17 19:28:16.815 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" received FIN. +2017-07-17 19:28:16.812 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" disconnecting. +2017-07-17 19:28:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" sending FIN. +2017-07-17 19:28:16.818 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" sent FIN with status "0". +2017-07-17 19:28:16.819 +05:30 [Debug] Connection id ""0HL6D1ELKKTIF"" stopped. +2017-07-17 19:28:16.816 +05:30 [Debug] Connection id ""0HL6D1ELKKTIG"" stopped. +2017-07-17 19:28:16.820 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" disconnecting. +2017-07-17 19:28:16.820 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" disconnecting. +2017-07-17 19:28:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" disconnecting. +2017-07-17 19:28:16.822 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" sending FIN. +2017-07-17 19:28:16.817 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" disconnecting. +2017-07-17 19:28:16.823 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" sending FIN. +2017-07-17 19:28:16.859 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" sending FIN. +2017-07-17 19:28:16.860 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" sent FIN with status "0". +2017-07-17 19:28:16.824 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" sent FIN with status "0". +2017-07-17 19:28:16.861 +05:30 [Debug] Connection id ""0HL6D1ELKKTIC"" stopped. +2017-07-17 19:28:16.862 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" sent FIN with status "0". +2017-07-17 19:28:16.861 +05:30 [Debug] Connection id ""0HL6D1ELKKTID"" stopped. +2017-07-17 19:28:16.863 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" sending FIN. +2017-07-17 19:28:16.863 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" sent FIN with status "0". +2017-07-17 19:28:16.864 +05:30 [Debug] Connection id ""0HL6D1ELKKTIH"" stopped. +2017-07-17 19:28:16.863 +05:30 [Debug] Connection id ""0HL6D1ELKKTIE"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170718.txt b/src/Api.Socioboard/wwwroot/log/log-20170718.txt new file mode 100644 index 000000000..700213bb0 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170718.txt @@ -0,0 +1,11535 @@ +2017-07-18 11:07:20.356 +05:30 [Debug] Hosting starting +2017-07-18 11:07:20.645 +05:30 [Debug] Hosting started +2017-07-18 11:07:20.842 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" started. +2017-07-18 11:07:20.855 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" started. +2017-07-18 11:07:21.448 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 11:07:21.448 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 11:07:21.666 +05:30 [Information] Request finished in 467.2595ms 200 +2017-07-18 11:07:21.776 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:07:23.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 11:07:23.256 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cf55dfb1-52d5-4d30-8ed0-f5438e6c093b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 11:07:23.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 11:07:23.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 11:07:23.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 11:07:23.667 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:07:23.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:23.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:23.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:07:23.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:07:23.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:07:24.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 635.4891ms +2017-07-18 11:07:24.205 +05:30 [Information] Request finished in 3153.1133ms 200 application/json; charset=utf-8 +2017-07-18 11:07:24.209 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:07:24.225 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 11:07:24.228 +05:30 [Debug] Request did not match any routes. +2017-07-18 11:07:24.244 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 11:07:24.247 +05:30 [Information] Request finished in 23.2128ms 404 +2017-07-18 11:07:24.247 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:07:25.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:07:30.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:30.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:30.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:30.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6795.5773ms +2017-07-18 11:07:30.611 +05:30 [Information] Request finished in 6821.0448ms 200 application/json; charset=utf-8 +2017-07-18 11:07:30.612 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:07:31.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:07:31.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:07:31.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:07:33.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:07:33.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:33.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:33.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:33.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2334.4929ms +2017-07-18 11:07:33.351 +05:30 [Information] Request finished in 2339.9747ms 200 application/json; charset=utf-8 +2017-07-18 11:07:33.351 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:07:33.881 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:07:33.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:07:33.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:07:36.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:07:36.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:36.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:36.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:36.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.8702ms +2017-07-18 11:07:36.962 +05:30 [Information] Request finished in 3081.8373ms 200 application/json; charset=utf-8 +2017-07-18 11:07:36.963 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:07:36.972 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:07:36.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:07:36.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:07:40.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:07:40.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:40.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:40.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:40.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3095.3674ms +2017-07-18 11:07:40.075 +05:30 [Information] Request finished in 3107.1097ms 200 application/json; charset=utf-8 +2017-07-18 11:07:40.076 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:07:40.125 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:07:40.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:07:40.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:07:43.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:07:43.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:43.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:43.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:43.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.624ms +2017-07-18 11:07:43.186 +05:30 [Information] Request finished in 3066.4059ms 200 application/json; charset=utf-8 +2017-07-18 11:07:43.186 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:07:43.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:07:43.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:07:43.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:07:46.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:07:46.606 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:46.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:46.608 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:46.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3325.7087ms +2017-07-18 11:07:46.623 +05:30 [Information] Request finished in 3341.0874ms 200 application/json; charset=utf-8 +2017-07-18 11:07:46.623 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:07:46.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:07:46.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:07:46.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:07:49.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:07:49.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:07:49.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:07:49.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:07:49.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3222.4558ms +2017-07-18 11:07:49.924 +05:30 [Information] Request finished in 3229.8036ms 200 application/json; charset=utf-8 +2017-07-18 11:07:49.925 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:08:00.769 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:08:00.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:08:00.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:08:00.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:08:00.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:08:00.795 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:08:01.357 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" started. +2017-07-18 11:08:01.358 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" started. +2017-07-18 11:08:01.361 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" started. +2017-07-18 11:08:01.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:08:01.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:08:01.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:08:01.377 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:08:01.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:08:01.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:08:01.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:08:01.381 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:08:01.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:08:02.542 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" started. +2017-07-18 11:08:02.996 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:08:02.996 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:08:02.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:08:05.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:08:05.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:08:05.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:08:05.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:08:05.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:08:05.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:05.572 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:08:05.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:05.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:05.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:08:05.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:05.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:05.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:05.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4258.7452ms +2017-07-18 11:08:05.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4915.5597ms +2017-07-18 11:08:05.817 +05:30 [Information] Request finished in 4394.8658ms 200 application/json; charset=utf-8 +2017-07-18 11:08:05.817 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" completed keep alive response. +2017-07-18 11:08:05.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:05.911 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:08:05.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:05.952 +05:30 [Information] Request finished in 5101.6643ms 200 application/json; charset=utf-8 +2017-07-18 11:08:05.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:05.988 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:08:06.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5217.9136ms +2017-07-18 11:08:06.040 +05:30 [Information] Request finished in 5270.3723ms 200 application/json; charset=utf-8 +2017-07-18 11:08:06.077 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" completed keep alive response. +2017-07-18 11:08:06.159 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:06.160 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:08:06.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:06.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:06.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:08:06.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:06.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:06.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:06.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3264.6233ms +2017-07-18 11:08:06.269 +05:30 [Information] Request finished in 3271.8886ms 200 application/json; charset=utf-8 +2017-07-18 11:08:06.269 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" completed keep alive response. +2017-07-18 11:08:06.282 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:08:06.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:08:06.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:08:06.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4930.8259ms +2017-07-18 11:08:06.315 +05:30 [Information] Request finished in 4952.6625ms 200 application/json; charset=utf-8 +2017-07-18 11:08:06.316 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" completed keep alive response. +2017-07-18 11:08:07.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:07.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:08:07.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:07.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:07.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6483.9148ms +2017-07-18 11:08:07.872 +05:30 [Information] Request finished in 6507.756ms 200 application/json; charset=utf-8 +2017-07-18 11:08:07.873 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" completed keep alive response. +2017-07-18 11:08:08.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:08:08.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:08.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:08.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:08.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2153.8301ms +2017-07-18 11:08:08.444 +05:30 [Information] Request finished in 2166.4378ms 200 application/json; charset=utf-8 +2017-07-18 11:08:08.444 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" completed keep alive response. +2017-07-18 11:08:08.469 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:08:08.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:08:08.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:08:11.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:08:11.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:08:11.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:08:11.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:08:11.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3511.7567ms +2017-07-18 11:08:11.991 +05:30 [Information] Request finished in 3521.5195ms 200 application/json; charset=utf-8 +2017-07-18 11:08:11.991 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:11.450 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" received FIN. +2017-07-18 11:09:11.450 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" received FIN. +2017-07-18 11:09:11.452 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" received FIN. +2017-07-18 11:09:11.450 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" received FIN. +2017-07-18 11:09:11.453 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" received FIN. +2017-07-18 11:09:11.453 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" disconnecting. +2017-07-18 11:09:11.455 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" sending FIN. +2017-07-18 11:09:11.458 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" disconnecting. +2017-07-18 11:09:11.462 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" disconnecting. +2017-07-18 11:09:11.463 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" disconnecting. +2017-07-18 11:09:11.463 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" sending FIN. +2017-07-18 11:09:11.464 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" sending FIN. +2017-07-18 11:09:11.461 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" sent FIN with status "0". +2017-07-18 11:09:11.465 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" sent FIN with status "0". +2017-07-18 11:09:11.451 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" disconnecting. +2017-07-18 11:09:11.476 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:09:11.478 +05:30 [Debug] Connection id ""0HL6DJS7MM751"" stopped. +2017-07-18 11:09:11.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:09:11.485 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" sending FIN. +2017-07-18 11:09:11.487 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" sending FIN. +2017-07-18 11:09:11.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:09:11.482 +05:30 [Debug] Connection id ""0HL6DJS7MM752"" stopped. +2017-07-18 11:09:11.487 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" sent FIN with status "0". +2017-07-18 11:09:11.496 +05:30 [Debug] Connection id ""0HL6DJS7MM750"" stopped. +2017-07-18 11:09:11.497 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" sent FIN with status "0". +2017-07-18 11:09:11.497 +05:30 [Debug] Connection id ""0HL6DJS7MM753"" stopped. +2017-07-18 11:09:11.495 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" sent FIN with status "0". +2017-07-18 11:09:11.499 +05:30 [Debug] Connection id ""0HL6DJS7MM754"" stopped. +2017-07-18 11:09:14.566 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:09:14.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:14.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:14.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:14.574 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3084.0187ms +2017-07-18 11:09:14.577 +05:30 [Information] Request finished in 3113.1504ms 200 application/json; charset=utf-8 +2017-07-18 11:09:14.578 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:14.582 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:09:14.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:09:14.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:09:17.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:09:17.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:17.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:17.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:17.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.2238ms +2017-07-18 11:09:17.647 +05:30 [Information] Request finished in 3064.0222ms 200 application/json; charset=utf-8 +2017-07-18 11:09:17.648 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:17.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:09:17.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:09:17.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:09:20.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:09:20.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:20.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:20.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:20.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.0909ms +2017-07-18 11:09:20.733 +05:30 [Information] Request finished in 3070.9319ms 200 application/json; charset=utf-8 +2017-07-18 11:09:20.735 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:20.756 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:09:20.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:09:20.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:09:23.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:23.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:23.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:23.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:23.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3088.9192ms +2017-07-18 11:09:23.852 +05:30 [Information] Request finished in 3107.023ms 200 application/json; charset=utf-8 +2017-07-18 11:09:23.852 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:23.864 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:09:23.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:09:23.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:09:26.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:26.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:26.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:26.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:26.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.1258ms +2017-07-18 11:09:26.975 +05:30 [Information] Request finished in 3111.3636ms 200 application/json; charset=utf-8 +2017-07-18 11:09:26.975 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:28.684 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" started. +2017-07-18 11:09:28.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:09:28.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:09:28.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:09:28.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:09:28.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:09:28.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:09:29.167 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" started. +2017-07-18 11:09:29.169 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" started. +2017-07-18 11:09:29.170 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" started. +2017-07-18 11:09:29.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:09:29.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:09:29.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:09:29.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:09:29.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:09:29.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:09:29.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:09:29.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:09:29.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:09:29.934 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" started. +2017-07-18 11:09:29.945 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:09:29.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:09:29.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:09:31.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:31.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:31.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:31.956 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:09:31.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:31.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:32.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2810.83ms +2017-07-18 11:09:32.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:32.062 +05:30 [Information] Request finished in 2888.8935ms 200 application/json; charset=utf-8 +2017-07-18 11:09:32.063 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" completed keep alive response. +2017-07-18 11:09:32.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:32.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:09:32.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:32.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:32.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:32.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3416.1141ms +2017-07-18 11:09:32.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:09:32.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:32.146 +05:30 [Information] Request finished in 3463.7819ms 200 application/json; charset=utf-8 +2017-07-18 11:09:32.149 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:09:32.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:32.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3495.6131ms +2017-07-18 11:09:32.208 +05:30 [Information] Request finished in 3512.5135ms 200 application/json; charset=utf-8 +2017-07-18 11:09:32.209 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" completed keep alive response. +2017-07-18 11:09:32.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:32.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:09:32.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:32.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:09:32.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:32.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:32.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3296.0062ms +2017-07-18 11:09:32.559 +05:30 [Information] Request finished in 3380.3455ms 200 application/json; charset=utf-8 +2017-07-18 11:09:32.560 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" completed keep alive response. +2017-07-18 11:09:33.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:09:33.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:33.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:33.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:33.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3119.2589ms +2017-07-18 11:09:33.076 +05:30 [Information] Request finished in 3138.2043ms 200 application/json; charset=utf-8 +2017-07-18 11:09:33.076 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" completed keep alive response. +2017-07-18 11:09:33.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:09:33.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:09:33.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:09:33.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:33.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:09:33.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:33.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:33.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4061.72ms +2017-07-18 11:09:33.272 +05:30 [Information] Request finished in 4096.6073ms 200 application/json; charset=utf-8 +2017-07-18 11:09:33.273 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" completed keep alive response. +2017-07-18 11:09:36.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:09:36.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:36.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:36.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:36.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3041.7837ms +2017-07-18 11:09:36.129 +05:30 [Information] Request finished in 3049.982ms 200 application/json; charset=utf-8 +2017-07-18 11:09:36.129 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" completed keep alive response. +2017-07-18 11:09:36.139 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:09:36.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:09:36.141 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:09:39.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:09:39.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:09:39.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:09:39.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:09:39.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3098.5427ms +2017-07-18 11:09:39.245 +05:30 [Information] Request finished in 3108.1364ms 200 application/json; charset=utf-8 +2017-07-18 11:09:39.246 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" completed keep alive response. +2017-07-18 11:11:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" received FIN. +2017-07-18 11:11:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" received FIN. +2017-07-18 11:11:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" disconnecting. +2017-07-18 11:11:20.817 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" received FIN. +2017-07-18 11:11:20.820 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" received FIN. +2017-07-18 11:11:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" received FIN. +2017-07-18 11:11:20.821 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" received FIN. +2017-07-18 11:11:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" disconnecting. +2017-07-18 11:11:20.822 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" sending FIN. +2017-07-18 11:11:20.820 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" disconnecting. +2017-07-18 11:11:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" disconnecting. +2017-07-18 11:11:20.837 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" sent FIN with status "0". +2017-07-18 11:11:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" disconnecting. +2017-07-18 11:11:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" sending FIN. +2017-07-18 11:11:20.845 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" sending FIN. +2017-07-18 11:11:20.846 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" sending FIN. +2017-07-18 11:11:20.838 +05:30 [Debug] Connection id ""0HL6DJS7MM755"" stopped. +2017-07-18 11:11:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" sending FIN. +2017-07-18 11:11:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" sent FIN with status "0". +2017-07-18 11:11:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM758"" stopped. +2017-07-18 11:11:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" sent FIN with status "0". +2017-07-18 11:11:20.849 +05:30 [Debug] Connection id ""0HL6DJS7MM74V"" stopped. +2017-07-18 11:11:20.850 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" sent FIN with status "0". +2017-07-18 11:11:20.851 +05:30 [Debug] Connection id ""0HL6DJS7MM756"" stopped. +2017-07-18 11:11:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" disconnecting. +2017-07-18 11:11:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" sent FIN with status "0". +2017-07-18 11:11:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM757"" stopped. +2017-07-18 11:11:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" sending FIN. +2017-07-18 11:11:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" sent FIN with status "0". +2017-07-18 11:11:20.855 +05:30 [Debug] Connection id ""0HL6DJS7MM759"" stopped. +2017-07-18 11:11:30.247 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" started. +2017-07-18 11:11:30.249 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 11:11:30.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 11:11:30.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 11:11:33.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:11:33.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:33.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:33.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:33.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3228.3866ms +2017-07-18 11:11:33.490 +05:30 [Information] Request finished in 3239.9319ms 200 application/json; charset=utf-8 +2017-07-18 11:11:33.490 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" completed keep alive response. +2017-07-18 11:11:33.570 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:11:33.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:11:33.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:11:36.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:36.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:36.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:36.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:36.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3089.6466ms +2017-07-18 11:11:36.667 +05:30 [Information] Request finished in 3096.2891ms 200 application/json; charset=utf-8 +2017-07-18 11:11:36.668 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" completed keep alive response. +2017-07-18 11:11:36.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:11:36.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:11:36.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:11:39.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:39.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:39.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:39.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:39.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.8659ms +2017-07-18 11:11:39.788 +05:30 [Information] Request finished in 3114.8004ms 200 application/json; charset=utf-8 +2017-07-18 11:11:39.789 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" completed keep alive response. +2017-07-18 11:11:43.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:11:43.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:11:43.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:11:43.802 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" started. +2017-07-18 11:11:43.827 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" started. +2017-07-18 11:11:43.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:11:43.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:11:43.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:11:43.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:11:43.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:11:43.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:11:44.594 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" started. +2017-07-18 11:11:44.597 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" started. +2017-07-18 11:11:44.599 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" started. +2017-07-18 11:11:44.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:11:44.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:11:44.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:11:44.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:11:44.679 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:11:44.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:11:44.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:11:44.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:11:44.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:11:45.425 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" started. +2017-07-18 11:11:45.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:11:45.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:11:45.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:11:46.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:46.963 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:46.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:46.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:46.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:46.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3396.1649ms +2017-07-18 11:11:46.999 +05:30 [Information] Request finished in 3406.0261ms 200 application/json; charset=utf-8 +2017-07-18 11:11:47.003 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" completed keep alive response. +2017-07-18 11:11:47.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:47.007 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:47.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:47.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:47.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:11:47.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:11:47.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3129.0274ms +2017-07-18 11:11:47.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:11:47.042 +05:30 [Information] Request finished in 3193.2781ms 200 application/json; charset=utf-8 +2017-07-18 11:11:47.043 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" completed keep alive response. +2017-07-18 11:11:47.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:47.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:47.157 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:47.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:47.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:47.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3294.5939ms +2017-07-18 11:11:47.165 +05:30 [Information] Request finished in 3328.6019ms 200 application/json; charset=utf-8 +2017-07-18 11:11:47.165 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" completed keep alive response. +2017-07-18 11:11:48.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:48.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:48.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:48.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:48.130 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:48.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:48.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:48.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3533.9803ms +2017-07-18 11:11:48.230 +05:30 [Information] Request finished in 3631.0666ms 200 application/json; charset=utf-8 +2017-07-18 11:11:48.231 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" completed keep alive response. +2017-07-18 11:11:48.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:48.335 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:48.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:48.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:48.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3656.0603ms +2017-07-18 11:11:48.344 +05:30 [Information] Request finished in 3674.0512ms 200 application/json; charset=utf-8 +2017-07-18 11:11:48.345 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" completed keep alive response. +2017-07-18 11:11:48.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:11:48.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:48.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:48.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:48.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3150.2532ms +2017-07-18 11:11:48.583 +05:30 [Information] Request finished in 3157.4503ms 200 application/json; charset=utf-8 +2017-07-18 11:11:48.584 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" completed keep alive response. +2017-07-18 11:11:49.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:49.795 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:49.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:49.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:49.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5118.1763ms +2017-07-18 11:11:49.806 +05:30 [Information] Request finished in 5183.9447ms 200 application/json; charset=utf-8 +2017-07-18 11:11:49.807 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" completed keep alive response. +2017-07-18 11:11:50.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:50.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:50.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:50.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:50.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3120.2015ms +2017-07-18 11:11:50.146 +05:30 [Information] Request finished in 3133.5402ms 200 application/json; charset=utf-8 +2017-07-18 11:11:50.147 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" completed keep alive response. +2017-07-18 11:11:50.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:11:50.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:11:50.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:11:50.935 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:11:50.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:11:50.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:11:51.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:11:51.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:11:51.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:11:51.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:11:51.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:11:51.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:11:51.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:11:51.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:11:51.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:11:52.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:11:52.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:11:52.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:11:54.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:54.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:54.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:54.258 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:54.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:54.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:54.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:54.281 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:54.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3344.7176ms +2017-07-18 11:11:54.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:54.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:54.288 +05:30 [Information] Request finished in 3371.0296ms 200 application/json; charset=utf-8 +2017-07-18 11:11:54.289 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" completed keep alive response. +2017-07-18 11:11:54.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3349.5886ms +2017-07-18 11:11:54.297 +05:30 [Information] Request finished in 3381.9293ms 200 application/json; charset=utf-8 +2017-07-18 11:11:54.297 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" completed keep alive response. +2017-07-18 11:11:54.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:54.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:54.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:11:54.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:54.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:54.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:54.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:54.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3331.9112ms +2017-07-18 11:11:54.915 +05:30 [Information] Request finished in 3424.4067ms 200 application/json; charset=utf-8 +2017-07-18 11:11:54.947 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" completed keep alive response. +2017-07-18 11:11:54.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:54.949 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:54.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:54.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:54.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3439.7351ms +2017-07-18 11:11:54.960 +05:30 [Information] Request finished in 3470.297ms 200 application/json; charset=utf-8 +2017-07-18 11:11:54.961 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" completed keep alive response. +2017-07-18 11:11:55.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:11:55.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:55.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:55.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:55.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3217.7047ms +2017-07-18 11:11:55.411 +05:30 [Information] Request finished in 3308.1826ms 200 application/json; charset=utf-8 +2017-07-18 11:11:55.412 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" completed keep alive response. +2017-07-18 11:11:55.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:11:55.515 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:11:55.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:11:55.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:11:55.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3997.1432ms +2017-07-18 11:11:55.522 +05:30 [Information] Request finished in 4033.2922ms 200 application/json; charset=utf-8 +2017-07-18 11:11:55.522 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" completed keep alive response. +2017-07-18 11:13:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" received FIN. +2017-07-18 11:13:20.817 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" received FIN. +2017-07-18 11:13:20.817 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" disconnecting. +2017-07-18 11:13:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" disconnecting. +2017-07-18 11:13:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" received FIN. +2017-07-18 11:13:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" received FIN. +2017-07-18 11:13:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" sending FIN. +2017-07-18 11:13:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" sending FIN. +2017-07-18 11:13:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" disconnecting. +2017-07-18 11:13:20.833 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" disconnecting. +2017-07-18 11:13:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" received FIN. +2017-07-18 11:13:20.839 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" disconnecting. +2017-07-18 11:13:20.833 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" sent FIN with status "0". +2017-07-18 11:13:20.839 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" received FIN. +2017-07-18 11:13:20.844 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" received FIN. +2017-07-18 11:13:20.844 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" sending FIN. +2017-07-18 11:13:20.844 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" disconnecting. +2017-07-18 11:13:20.845 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" sent FIN with status "0". +2017-07-18 11:13:20.845 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" disconnecting. +2017-07-18 11:13:20.846 +05:30 [Debug] Connection id ""0HL6DJS7MM75B"" stopped. +2017-07-18 11:13:20.843 +05:30 [Debug] Connection id ""0HL6DJS7MM75C"" stopped. +2017-07-18 11:13:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" sending FIN. +2017-07-18 11:13:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" sending FIN. +2017-07-18 11:13:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" sent FIN with status "0". +2017-07-18 11:13:20.850 +05:30 [Debug] Connection id ""0HL6DJS7MM75A"" stopped. +2017-07-18 11:13:20.849 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" sent FIN with status "0". +2017-07-18 11:13:20.851 +05:30 [Debug] Connection id ""0HL6DJS7MM75F"" stopped. +2017-07-18 11:13:20.851 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" sent FIN with status "0". +2017-07-18 11:13:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM75D"" stopped. +2017-07-18 11:13:20.850 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" sending FIN. +2017-07-18 11:13:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" sending FIN. +2017-07-18 11:13:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" sent FIN with status "0". +2017-07-18 11:13:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM75G"" stopped. +2017-07-18 11:13:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" sent FIN with status "0". +2017-07-18 11:13:20.855 +05:30 [Debug] Connection id ""0HL6DJS7MM75E"" stopped. +2017-07-18 11:15:08.839 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" started. +2017-07-18 11:15:08.840 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:15:08.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:15:08.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:15:11.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:15:11.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:11.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:11.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:11.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3043.8085ms +2017-07-18 11:15:11.891 +05:30 [Information] Request finished in 3050.7878ms 200 application/json; charset=utf-8 +2017-07-18 11:15:11.892 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:11.915 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:15:11.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:15:11.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:15:15.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:15:15.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:15.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:15.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:15.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3136.8592ms +2017-07-18 11:15:15.061 +05:30 [Information] Request finished in 3165.293ms 200 application/json; charset=utf-8 +2017-07-18 11:15:15.062 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:15.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:15:15.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:15:15.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:15:18.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:15:18.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:18.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:18.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:18.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3062.162ms +2017-07-18 11:15:18.153 +05:30 [Information] Request finished in 3078.919ms 200 application/json; charset=utf-8 +2017-07-18 11:15:18.154 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:18.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:15:18.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:15:18.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:15:21.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:21.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:21.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:21.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:21.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3098.4427ms +2017-07-18 11:15:21.267 +05:30 [Information] Request finished in 3107.9838ms 200 application/json; charset=utf-8 +2017-07-18 11:15:21.268 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:21.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:15:21.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:15:21.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:15:23.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:23.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:23.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:23.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:23.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2235.3427ms +2017-07-18 11:15:23.538 +05:30 [Information] Request finished in 2246.5407ms 200 application/json; charset=utf-8 +2017-07-18 11:15:23.538 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:25.068 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" started. +2017-07-18 11:15:25.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:15:25.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:15:25.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:15:25.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:15:25.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:15:25.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:15:25.820 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" started. +2017-07-18 11:15:25.821 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" started. +2017-07-18 11:15:25.825 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" started. +2017-07-18 11:15:25.832 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:15:25.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:15:25.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:15:25.850 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:15:25.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:15:25.851 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:15:25.877 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:15:25.878 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:15:25.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:15:26.687 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" started. +2017-07-18 11:15:26.725 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:15:26.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:15:26.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:15:28.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:28.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:28.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:15:28.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:28.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:28.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3405.7103ms +2017-07-18 11:15:28.488 +05:30 [Information] Request finished in 3416.9133ms 200 application/json; charset=utf-8 +2017-07-18 11:15:28.489 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:28.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:28.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:28.635 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:15:28.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:28.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:28.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3544.6605ms +2017-07-18 11:15:28.641 +05:30 [Information] Request finished in 3568.8497ms 200 application/json; charset=utf-8 +2017-07-18 11:15:28.642 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" completed keep alive response. +2017-07-18 11:15:28.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:29.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:29.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:15:29.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:29.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:29.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:29.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:15:29.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3345.9197ms +2017-07-18 11:15:29.270 +05:30 [Information] Request finished in 3404.8783ms 200 application/json; charset=utf-8 +2017-07-18 11:15:29.309 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" completed keep alive response. +2017-07-18 11:15:29.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:29.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:15:29.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:29.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:29.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3596.3535ms +2017-07-18 11:15:29.434 +05:30 [Information] Request finished in 3608.5113ms 200 application/json; charset=utf-8 +2017-07-18 11:15:29.436 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" completed keep alive response. +2017-07-18 11:15:29.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:15:29.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:29.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:29.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:29.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3083.4301ms +2017-07-18 11:15:29.815 +05:30 [Information] Request finished in 3118.4945ms 200 application/json; charset=utf-8 +2017-07-18 11:15:29.816 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" completed keep alive response. +2017-07-18 11:15:29.818 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:15:29.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:15:29.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:15:30.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:30.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:15:31.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:31.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:31.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5124.5299ms +2017-07-18 11:15:31.009 +05:30 [Information] Request finished in 5131.6154ms 200 application/json; charset=utf-8 +2017-07-18 11:15:31.009 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" completed keep alive response. +2017-07-18 11:15:32.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:15:32.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:32.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:32.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:32.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3121.2321ms +2017-07-18 11:15:32.955 +05:30 [Information] Request finished in 3136.8929ms 200 application/json; charset=utf-8 +2017-07-18 11:15:32.957 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" completed keep alive response. +2017-07-18 11:15:32.971 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:15:32.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:15:32.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:15:36.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:15:36.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:15:36.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:15:36.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:15:36.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3075.4583ms +2017-07-18 11:15:36.051 +05:30 [Information] Request finished in 3081.9555ms 200 application/json; charset=utf-8 +2017-07-18 11:15:36.051 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" completed keep alive response. +2017-07-18 11:16:22.070 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 11:16:22.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 11:16:22.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 11:16:25.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:16:25.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:25.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:25.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:25.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3243.7637ms +2017-07-18 11:16:25.334 +05:30 [Information] Request finished in 3265.062ms 200 application/json; charset=utf-8 +2017-07-18 11:16:25.334 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" completed keep alive response. +2017-07-18 11:16:25.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:16:25.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:16:25.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:16:28.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:28.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:28.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:28.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:28.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3101.1346ms +2017-07-18 11:16:28.499 +05:30 [Information] Request finished in 3105.6484ms 200 application/json; charset=utf-8 +2017-07-18 11:16:28.499 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" completed keep alive response. +2017-07-18 11:16:28.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:16:28.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:16:28.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:16:31.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:31.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:31.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:31.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:31.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3084.4428ms +2017-07-18 11:16:31.599 +05:30 [Information] Request finished in 3094.0812ms 200 application/json; charset=utf-8 +2017-07-18 11:16:31.600 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" completed keep alive response. +2017-07-18 11:16:34.768 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" received FIN. +2017-07-18 11:16:34.769 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" disconnecting. +2017-07-18 11:16:34.770 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" sending FIN. +2017-07-18 11:16:34.771 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" sent FIN with status "0". +2017-07-18 11:16:34.772 +05:30 [Debug] Connection id ""0HL6DJS7MM75K"" stopped. +2017-07-18 11:16:34.768 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" received FIN. +2017-07-18 11:16:34.773 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" disconnecting. +2017-07-18 11:16:34.775 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" sending FIN. +2017-07-18 11:16:34.776 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" sent FIN with status "0". +2017-07-18 11:16:34.776 +05:30 [Debug] Connection id ""0HL6DJS7MM75H"" stopped. +2017-07-18 11:16:34.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:16:34.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:16:34.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:16:35.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:16:35.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:16:35.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:16:35.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:16:35.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:16:35.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:16:35.610 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" started. +2017-07-18 11:16:35.619 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" started. +2017-07-18 11:16:35.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:16:35.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:16:35.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:16:35.636 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:16:35.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:16:35.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:16:35.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:16:35.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:16:35.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:16:36.508 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" started. +2017-07-18 11:16:36.540 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:16:36.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:16:36.546 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:16:38.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:38.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:38.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:38.309 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:38.310 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:38.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:38.356 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:38.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:38.385 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:38.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3304.2502ms +2017-07-18 11:16:38.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:38.418 +05:30 [Information] Request finished in 3488.2462ms 200 application/json; charset=utf-8 +2017-07-18 11:16:38.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3613.6492ms +2017-07-18 11:16:38.421 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" completed keep alive response. +2017-07-18 11:16:38.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:38.456 +05:30 [Information] Request finished in 3686.0991ms 200 application/json; charset=utf-8 +2017-07-18 11:16:38.457 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:38.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:38.457 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" completed keep alive response. +2017-07-18 11:16:38.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:38.465 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:16:38.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:16:38.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3355.769ms +2017-07-18 11:16:38.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:16:38.472 +05:30 [Information] Request finished in 3536.061ms 200 application/json; charset=utf-8 +2017-07-18 11:16:38.473 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" completed keep alive response. +2017-07-18 11:16:39.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:39.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:39.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:39.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:39.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:39.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:39.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:39.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3761.8889ms +2017-07-18 11:16:39.414 +05:30 [Information] Request finished in 3817.0925ms 200 application/json; charset=utf-8 +2017-07-18 11:16:39.415 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" completed keep alive response. +2017-07-18 11:16:39.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:39.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:39.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:39.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:39.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3932.429ms +2017-07-18 11:16:39.596 +05:30 [Information] Request finished in 3959.7805ms 200 application/json; charset=utf-8 +2017-07-18 11:16:39.597 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" completed keep alive response. +2017-07-18 11:16:39.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:16:39.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:39.768 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:39.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:39.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3219.3766ms +2017-07-18 11:16:39.773 +05:30 [Information] Request finished in 3258.6283ms 200 application/json; charset=utf-8 +2017-07-18 11:16:39.774 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" completed keep alive response. +2017-07-18 11:16:40.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:40.180 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:40.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:40.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:40.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4541.2909ms +2017-07-18 11:16:40.206 +05:30 [Information] Request finished in 4577.8077ms 200 application/json; charset=utf-8 +2017-07-18 11:16:40.206 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" completed keep alive response. +2017-07-18 11:16:41.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:41.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:41.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:41.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:41.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3195.0437ms +2017-07-18 11:16:41.668 +05:30 [Information] Request finished in 3205.7789ms 200 application/json; charset=utf-8 +2017-07-18 11:16:41.669 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" completed keep alive response. +2017-07-18 11:16:42.465 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:16:42.465 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:16:42.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:16:42.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:16:42.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:16:42.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:16:42.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:16:42.996 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:16:42.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:16:42.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:16:42.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:16:42.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:16:43.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:16:42.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:16:43.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:16:43.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:43.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:43.929 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:43.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:43.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:43.948 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1463.2658ms +2017-07-18 11:16:43.960 +05:30 [Information] Request finished in 1512.3486ms 200 application/json; charset=utf-8 +2017-07-18 11:16:43.962 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" completed keep alive response. +2017-07-18 11:16:44.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:16:44.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:16:44.089 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:16:44.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:44.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:44.736 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:44.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:44.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:44.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2271.7684ms +2017-07-18 11:16:44.742 +05:30 [Information] Request finished in 2297.6149ms 200 application/json; charset=utf-8 +2017-07-18 11:16:44.743 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" completed keep alive response. +2017-07-18 11:16:46.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:46.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:46.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:16:46.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:46.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:46.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:46.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:46.349 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3319.9348ms +2017-07-18 11:16:46.386 +05:30 [Information] Request finished in 3372.7127ms 200 application/json; charset=utf-8 +2017-07-18 11:16:46.387 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" completed keep alive response. +2017-07-18 11:16:46.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:46.506 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:46.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:46.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:46.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3507.1671ms +2017-07-18 11:16:46.511 +05:30 [Information] Request finished in 3517.4179ms 200 application/json; charset=utf-8 +2017-07-18 11:16:46.512 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" completed keep alive response. +2017-07-18 11:16:46.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:46.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:16:46.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:46.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:46.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3907.7157ms +2017-07-18 11:16:46.919 +05:30 [Information] Request finished in 3922.0947ms 200 application/json; charset=utf-8 +2017-07-18 11:16:46.920 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" completed keep alive response. +2017-07-18 11:16:47.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:16:47.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:16:47.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:16:47.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:16:47.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3156.0244ms +2017-07-18 11:16:47.251 +05:30 [Information] Request finished in 3171.0168ms 200 application/json; charset=utf-8 +2017-07-18 11:16:47.252 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" completed keep alive response. +2017-07-18 11:18:43.949 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" received FIN. +2017-07-18 11:18:43.950 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" received FIN. +2017-07-18 11:18:43.952 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" disconnecting. +2017-07-18 11:18:43.954 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" received FIN. +2017-07-18 11:18:43.956 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" received FIN. +2017-07-18 11:18:43.957 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" received FIN. +2017-07-18 11:18:43.952 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" received FIN. +2017-07-18 11:18:43.958 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" received FIN. +2017-07-18 11:18:43.958 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" started. +2017-07-18 11:18:43.959 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" sending FIN. +2017-07-18 11:18:43.959 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" sent FIN with status "0". +2017-07-18 11:18:43.956 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" disconnecting. +2017-07-18 11:18:43.961 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" sending FIN. +2017-07-18 11:18:43.961 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" sent FIN with status "0". +2017-07-18 11:18:43.961 +05:30 [Debug] Connection id ""0HL6DJS7MM75J"" stopped. +2017-07-18 11:18:43.960 +05:30 [Debug] Connection id ""0HL6DJS7MM75I"" stopped. +2017-07-18 11:18:43.956 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" disconnecting. +2017-07-18 11:18:43.963 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" disconnecting. +2017-07-18 11:18:43.964 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" disconnecting. +2017-07-18 11:18:43.964 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" disconnecting. +2017-07-18 11:18:43.963 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" sending FIN. +2017-07-18 11:18:43.964 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" sending FIN. +2017-07-18 11:18:43.977 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" sending FIN. +2017-07-18 11:18:43.979 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" sent FIN with status "0". +2017-07-18 11:18:43.961 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" disconnecting. +2017-07-18 11:18:43.967 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" sending FIN. +2017-07-18 11:18:43.980 +05:30 [Debug] Connection id ""0HL6DJS7MM75N"" stopped. +2017-07-18 11:18:43.983 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" sent FIN with status "0". +2017-07-18 11:18:43.983 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" sending FIN. +2017-07-18 11:18:43.984 +05:30 [Debug] Connection id ""0HL6DJS7MM75M"" stopped. +2017-07-18 11:18:43.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:18:43.985 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" sent FIN with status "0". +2017-07-18 11:18:43.988 +05:30 [Debug] Connection id ""0HL6DJS7MM75P"" stopped. +2017-07-18 11:18:43.989 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" sent FIN with status "0". +2017-07-18 11:18:43.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:18:43.989 +05:30 [Debug] Connection id ""0HL6DJS7MM75O"" stopped. +2017-07-18 11:18:43.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:18:43.990 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" sent FIN with status "0". +2017-07-18 11:18:43.991 +05:30 [Debug] Connection id ""0HL6DJS7MM75L"" stopped. +2017-07-18 11:18:47.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:18:47.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:18:47.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:18:47.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:18:47.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3064.3073ms +2017-07-18 11:18:47.060 +05:30 [Information] Request finished in 3093.7604ms 200 application/json; charset=utf-8 +2017-07-18 11:18:47.060 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:18:47.084 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:18:47.086 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:18:47.089 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:18:49.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:18:49.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:18:49.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:18:49.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:18:49.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2114.226ms +2017-07-18 11:18:49.208 +05:30 [Information] Request finished in 2143.7623ms 200 application/json; charset=utf-8 +2017-07-18 11:18:49.209 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:18:49.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:18:49.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:18:49.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:18:52.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:18:52.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:18:52.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:18:52.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:18:52.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.3617ms +2017-07-18 11:18:52.272 +05:30 [Information] Request finished in 3051.3784ms 200 application/json; charset=utf-8 +2017-07-18 11:18:52.272 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:18:52.275 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:18:52.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:18:52.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:18:55.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:18:55.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:18:55.404 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:18:55.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:18:55.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3128.9155ms +2017-07-18 11:18:55.409 +05:30 [Information] Request finished in 3133.9143ms 200 application/json; charset=utf-8 +2017-07-18 11:18:55.410 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:18:55.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:18:55.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:18:55.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:18:58.474 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:18:58.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:18:58.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:18:58.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:18:58.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3121.9247ms +2017-07-18 11:18:58.541 +05:30 [Information] Request finished in 3127.6707ms 200 application/json; charset=utf-8 +2017-07-18 11:18:58.542 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:18:59.976 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" started. +2017-07-18 11:18:59.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:18:59.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:18:59.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:18:59.981 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:18:59.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:18:59.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:19:00.651 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" started. +2017-07-18 11:19:00.652 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" started. +2017-07-18 11:19:00.652 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" started. +2017-07-18 11:19:00.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:19:00.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:19:00.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:19:00.665 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:19:00.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:19:00.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:19:00.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:19:00.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:19:00.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:19:01.566 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" started. +2017-07-18 11:19:01.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:19:01.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:19:01.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:19:03.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:19:03.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:19:03.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:03.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:03.381 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:19:03.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:19:03.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:03.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:03.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:03.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:03.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3405.5577ms +2017-07-18 11:19:03.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3404.7498ms +2017-07-18 11:19:03.400 +05:30 [Information] Request finished in 3421.4661ms 200 application/json; charset=utf-8 +2017-07-18 11:19:03.404 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:19:03.404 +05:30 [Information] Request finished in 3422.016ms 200 application/json; charset=utf-8 +2017-07-18 11:19:03.412 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" completed keep alive response. +2017-07-18 11:19:03.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:19:03.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:03.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:03.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:03.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2242.1084ms +2017-07-18 11:19:03.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:19:03.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:19:03.916 +05:30 [Information] Request finished in 2334.2896ms 200 application/json; charset=utf-8 +2017-07-18 11:19:03.917 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" completed keep alive response. +2017-07-18 11:19:03.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:19:03.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:19:03.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:19:03.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:19:04.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:04.059 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:19:04.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:04.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:04.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3466.1719ms +2017-07-18 11:19:04.202 +05:30 [Information] Request finished in 3546.9538ms 200 application/json; charset=utf-8 +2017-07-18 11:19:04.203 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" completed keep alive response. +2017-07-18 11:19:04.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:04.239 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:19:04.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:04.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:04.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3569.395ms +2017-07-18 11:19:04.247 +05:30 [Information] Request finished in 3591.549ms 200 application/json; charset=utf-8 +2017-07-18 11:19:04.248 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" completed keep alive response. +2017-07-18 11:19:05.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:05.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:19:05.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:05.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:05.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4900.2025ms +2017-07-18 11:19:05.584 +05:30 [Information] Request finished in 4920.3629ms 200 application/json; charset=utf-8 +2017-07-18 11:19:05.585 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" completed keep alive response. +2017-07-18 11:19:07.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:19:07.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:07.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:07.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:07.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3097.224ms +2017-07-18 11:19:07.079 +05:30 [Information] Request finished in 3139.7699ms 200 application/json; charset=utf-8 +2017-07-18 11:19:07.079 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" completed keep alive response. +2017-07-18 11:19:07.086 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:19:07.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:19:07.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:19:09.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:19:09.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:19:09.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:19:09.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:19:09.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2192.9259ms +2017-07-18 11:19:09.288 +05:30 [Information] Request finished in 2201.7429ms 200 application/json; charset=utf-8 +2017-07-18 11:19:09.289 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" completed keep alive response. +2017-07-18 11:21:05.886 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" received FIN. +2017-07-18 11:21:05.889 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" received FIN. +2017-07-18 11:21:05.894 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" received FIN. +2017-07-18 11:21:05.891 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" received FIN. +2017-07-18 11:21:05.894 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" received FIN. +2017-07-18 11:21:05.898 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" disconnecting. +2017-07-18 11:21:05.899 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" sending FIN. +2017-07-18 11:21:05.899 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" sent FIN with status "0". +2017-07-18 11:21:05.900 +05:30 [Debug] Connection id ""0HL6DJS7MM75V"" stopped. +2017-07-18 11:21:05.905 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" disconnecting. +2017-07-18 11:21:05.905 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" disconnecting. +2017-07-18 11:21:05.892 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" disconnecting. +2017-07-18 11:21:05.905 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" received FIN. +2017-07-18 11:21:05.906 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" sending FIN. +2017-07-18 11:21:05.905 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" disconnecting. +2017-07-18 11:21:05.915 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" started. +2017-07-18 11:21:05.915 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" disconnecting. +2017-07-18 11:21:05.916 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" sent FIN with status "0". +2017-07-18 11:21:05.928 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" sending FIN. +2017-07-18 11:21:05.930 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" sending FIN. +2017-07-18 11:21:05.931 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" sending FIN. +2017-07-18 11:21:05.930 +05:30 [Debug] Connection id ""0HL6DJS7MM75U"" stopped. +2017-07-18 11:21:05.931 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" sent FIN with status "0". +2017-07-18 11:21:05.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:21:05.933 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" sending FIN. +2017-07-18 11:21:05.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:21:05.943 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" sent FIN with status "0". +2017-07-18 11:21:05.940 +05:30 [Debug] Connection id ""0HL6DJS7MM75Q"" stopped. +2017-07-18 11:21:05.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:21:05.945 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" sent FIN with status "0". +2017-07-18 11:21:05.946 +05:30 [Debug] Connection id ""0HL6DJS7MM75T"" stopped. +2017-07-18 11:21:05.947 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" sent FIN with status "0". +2017-07-18 11:21:05.947 +05:30 [Debug] Connection id ""0HL6DJS7MM75S"" stopped. +2017-07-18 11:21:05.944 +05:30 [Debug] Connection id ""0HL6DJS7MM75R"" stopped. +2017-07-18 11:21:08.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:21:08.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:08.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:08.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:08.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2142.4075ms +2017-07-18 11:21:08.092 +05:30 [Information] Request finished in 2163.7111ms 200 application/json; charset=utf-8 +2017-07-18 11:21:08.093 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:08.097 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:21:08.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:21:08.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:21:11.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:21:11.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:11.489 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:11.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:11.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3385.5204ms +2017-07-18 11:21:11.540 +05:30 [Information] Request finished in 3442.4492ms 200 application/json; charset=utf-8 +2017-07-18 11:21:11.541 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:11.562 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:21:11.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:21:11.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:21:13.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:21:13.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:13.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:13.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:13.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2113.2166ms +2017-07-18 11:21:13.684 +05:30 [Information] Request finished in 2120.9603ms 200 application/json; charset=utf-8 +2017-07-18 11:21:13.685 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:13.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:21:13.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:21:13.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:21:16.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:16.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:16.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:16.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:16.841 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3131.1751ms +2017-07-18 11:21:16.843 +05:30 [Information] Request finished in 3154.1883ms 200 application/json; charset=utf-8 +2017-07-18 11:21:16.844 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:16.848 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:21:16.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:21:16.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:21:19.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:19.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:19.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:19.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:19.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3144.4443ms +2017-07-18 11:21:19.999 +05:30 [Information] Request finished in 3150.7303ms 200 application/json; charset=utf-8 +2017-07-18 11:21:19.999 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:21.979 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" started. +2017-07-18 11:21:21.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:21:21.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:21:21.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:21:22.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:21:22.004 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:21:22.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:21:22.835 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" started. +2017-07-18 11:21:22.837 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" started. +2017-07-18 11:21:22.837 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" started. +2017-07-18 11:21:22.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:21:22.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:21:22.851 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:21:22.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:21:22.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:21:22.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:21:22.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:21:22.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:21:22.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:21:24.595 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" started. +2017-07-18 11:21:24.597 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:21:24.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:21:24.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:21:25.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:25.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:25.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:25.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:21:25.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:25.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:25.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:21:25.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:25.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:25.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:25.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3834.7169ms +2017-07-18 11:21:25.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3826.217ms +2017-07-18 11:21:25.861 +05:30 [Information] Request finished in 3864.6895ms 200 application/json; charset=utf-8 +2017-07-18 11:21:25.861 +05:30 [Information] Request finished in 3849.1442ms 200 application/json; charset=utf-8 +2017-07-18 11:21:25.862 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:25.863 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" completed keep alive response. +2017-07-18 11:21:26.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:26.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:26.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:21:26.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:26.412 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:21:26.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:26.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:26.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3583.0578ms +2017-07-18 11:21:26.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:26.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:21:26.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:26.503 +05:30 [Information] Request finished in 3653.0605ms 200 application/json; charset=utf-8 +2017-07-18 11:21:26.505 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" completed keep alive response. +2017-07-18 11:21:26.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:26.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3665.2524ms +2017-07-18 11:21:26.541 +05:30 [Information] Request finished in 3700.6992ms 200 application/json; charset=utf-8 +2017-07-18 11:21:26.542 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" completed keep alive response. +2017-07-18 11:21:26.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:21:26.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:26.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:26.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:26.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2304.816ms +2017-07-18 11:21:26.908 +05:30 [Information] Request finished in 2311.9005ms 200 application/json; charset=utf-8 +2017-07-18 11:21:26.909 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" completed keep alive response. +2017-07-18 11:21:26.912 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:21:26.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:21:26.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:21:27.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:27.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:21:27.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:27.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:27.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4938.9666ms +2017-07-18 11:21:27.854 +05:30 [Information] Request finished in 5006.1297ms 200 application/json; charset=utf-8 +2017-07-18 11:21:27.855 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" completed keep alive response. +2017-07-18 11:21:29.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:21:29.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:30.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:30.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:30.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3087.7969ms +2017-07-18 11:21:30.020 +05:30 [Information] Request finished in 3108.0155ms 200 application/json; charset=utf-8 +2017-07-18 11:21:30.021 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" completed keep alive response. +2017-07-18 11:21:30.029 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:21:30.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:21:30.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:21:33.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:21:33.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:21:33.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:21:33.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:21:33.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3148.6257ms +2017-07-18 11:21:33.193 +05:30 [Information] Request finished in 3164.222ms 200 application/json; charset=utf-8 +2017-07-18 11:21:33.194 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" completed keep alive response. +2017-07-18 11:23:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" received FIN. +2017-07-18 11:23:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" received FIN. +2017-07-18 11:23:20.860 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" received FIN. +2017-07-18 11:23:20.860 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" disconnecting. +2017-07-18 11:23:20.862 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" disconnecting. +2017-07-18 11:23:20.881 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" disconnecting. +2017-07-18 11:23:20.859 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" received FIN. +2017-07-18 11:23:20.861 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" received FIN. +2017-07-18 11:23:20.908 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" sending FIN. +2017-07-18 11:23:20.908 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" disconnecting. +2017-07-18 11:23:20.909 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" disconnecting. +2017-07-18 11:23:20.909 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" sending FIN. +2017-07-18 11:23:20.902 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" received FIN. +2017-07-18 11:23:20.919 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" sending FIN. +2017-07-18 11:23:20.921 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" sent FIN with status "0". +2017-07-18 11:23:20.920 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" disconnecting. +2017-07-18 11:23:20.920 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" sending FIN. +2017-07-18 11:23:20.922 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" sending FIN. +2017-07-18 11:23:20.921 +05:30 [Debug] Connection id ""0HL6DJS7MM761"" stopped. +2017-07-18 11:23:20.922 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" sending FIN. +2017-07-18 11:23:20.924 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" sent FIN with status "0". +2017-07-18 11:23:20.925 +05:30 [Debug] Connection id ""0HL6DJS7MM760"" stopped. +2017-07-18 11:23:20.925 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" sent FIN with status "0". +2017-07-18 11:23:20.925 +05:30 [Debug] Connection id ""0HL6DJS7MM762"" stopped. +2017-07-18 11:23:20.926 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" sent FIN with status "0". +2017-07-18 11:23:20.927 +05:30 [Debug] Connection id ""0HL6DJS7MM764"" stopped. +2017-07-18 11:23:20.923 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" sent FIN with status "0". +2017-07-18 11:23:20.928 +05:30 [Debug] Connection id ""0HL6DJS7MM763"" stopped. +2017-07-18 11:23:20.929 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" sent FIN with status "0". +2017-07-18 11:23:20.929 +05:30 [Debug] Connection id ""0HL6DJS7MM765"" stopped. +2017-07-18 11:24:08.867 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" started. +2017-07-18 11:24:08.870 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:24:08.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:24:08.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:24:11.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:24:11.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:11.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:11.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:11.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2261.0981ms +2017-07-18 11:24:11.147 +05:30 [Information] Request finished in 2278.0326ms 200 application/json; charset=utf-8 +2017-07-18 11:24:11.148 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:11.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:24:11.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:24:11.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:24:14.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:24:14.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:14.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:14.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:14.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3171.4151ms +2017-07-18 11:24:14.356 +05:30 [Information] Request finished in 3186.8385ms 200 application/json; charset=utf-8 +2017-07-18 11:24:14.356 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:14.363 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:24:14.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:24:14.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:24:17.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:24:17.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:17.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:17.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:17.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3074.429ms +2017-07-18 11:24:17.444 +05:30 [Information] Request finished in 3081.6811ms 200 application/json; charset=utf-8 +2017-07-18 11:24:17.445 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:17.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:24:17.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:24:17.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:24:20.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:20.575 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:20.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:20.577 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:20.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3110.8972ms +2017-07-18 11:24:20.582 +05:30 [Information] Request finished in 3131.3932ms 200 application/json; charset=utf-8 +2017-07-18 11:24:20.584 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:20.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:24:20.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:24:20.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:24:23.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:23.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:23.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:23.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:23.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.9744ms +2017-07-18 11:24:23.713 +05:30 [Information] Request finished in 3123.3549ms 200 application/json; charset=utf-8 +2017-07-18 11:24:23.715 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:25.268 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" started. +2017-07-18 11:24:25.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:24:25.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:24:25.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:24:25.327 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:24:25.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:24:25.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:24:26.137 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" started. +2017-07-18 11:24:26.141 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" started. +2017-07-18 11:24:26.141 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" started. +2017-07-18 11:24:26.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:24:26.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:24:26.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:24:26.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:24:26.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:24:26.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:24:26.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:24:26.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:24:26.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:24:27.069 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" started. +2017-07-18 11:24:27.141 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:24:27.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:24:27.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:24:28.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:28.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:28.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:24:28.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:28.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:28.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3478.2754ms +2017-07-18 11:24:28.774 +05:30 [Information] Request finished in 3502.2451ms 200 application/json; charset=utf-8 +2017-07-18 11:24:28.775 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:28.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:28.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:29.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:29.041 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:24:29.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:29.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:29.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3713.1156ms +2017-07-18 11:24:29.048 +05:30 [Information] Request finished in 3775.1975ms 200 application/json; charset=utf-8 +2017-07-18 11:24:29.049 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" completed keep alive response. +2017-07-18 11:24:29.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:29.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:29.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:24:29.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:29.756 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:29.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3438.1318ms +2017-07-18 11:24:29.765 +05:30 [Information] Request finished in 3619.3703ms 200 application/json; charset=utf-8 +2017-07-18 11:24:29.766 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" completed keep alive response. +2017-07-18 11:24:29.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:24:30.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:30.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:24:30.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:30.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:30.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3772.6453ms +2017-07-18 11:24:30.256 +05:30 [Information] Request finished in 4108.2403ms 200 application/json; charset=utf-8 +2017-07-18 11:24:30.258 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" completed keep alive response. +2017-07-18 11:24:30.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:24:30.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:30.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:30.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:30.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3221.9195ms +2017-07-18 11:24:30.377 +05:30 [Information] Request finished in 3292.7369ms 200 application/json; charset=utf-8 +2017-07-18 11:24:30.378 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" completed keep alive response. +2017-07-18 11:24:30.387 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:24:30.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:24:30.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:24:30.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:30.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:24:30.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:30.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:30.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4341.7632ms +2017-07-18 11:24:30.535 +05:30 [Information] Request finished in 4392.4133ms 200 application/json; charset=utf-8 +2017-07-18 11:24:30.536 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" completed keep alive response. +2017-07-18 11:24:33.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:24:33.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:33.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:33.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:33.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.6854ms +2017-07-18 11:24:33.450 +05:30 [Information] Request finished in 3068.6807ms 200 application/json; charset=utf-8 +2017-07-18 11:24:33.451 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" completed keep alive response. +2017-07-18 11:24:33.457 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:24:33.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:24:33.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:24:36.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:24:36.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:24:36.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:24:36.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:24:36.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3098.735ms +2017-07-18 11:24:36.563 +05:30 [Information] Request finished in 3106.4304ms 200 application/json; charset=utf-8 +2017-07-18 11:24:36.563 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" completed keep alive response. +2017-07-18 11:27:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" received FIN. +2017-07-18 11:27:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" received FIN. +2017-07-18 11:27:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" received FIN. +2017-07-18 11:27:20.819 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" disconnecting. +2017-07-18 11:27:20.819 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" sending FIN. +2017-07-18 11:27:20.820 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" sent FIN with status "0". +2017-07-18 11:27:20.820 +05:30 [Debug] Connection id ""0HL6DJS7MM76A"" stopped. +2017-07-18 11:27:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" received FIN. +2017-07-18 11:27:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" received FIN. +2017-07-18 11:27:20.825 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" disconnecting. +2017-07-18 11:27:20.829 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" sending FIN. +2017-07-18 11:27:20.830 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" sent FIN with status "0". +2017-07-18 11:27:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM768"" stopped. +2017-07-18 11:27:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" disconnecting. +2017-07-18 11:27:20.864 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" sending FIN. +2017-07-18 11:27:20.864 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" sent FIN with status "0". +2017-07-18 11:27:20.865 +05:30 [Debug] Connection id ""0HL6DJS7MM766"" stopped. +2017-07-18 11:27:20.859 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" disconnecting. +2017-07-18 11:27:20.873 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" disconnecting. +2017-07-18 11:27:20.873 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" received FIN. +2017-07-18 11:27:20.883 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" sending FIN. +2017-07-18 11:27:20.883 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" sending FIN. +2017-07-18 11:27:20.884 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" sent FIN with status "0". +2017-07-18 11:27:20.885 +05:30 [Debug] Connection id ""0HL6DJS7MM76B"" stopped. +2017-07-18 11:27:20.885 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" sent FIN with status "0". +2017-07-18 11:27:20.885 +05:30 [Debug] Connection id ""0HL6DJS7MM769"" stopped. +2017-07-18 11:27:20.886 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" disconnecting. +2017-07-18 11:27:20.886 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" sending FIN. +2017-07-18 11:27:20.886 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" sent FIN with status "0". +2017-07-18 11:27:20.887 +05:30 [Debug] Connection id ""0HL6DJS7MM767"" stopped. +2017-07-18 11:30:15.935 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" started. +2017-07-18 11:30:15.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:30:15.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:30:15.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:30:19.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:30:19.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:19.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:19.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:19.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3099.0876ms +2017-07-18 11:30:19.042 +05:30 [Information] Request finished in 3105.2915ms 200 application/json; charset=utf-8 +2017-07-18 11:30:19.043 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:19.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:30:19.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:30:19.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:30:22.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:30:22.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:22.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:22.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:22.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.9457ms +2017-07-18 11:30:22.107 +05:30 [Information] Request finished in 3061.8938ms 200 application/json; charset=utf-8 +2017-07-18 11:30:22.108 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:22.144 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:30:22.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:30:22.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:30:25.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:30:25.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:25.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:25.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:25.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3073.5222ms +2017-07-18 11:30:25.224 +05:30 [Information] Request finished in 3080.23ms 200 application/json; charset=utf-8 +2017-07-18 11:30:25.224 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:25.230 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:30:25.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:30:25.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:30:28.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:28.333 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:28.334 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:28.335 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:28.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3102.389ms +2017-07-18 11:30:28.339 +05:30 [Information] Request finished in 3110.7909ms 200 application/json; charset=utf-8 +2017-07-18 11:30:28.340 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:28.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:30:28.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:30:28.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:30:31.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:31.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:31.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:31.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:31.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.8801ms +2017-07-18 11:30:31.463 +05:30 [Information] Request finished in 3116.7435ms 200 application/json; charset=utf-8 +2017-07-18 11:30:31.463 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:33.183 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" started. +2017-07-18 11:30:33.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:30:33.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:30:33.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:30:33.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:30:33.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:30:33.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:30:34.498 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" started. +2017-07-18 11:30:34.499 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" started. +2017-07-18 11:30:34.499 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" started. +2017-07-18 11:30:34.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:30:34.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:30:34.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:30:34.544 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:30:34.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:30:34.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:30:34.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:30:34.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:30:34.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:30:35.534 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" started. +2017-07-18 11:30:35.535 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:30:35.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:30:35.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:30:36.276 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:36.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:36.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:30:36.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:36.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:36.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3099.7547ms +2017-07-18 11:30:36.391 +05:30 [Information] Request finished in 3166.8688ms 200 application/json; charset=utf-8 +2017-07-18 11:30:36.393 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:36.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:36.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:36.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:30:36.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:36.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:36.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3564.8189ms +2017-07-18 11:30:36.787 +05:30 [Information] Request finished in 3594.7031ms 200 application/json; charset=utf-8 +2017-07-18 11:30:36.788 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" completed keep alive response. +2017-07-18 11:30:37.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:37.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:37.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:30:38.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:38.093 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:30:38.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:38.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:38.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:30:38.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:38.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:38.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:38.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3584.4026ms +2017-07-18 11:30:38.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3575.5363ms +2017-07-18 11:30:38.150 +05:30 [Information] Request finished in 3648.5692ms 200 application/json; charset=utf-8 +2017-07-18 11:30:38.157 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" completed keep alive response. +2017-07-18 11:30:38.160 +05:30 [Information] Request finished in 3636.037ms 200 application/json; charset=utf-8 +2017-07-18 11:30:38.163 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" completed keep alive response. +2017-07-18 11:30:38.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:30:38.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:38.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:38.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:38.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3238.1511ms +2017-07-18 11:30:38.778 +05:30 [Information] Request finished in 3242.892ms 200 application/json; charset=utf-8 +2017-07-18 11:30:38.779 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" completed keep alive response. +2017-07-18 11:30:38.781 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:30:38.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:30:38.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:30:39.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:39.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:30:39.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:39.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:39.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5029.8186ms +2017-07-18 11:30:39.585 +05:30 [Information] Request finished in 5085.0431ms 200 application/json; charset=utf-8 +2017-07-18 11:30:39.586 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" completed keep alive response. +2017-07-18 11:30:41.820 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:30:41.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:41.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:41.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:41.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.762ms +2017-07-18 11:30:41.834 +05:30 [Information] Request finished in 3052.8632ms 200 application/json; charset=utf-8 +2017-07-18 11:30:41.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:30:41.845 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:30:41.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:30:41.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:30:43.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:30:44.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:30:44.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:30:44.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:30:44.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2169.1661ms +2017-07-18 11:30:44.033 +05:30 [Information] Request finished in 2186.4234ms 200 application/json; charset=utf-8 +2017-07-18 11:30:44.034 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" completed keep alive response. +2017-07-18 11:31:08.597 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 11:31:08.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 11:31:08.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 11:31:11.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:31:11.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:11.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:11.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:11.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3207.8971ms +2017-07-18 11:31:11.840 +05:30 [Information] Request finished in 3243.7034ms 200 application/json; charset=utf-8 +2017-07-18 11:31:11.841 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" completed keep alive response. +2017-07-18 11:31:11.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:31:11.984 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:31:11.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:31:15.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:15.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:15.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:15.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:15.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3122.2852ms +2017-07-18 11:31:15.115 +05:30 [Information] Request finished in 3132.6652ms 200 application/json; charset=utf-8 +2017-07-18 11:31:15.115 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" completed keep alive response. +2017-07-18 11:31:15.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:31:15.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:31:15.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:31:18.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:18.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:18.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:18.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:18.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3121.496ms +2017-07-18 11:31:18.252 +05:30 [Information] Request finished in 3130.4831ms 200 application/json; charset=utf-8 +2017-07-18 11:31:18.252 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" completed keep alive response. +2017-07-18 11:31:27.272 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:31:27.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:31:27.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:31:27.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:31:27.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:31:27.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:31:27.560 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:31:27.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:31:27.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:31:28.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:31:28.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:31:28.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:31:28.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:31:28.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:31:28.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:31:28.865 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:31:28.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:31:28.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:31:29.181 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" started. +2017-07-18 11:31:29.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:31:29.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:31:29.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:31:30.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:30.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:30.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:30.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:30.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:30.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2820.5813ms +2017-07-18 11:31:30.405 +05:30 [Information] Request finished in 2937.6231ms 200 application/json; charset=utf-8 +2017-07-18 11:31:30.406 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:31:30.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:30.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:30.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:30.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:30.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3452.1207ms +2017-07-18 11:31:30.743 +05:30 [Information] Request finished in 3476.8575ms 200 application/json; charset=utf-8 +2017-07-18 11:31:30.744 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" completed keep alive response. +2017-07-18 11:31:30.757 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:31:30.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:31:30.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:31:30.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:30.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:30.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:30.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:30.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:30.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3284.1659ms +2017-07-18 11:31:30.856 +05:30 [Information] Request finished in 3306.2859ms 200 application/json; charset=utf-8 +2017-07-18 11:31:30.857 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" completed keep alive response. +2017-07-18 11:31:31.955 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:32.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:32.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:32.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:32.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:32.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:32.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:32.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3539.5293ms +2017-07-18 11:31:32.324 +05:30 [Information] Request finished in 3692.7155ms 200 application/json; charset=utf-8 +2017-07-18 11:31:32.325 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" completed keep alive response. +2017-07-18 11:31:32.362 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:32.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:32.365 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:32.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:32.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3493.2811ms +2017-07-18 11:31:32.374 +05:30 [Information] Request finished in 3725.6975ms 200 application/json; charset=utf-8 +2017-07-18 11:31:32.375 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" completed keep alive response. +2017-07-18 11:31:32.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:32.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:32.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:32.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:32.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4077.7533ms +2017-07-18 11:31:32.966 +05:30 [Information] Request finished in 4327.712ms 200 application/json; charset=utf-8 +2017-07-18 11:31:32.966 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" completed keep alive response. +2017-07-18 11:31:33.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:33.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:33.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:33.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:33.902 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3132.7437ms +2017-07-18 11:31:33.906 +05:30 [Information] Request finished in 3149.254ms 200 application/json; charset=utf-8 +2017-07-18 11:31:33.907 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:31:34.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:31:34.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:31:34.832 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:31:34.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:31:34.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:31:34.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:31:35.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:31:35.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:31:35.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:31:35.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:31:35.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:31:35.465 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:31:35.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:31:35.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:31:35.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:31:36.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:31:36.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:31:36.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:31:36.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:31:36.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:36.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:36.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:36.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7458.4339ms +2017-07-18 11:31:36.687 +05:30 [Information] Request finished in 7501.1363ms 200 application/json; charset=utf-8 +2017-07-18 11:31:36.687 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" completed keep alive response. +2017-07-18 11:31:38.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:38.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:38.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:38.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:38.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:38.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3185.795ms +2017-07-18 11:31:38.023 +05:30 [Information] Request finished in 3206.8748ms 200 application/json; charset=utf-8 +2017-07-18 11:31:38.024 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" completed keep alive response. +2017-07-18 11:31:38.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:38.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:38.169 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:38.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:38.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:38.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3336.3962ms +2017-07-18 11:31:38.178 +05:30 [Information] Request finished in 3350.1458ms 200 application/json; charset=utf-8 +2017-07-18 11:31:38.179 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" completed keep alive response. +2017-07-18 11:31:38.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:38.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:38.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:31:38.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:38.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:38.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:38.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:38.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3455.5188ms +2017-07-18 11:31:39.005 +05:30 [Information] Request finished in 3564.52ms 200 application/json; charset=utf-8 +2017-07-18 11:31:39.006 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" completed keep alive response. +2017-07-18 11:31:39.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:39.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:39.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:39.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:39.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3584.5516ms +2017-07-18 11:31:39.056 +05:30 [Information] Request finished in 3621.1899ms 200 application/json; charset=utf-8 +2017-07-18 11:31:39.057 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" completed keep alive response. +2017-07-18 11:31:39.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:31:39.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:39.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:39.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:39.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:31:39.465 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:31:39.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:31:39.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3154.722ms +2017-07-18 11:31:39.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:31:39.501 +05:30 [Information] Request finished in 3197.8406ms 200 application/json; charset=utf-8 +2017-07-18 11:31:39.502 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" completed keep alive response. +2017-07-18 11:31:39.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4052.3786ms +2017-07-18 11:31:39.550 +05:30 [Information] Request finished in 4110.7137ms 200 application/json; charset=utf-8 +2017-07-18 11:31:39.551 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" completed keep alive response. +2017-07-18 11:33:20.814 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" received FIN. +2017-07-18 11:33:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" received FIN. +2017-07-18 11:33:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" disconnecting. +2017-07-18 11:33:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" received FIN. +2017-07-18 11:33:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" received FIN. +2017-07-18 11:33:20.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" received FIN. +2017-07-18 11:33:20.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" disconnecting. +2017-07-18 11:33:20.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" sending FIN. +2017-07-18 11:33:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" sending FIN. +2017-07-18 11:33:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" sent FIN with status "0". +2017-07-18 11:33:20.841 +05:30 [Debug] Connection id ""0HL6DJS7MM76E"" stopped. +2017-07-18 11:33:20.841 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" sent FIN with status "0". +2017-07-18 11:33:20.842 +05:30 [Debug] Connection id ""0HL6DJS7MM76I"" stopped. +2017-07-18 11:33:20.826 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" disconnecting. +2017-07-18 11:33:20.843 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" disconnecting. +2017-07-18 11:33:20.834 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" disconnecting. +2017-07-18 11:33:20.843 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" sending FIN. +2017-07-18 11:33:20.834 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" received FIN. +2017-07-18 11:33:20.856 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" received FIN. +2017-07-18 11:33:20.857 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" sending FIN. +2017-07-18 11:33:20.858 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" sent FIN with status "0". +2017-07-18 11:33:20.856 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" disconnecting. +2017-07-18 11:33:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" sending FIN. +2017-07-18 11:33:20.857 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" disconnecting. +2017-07-18 11:33:20.859 +05:30 [Debug] Connection id ""0HL6DJS7MM76D"" stopped. +2017-07-18 11:33:20.862 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" sending FIN. +2017-07-18 11:33:20.861 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" sent FIN with status "0". +2017-07-18 11:33:20.864 +05:30 [Debug] Connection id ""0HL6DJS7MM76C"" stopped. +2017-07-18 11:33:20.863 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" sending FIN. +2017-07-18 11:33:20.865 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" sent FIN with status "0". +2017-07-18 11:33:20.865 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" sent FIN with status "0". +2017-07-18 11:33:20.866 +05:30 [Debug] Connection id ""0HL6DJS7MM76G"" stopped. +2017-07-18 11:33:20.866 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" sent FIN with status "0". +2017-07-18 11:33:20.865 +05:30 [Debug] Connection id ""0HL6DJS7MM76F"" stopped. +2017-07-18 11:33:20.867 +05:30 [Debug] Connection id ""0HL6DJS7MM76H"" stopped. +2017-07-18 11:40:41.750 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" started. +2017-07-18 11:40:41.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:40:41.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:40:41.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:40:43.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:40:43.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:40:43.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:40:43.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:40:43.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2158.6736ms +2017-07-18 11:40:43.927 +05:30 [Information] Request finished in 2173.425ms 200 application/json; charset=utf-8 +2017-07-18 11:40:43.927 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:40:43.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:40:43.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:40:43.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:40:46.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:40:46.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:40:46.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:40:46.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:40:46.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3045.8572ms +2017-07-18 11:40:46.988 +05:30 [Information] Request finished in 3057.0268ms 200 application/json; charset=utf-8 +2017-07-18 11:40:46.989 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:40:47.059 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:40:47.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:40:47.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:40:50.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:40:50.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:40:50.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:40:50.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:40:50.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3140.3417ms +2017-07-18 11:40:50.206 +05:30 [Information] Request finished in 3202.6219ms 200 application/json; charset=utf-8 +2017-07-18 11:40:50.207 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:40:50.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:40:50.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:40:50.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:40:53.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:40:53.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:40:53.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:40:53.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:40:53.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3130.0733ms +2017-07-18 11:40:53.373 +05:30 [Information] Request finished in 3153.006ms 200 application/json; charset=utf-8 +2017-07-18 11:40:53.374 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:40:53.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:40:53.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:40:53.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:40:56.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:40:56.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:40:56.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:40:56.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:40:56.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3151.407ms +2017-07-18 11:40:56.551 +05:30 [Information] Request finished in 3171.9643ms 200 application/json; charset=utf-8 +2017-07-18 11:40:56.551 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:40:59.141 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" started. +2017-07-18 11:40:59.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:40:59.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:40:59.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:40:59.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:40:59.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:40:59.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:40:59.926 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" started. +2017-07-18 11:40:59.926 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" started. +2017-07-18 11:40:59.931 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" started. +2017-07-18 11:40:59.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:40:59.992 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:40:59.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:41:00.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:41:00.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:41:00.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:41:00.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:41:00.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:41:00.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:41:01.478 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" started. +2017-07-18 11:41:01.571 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:41:01.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:41:01.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:41:02.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:41:02.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:02.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:41:02.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:02.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:03.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3808.3417ms +2017-07-18 11:41:03.040 +05:30 [Information] Request finished in 3889.0226ms 200 application/json; charset=utf-8 +2017-07-18 11:41:03.041 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" completed keep alive response. +2017-07-18 11:41:03.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:41:03.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:03.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:41:03.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:03.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:03.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3854.3148ms +2017-07-18 11:41:03.090 +05:30 [Information] Request finished in 3945.8329ms 200 application/json; charset=utf-8 +2017-07-18 11:41:03.091 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:41:03.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:41:03.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:41:03.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:41:03.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:03.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:41:03.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:03.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:03.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3690.595ms +2017-07-18 11:41:03.705 +05:30 [Information] Request finished in 3773.2922ms 200 application/json; charset=utf-8 +2017-07-18 11:41:03.706 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" completed keep alive response. +2017-07-18 11:41:04.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:04.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:41:04.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:04.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:04.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3991.5279ms +2017-07-18 11:41:04.015 +05:30 [Information] Request finished in 4079.4427ms 200 application/json; charset=utf-8 +2017-07-18 11:41:04.016 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" completed keep alive response. +2017-07-18 11:41:04.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:41:04.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:04.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:04.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:04.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2605.7896ms +2017-07-18 11:41:04.203 +05:30 [Information] Request finished in 2707.5169ms 200 application/json; charset=utf-8 +2017-07-18 11:41:04.204 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" completed keep alive response. +2017-07-18 11:41:04.212 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:41:04.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:41:04.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:41:05.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:05.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:41:05.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:05.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:05.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5305.0901ms +2017-07-18 11:41:05.326 +05:30 [Information] Request finished in 5341.3934ms 200 application/json; charset=utf-8 +2017-07-18 11:41:05.327 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" completed keep alive response. +2017-07-18 11:41:07.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:41:07.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:07.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:07.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:07.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3071.0677ms +2017-07-18 11:41:07.295 +05:30 [Information] Request finished in 3085.8042ms 200 application/json; charset=utf-8 +2017-07-18 11:41:07.296 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" completed keep alive response. +2017-07-18 11:41:07.310 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:41:07.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:41:07.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:41:10.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:41:10.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:41:10.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:41:10.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:41:10.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3181.9066ms +2017-07-18 11:41:10.509 +05:30 [Information] Request finished in 3198.8172ms 200 application/json; charset=utf-8 +2017-07-18 11:41:10.517 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" completed keep alive response. +2017-07-18 11:43:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" received FIN. +2017-07-18 11:43:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" received FIN. +2017-07-18 11:43:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" received FIN. +2017-07-18 11:43:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" received FIN. +2017-07-18 11:43:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" received FIN. +2017-07-18 11:43:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" disconnecting. +2017-07-18 11:43:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" disconnecting. +2017-07-18 11:43:20.822 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" disconnecting. +2017-07-18 11:43:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" disconnecting. +2017-07-18 11:43:20.822 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" received FIN. +2017-07-18 11:43:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" sending FIN. +2017-07-18 11:43:20.826 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" disconnecting. +2017-07-18 11:43:20.823 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" sending FIN. +2017-07-18 11:43:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" sending FIN. +2017-07-18 11:43:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" sending FIN. +2017-07-18 11:43:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" sent FIN with status "0". +2017-07-18 11:43:20.830 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" sending FIN. +2017-07-18 11:43:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM76N"" stopped. +2017-07-18 11:43:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" disconnecting. +2017-07-18 11:43:20.833 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" sent FIN with status "0". +2017-07-18 11:43:20.834 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" sent FIN with status "0". +2017-07-18 11:43:20.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76O"" stopped. +2017-07-18 11:43:20.835 +05:30 [Debug] Connection id ""0HL6DJS7MM76J"" stopped. +2017-07-18 11:43:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" sent FIN with status "0". +2017-07-18 11:43:20.836 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" sent FIN with status "0". +2017-07-18 11:43:20.837 +05:30 [Debug] Connection id ""0HL6DJS7MM76M"" stopped. +2017-07-18 11:43:20.838 +05:30 [Debug] Connection id ""0HL6DJS7MM76L"" stopped. +2017-07-18 11:43:20.839 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" sending FIN. +2017-07-18 11:43:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" sent FIN with status "0". +2017-07-18 11:43:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM76K"" stopped. +2017-07-18 11:44:31.565 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" started. +2017-07-18 11:44:31.567 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:44:31.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:44:31.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:44:34.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:44:34.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:34.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:34.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:34.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.5624ms +2017-07-18 11:44:34.620 +05:30 [Information] Request finished in 3053.4668ms 200 application/json; charset=utf-8 +2017-07-18 11:44:34.621 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:34.623 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:44:34.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:44:34.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:44:37.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:44:37.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:37.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:37.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:37.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3115.4232ms +2017-07-18 11:44:37.749 +05:30 [Information] Request finished in 3124.9666ms 200 application/json; charset=utf-8 +2017-07-18 11:44:37.750 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:37.767 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:44:37.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:44:37.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:44:39.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:44:39.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:39.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:39.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:39.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2126.4835ms +2017-07-18 11:44:39.905 +05:30 [Information] Request finished in 2140.25ms 200 application/json; charset=utf-8 +2017-07-18 11:44:39.906 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:39.917 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:44:39.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:44:39.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:44:42.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:43.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:43.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:43.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:43.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3111.3368ms +2017-07-18 11:44:43.056 +05:30 [Information] Request finished in 3139.4839ms 200 application/json; charset=utf-8 +2017-07-18 11:44:43.057 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:43.089 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:44:43.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:44:43.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:44:46.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:46.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:46.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:46.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:46.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.444ms +2017-07-18 11:44:46.202 +05:30 [Information] Request finished in 3117.5053ms 200 application/json; charset=utf-8 +2017-07-18 11:44:46.203 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:48.324 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" started. +2017-07-18 11:44:48.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:44:48.334 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:44:48.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:44:48.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:44:48.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:44:48.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:44:49.065 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" started. +2017-07-18 11:44:49.073 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" started. +2017-07-18 11:44:49.075 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" started. +2017-07-18 11:44:49.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:44:49.095 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:44:49.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:44:49.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:44:49.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:44:49.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:44:49.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:44:49.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:44:49.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:44:49.922 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" started. +2017-07-18 11:44:49.966 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:44:50.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:44:50.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:44:51.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:51.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:51.649 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:44:51.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:51.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:51.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:51.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:51.779 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:44:51.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:51.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3357.4101ms +2017-07-18 11:44:51.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:51.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3455.2106ms +2017-07-18 11:44:51.800 +05:30 [Information] Request finished in 3472.731ms 200 application/json; charset=utf-8 +2017-07-18 11:44:51.802 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:51.803 +05:30 [Information] Request finished in 3475.607ms 200 application/json; charset=utf-8 +2017-07-18 11:44:51.809 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:44:52.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:52.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:52.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:52.386 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:44:52.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:52.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:44:52.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:52.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3329.5736ms +2017-07-18 11:44:52.516 +05:30 [Information] Request finished in 3413.3626ms 200 application/json; charset=utf-8 +2017-07-18 11:44:52.517 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:44:52.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:52.631 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:44:52.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:52.632 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:52.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3536.0779ms +2017-07-18 11:44:52.637 +05:30 [Information] Request finished in 3563.0262ms 200 application/json; charset=utf-8 +2017-07-18 11:44:52.637 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" completed keep alive response. +2017-07-18 11:44:53.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:44:53.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:53.178 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:53.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:53.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3168.6808ms +2017-07-18 11:44:53.189 +05:30 [Information] Request finished in 3259.5206ms 200 application/json; charset=utf-8 +2017-07-18 11:44:53.189 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" completed keep alive response. +2017-07-18 11:44:53.216 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:44:53.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:44:53.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:44:54.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:54.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:44:54.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:54.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:54.135 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5034.0837ms +2017-07-18 11:44:54.137 +05:30 [Information] Request finished in 5041.9218ms 200 application/json; charset=utf-8 +2017-07-18 11:44:54.138 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" completed keep alive response. +2017-07-18 11:44:55.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:44:55.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:55.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:55.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:55.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2090.7003ms +2017-07-18 11:44:55.312 +05:30 [Information] Request finished in 2112.9349ms 200 application/json; charset=utf-8 +2017-07-18 11:44:55.313 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" completed keep alive response. +2017-07-18 11:44:55.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:44:55.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:44:55.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:44:57.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:44:57.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:44:57.541 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:44:57.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:44:57.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2228.1479ms +2017-07-18 11:44:57.630 +05:30 [Information] Request finished in 2292.6893ms 200 application/json; charset=utf-8 +2017-07-18 11:44:57.631 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:45:52.278 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:45:52.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:45:52.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:45:55.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:45:55.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:45:55.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:45:55.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:45:55.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3154.9411ms +2017-07-18 11:45:55.443 +05:30 [Information] Request finished in 3162.9715ms 200 application/json; charset=utf-8 +2017-07-18 11:45:55.444 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:45:55.447 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" received FIN. +2017-07-18 11:45:55.449 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" disconnecting. +2017-07-18 11:45:55.482 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" sending FIN. +2017-07-18 11:45:55.482 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" sent FIN with status "0". +2017-07-18 11:45:55.483 +05:30 [Debug] Connection id ""0HL6DJS7MM76U"" stopped. +2017-07-18 11:45:55.486 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" received FIN. +2017-07-18 11:45:55.486 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" received FIN. +2017-07-18 11:45:55.487 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" received FIN. +2017-07-18 11:45:55.487 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" disconnecting. +2017-07-18 11:45:55.492 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" sending FIN. +2017-07-18 11:45:55.492 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" disconnecting. +2017-07-18 11:45:55.492 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" sent FIN with status "0". +2017-07-18 11:45:55.498 +05:30 [Debug] Connection id ""0HL6DJS7MM76R"" stopped. +2017-07-18 11:45:55.490 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" disconnecting. +2017-07-18 11:45:55.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:45:55.499 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" sending FIN. +2017-07-18 11:45:55.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:45:55.500 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" sending FIN. +2017-07-18 11:45:55.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:45:55.502 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" sent FIN with status "0". +2017-07-18 11:45:55.503 +05:30 [Debug] Connection id ""0HL6DJS7MM76T"" stopped. +2017-07-18 11:45:55.514 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" sent FIN with status "0". +2017-07-18 11:45:55.515 +05:30 [Debug] Connection id ""0HL6DJS7MM76P"" stopped. +2017-07-18 11:45:58.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:45:58.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:45:58.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:45:58.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:45:58.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3038.0791ms +2017-07-18 11:45:58.545 +05:30 [Information] Request finished in 3093.7826ms 200 application/json; charset=utf-8 +2017-07-18 11:45:58.545 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:45:58.576 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:45:58.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:45:58.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:46:01.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:46:01.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:01.628 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:01.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:01.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3051.4042ms +2017-07-18 11:46:01.634 +05:30 [Information] Request finished in 3076.4684ms 200 application/json; charset=utf-8 +2017-07-18 11:46:01.635 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:46:01.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:46:01.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:46:01.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:46:04.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:04.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:04.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:04.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:04.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3199.3801ms +2017-07-18 11:46:04.857 +05:30 [Information] Request finished in 3211.3372ms 200 application/json; charset=utf-8 +2017-07-18 11:46:04.858 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:46:04.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:46:04.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:46:04.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:46:07.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:08.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:08.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:08.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:08.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3151.7523ms +2017-07-18 11:46:08.028 +05:30 [Information] Request finished in 3166.7752ms 200 application/json; charset=utf-8 +2017-07-18 11:46:08.029 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:46:09.904 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:46:09.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:46:09.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:46:09.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:46:09.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:46:09.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:46:10.713 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" started. +2017-07-18 11:46:10.717 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" started. +2017-07-18 11:46:10.723 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" started. +2017-07-18 11:46:10.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:46:10.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:46:10.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:46:10.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:46:10.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:46:10.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:46:10.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:46:10.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:46:10.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:46:11.909 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" started. +2017-07-18 11:46:11.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:46:11.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:46:11.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:46:13.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:13.177 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:13.179 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:46:13.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:13.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:13.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3334.1734ms +2017-07-18 11:46:13.248 +05:30 [Information] Request finished in 3371.9983ms 200 application/json; charset=utf-8 +2017-07-18 11:46:13.250 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:46:13.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:14.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:14.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:46:14.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:14.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:14.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:14.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:14.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:46:14.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4315.9779ms +2017-07-18 11:46:14.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:14.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:46:14.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:14.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:14.496 +05:30 [Information] Request finished in 4587.8103ms 200 application/json; charset=utf-8 +2017-07-18 11:46:14.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3752.8265ms +2017-07-18 11:46:14.534 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:46:14.634 +05:30 [Information] Request finished in 3879.0164ms 200 application/json; charset=utf-8 +2017-07-18 11:46:14.712 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" completed keep alive response. +2017-07-18 11:46:14.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:14.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:46:14.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:14.781 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:14.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3996.2936ms +2017-07-18 11:46:14.811 +05:30 [Information] Request finished in 4055.1297ms 200 application/json; charset=utf-8 +2017-07-18 11:46:14.812 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" completed keep alive response. +2017-07-18 11:46:15.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:15.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:46:15.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:15.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:15.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4334.1135ms +2017-07-18 11:46:15.112 +05:30 [Information] Request finished in 4372.2668ms 200 application/json; charset=utf-8 +2017-07-18 11:46:15.112 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" completed keep alive response. +2017-07-18 11:46:15.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:46:15.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:15.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:15.240 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:15.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3318.5152ms +2017-07-18 11:46:15.245 +05:30 [Information] Request finished in 3335.0474ms 200 application/json; charset=utf-8 +2017-07-18 11:46:15.246 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" completed keep alive response. +2017-07-18 11:46:15.248 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:46:15.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:46:15.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:46:18.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:46:18.309 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:18.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:18.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:18.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3061.7938ms +2017-07-18 11:46:18.322 +05:30 [Information] Request finished in 3072.1542ms 200 application/json; charset=utf-8 +2017-07-18 11:46:18.322 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" completed keep alive response. +2017-07-18 11:46:18.337 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:46:18.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:46:18.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:46:21.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:46:21.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:46:21.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:46:21.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:46:21.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3095.92ms +2017-07-18 11:46:21.447 +05:30 [Information] Request finished in 3111.6586ms 200 application/json; charset=utf-8 +2017-07-18 11:46:21.449 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" completed keep alive response. +2017-07-18 11:47:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" received FIN. +2017-07-18 11:47:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" received FIN. +2017-07-18 11:47:20.824 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" disconnecting. +2017-07-18 11:47:20.819 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" received FIN. +2017-07-18 11:47:20.824 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" received FIN. +2017-07-18 11:47:20.829 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" received FIN. +2017-07-18 11:47:20.834 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" sending FIN. +2017-07-18 11:47:20.820 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" disconnecting. +2017-07-18 11:47:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" sending FIN. +2017-07-18 11:47:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" sent FIN with status "0". +2017-07-18 11:47:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" disconnecting. +2017-07-18 11:47:20.846 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" disconnecting. +2017-07-18 11:47:20.849 +05:30 [Debug] Connection id ""0HL6DJS7MM770"" stopped. +2017-07-18 11:47:20.850 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" sending FIN. +2017-07-18 11:47:20.848 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" disconnecting. +2017-07-18 11:47:20.838 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" sent FIN with status "0". +2017-07-18 11:47:20.851 +05:30 [Debug] Connection id ""0HL6DJS7MM76V"" stopped. +2017-07-18 11:47:20.851 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" sending FIN. +2017-07-18 11:47:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" sending FIN. +2017-07-18 11:47:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" sent FIN with status "0". +2017-07-18 11:47:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" sent FIN with status "0". +2017-07-18 11:47:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM771"" stopped. +2017-07-18 11:47:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM772"" stopped. +2017-07-18 11:47:20.855 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" sent FIN with status "0". +2017-07-18 11:47:20.855 +05:30 [Debug] Connection id ""0HL6DJS7MM76Q"" stopped. +2017-07-18 11:47:41.790 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" received FIN. +2017-07-18 11:47:41.791 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" disconnecting. +2017-07-18 11:47:41.791 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" started. +2017-07-18 11:47:41.792 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" sending FIN. +2017-07-18 11:47:41.794 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" sent FIN with status "0". +2017-07-18 11:47:41.795 +05:30 [Debug] Connection id ""0HL6DJS7MM76S"" stopped. +2017-07-18 11:47:41.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:47:41.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:47:41.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:47:44.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:47:44.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:47:44.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:47:44.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:47:44.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.2451ms +2017-07-18 11:47:44.865 +05:30 [Information] Request finished in 3064.9823ms 200 application/json; charset=utf-8 +2017-07-18 11:47:44.865 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:47:44.868 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:47:44.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:47:44.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:47:47.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:47:47.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:47:47.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:47:47.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:47:47.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.2099ms +2017-07-18 11:47:47.927 +05:30 [Information] Request finished in 3057.9084ms 200 application/json; charset=utf-8 +2017-07-18 11:47:47.928 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:47:47.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:47:47.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:47:47.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:47:50.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:47:50.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:47:50.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:47:50.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:47:50.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2218.2533ms +2017-07-18 11:47:50.175 +05:30 [Information] Request finished in 2234.1866ms 200 application/json; charset=utf-8 +2017-07-18 11:47:50.176 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:47:50.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:47:50.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:47:50.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:47:53.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:47:53.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:47:53.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:47:53.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:47:53.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3191.4079ms +2017-07-18 11:47:53.412 +05:30 [Information] Request finished in 3217.8957ms 200 application/json; charset=utf-8 +2017-07-18 11:47:53.412 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:47:53.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:47:53.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:47:53.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:47:56.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:47:56.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:47:56.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:47:56.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:47:56.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3321.6465ms +2017-07-18 11:47:56.749 +05:30 [Information] Request finished in 3331.747ms 200 application/json; charset=utf-8 +2017-07-18 11:47:56.750 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:47:58.357 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" started. +2017-07-18 11:47:58.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:47:58.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:47:58.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:47:58.385 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:47:58.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:47:58.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:47:59.818 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" started. +2017-07-18 11:47:59.831 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" started. +2017-07-18 11:47:59.836 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" started. +2017-07-18 11:47:59.852 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:47:59.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:47:59.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:47:59.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:47:59.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:47:59.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:47:59.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:47:59.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:47:59.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:48:00.811 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" started. +2017-07-18 11:48:00.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:48:00.827 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:00.839 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:48:00.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:00.886 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:48:00.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:00.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:48:00.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:48:00.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2495.8283ms +2017-07-18 11:48:00.903 +05:30 [Information] Request finished in 2541.5846ms 200 application/json; charset=utf-8 +2017-07-18 11:48:00.904 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:48:02.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:48:02.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:48:02.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:02.880 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:48:02.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:02.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:03.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:03.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:48:03.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:03.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4602.2604ms +2017-07-18 11:48:03.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:03.044 +05:30 [Information] Request finished in 4681.8333ms 200 application/json; charset=utf-8 +2017-07-18 11:48:03.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3106.5539ms +2017-07-18 11:48:03.050 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" completed keep alive response. +2017-07-18 11:48:03.055 +05:30 [Information] Request finished in 3171.6296ms 200 application/json; charset=utf-8 +2017-07-18 11:48:03.058 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" completed keep alive response. +2017-07-18 11:48:03.488 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:48:03.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:48:03.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:03.651 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:48:03.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:03.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:03.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3708.1317ms +2017-07-18 11:48:03.659 +05:30 [Information] Request finished in 3772.1155ms 200 application/json; charset=utf-8 +2017-07-18 11:48:03.659 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" completed keep alive response. +2017-07-18 11:48:03.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:48:03.829 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:03.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:03.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:03.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2943.1907ms +2017-07-18 11:48:03.842 +05:30 [Information] Request finished in 3013.9561ms 200 application/json; charset=utf-8 +2017-07-18 11:48:03.843 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" completed keep alive response. +2017-07-18 11:48:03.871 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:48:03.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:48:03.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:48:05.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:05.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:48:05.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:05.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:05.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5391.192ms +2017-07-18 11:48:05.259 +05:30 [Information] Request finished in 5423.4906ms 200 application/json; charset=utf-8 +2017-07-18 11:48:05.260 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" completed keep alive response. +2017-07-18 11:48:05.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:48:05.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:05.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:05.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:05.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2091.4694ms +2017-07-18 11:48:05.968 +05:30 [Information] Request finished in 2114.7584ms 200 application/json; charset=utf-8 +2017-07-18 11:48:05.968 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" completed keep alive response. +2017-07-18 11:48:05.976 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:48:05.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:48:05.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:48:09.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:48:09.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:09.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:09.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:09.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3126.9553ms +2017-07-18 11:48:09.112 +05:30 [Information] Request finished in 3135.2518ms 200 application/json; charset=utf-8 +2017-07-18 11:48:09.117 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" completed keep alive response. +2017-07-18 11:48:55.482 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 11:48:55.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 11:48:55.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 11:48:58.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:48:58.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:48:58.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:48:58.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:48:58.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3338.908ms +2017-07-18 11:48:58.828 +05:30 [Information] Request finished in 3404.9876ms 200 application/json; charset=utf-8 +2017-07-18 11:48:58.829 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" completed keep alive response. +2017-07-18 11:48:58.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:48:58.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:48:58.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:49:02.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:02.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:02.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:02.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:02.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3211.518ms +2017-07-18 11:49:02.128 +05:30 [Information] Request finished in 3228.0055ms 200 application/json; charset=utf-8 +2017-07-18 11:49:02.129 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" completed keep alive response. +2017-07-18 11:49:02.141 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:49:02.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:49:02.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:49:05.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:05.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:05.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:05.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:05.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3162.5626ms +2017-07-18 11:49:05.314 +05:30 [Information] Request finished in 3172.4662ms 200 application/json; charset=utf-8 +2017-07-18 11:49:05.315 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" completed keep alive response. +2017-07-18 11:49:11.412 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" received FIN. +2017-07-18 11:49:11.413 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" received FIN. +2017-07-18 11:49:11.414 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" disconnecting. +2017-07-18 11:49:11.415 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" sending FIN. +2017-07-18 11:49:11.414 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" disconnecting. +2017-07-18 11:49:11.415 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" sent FIN with status "0". +2017-07-18 11:49:11.417 +05:30 [Debug] Connection id ""0HL6DJS7MM776"" stopped. +2017-07-18 11:49:11.416 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" received FIN. +2017-07-18 11:49:11.419 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" disconnecting. +2017-07-18 11:49:11.420 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" sending FIN. +2017-07-18 11:49:11.418 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" sending FIN. +2017-07-18 11:49:11.420 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" sent FIN with status "0". +2017-07-18 11:49:11.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:49:11.425 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" sent FIN with status "0". +2017-07-18 11:49:11.431 +05:30 [Debug] Connection id ""0HL6DJS7MM774"" stopped. +2017-07-18 11:49:11.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:49:11.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:49:11.426 +05:30 [Debug] Connection id ""0HL6DJS7MM773"" stopped. +2017-07-18 11:49:12.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:49:12.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:49:12.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:49:12.619 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:49:12.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:49:12.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:49:13.500 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" started. +2017-07-18 11:49:13.516 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" started. +2017-07-18 11:49:13.522 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" started. +2017-07-18 11:49:13.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:49:13.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:49:13.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:49:13.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:49:13.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:49:13.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:49:13.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:49:13.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:49:13.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:49:14.447 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" started. +2017-07-18 11:49:14.456 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:49:14.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:49:14.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:49:15.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:15.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:15.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:15.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:15.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4350.2514ms +2017-07-18 11:49:15.795 +05:30 [Information] Request finished in 4374.959ms 200 application/json; charset=utf-8 +2017-07-18 11:49:15.796 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" completed keep alive response. +2017-07-18 11:49:15.802 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:49:15.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:49:15.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:49:16.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:16.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:16.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:16.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:16.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:16.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:17.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4383.6333ms +2017-07-18 11:49:17.065 +05:30 [Information] Request finished in 4672.4856ms 200 application/json; charset=utf-8 +2017-07-18 11:49:17.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:17.086 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:17.085 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" completed keep alive response. +2017-07-18 11:49:17.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:17.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:17.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4409.0514ms +2017-07-18 11:49:17.129 +05:30 [Information] Request finished in 4742.4694ms 200 application/json; charset=utf-8 +2017-07-18 11:49:17.130 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" completed keep alive response. +2017-07-18 11:49:18.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:18.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:49:18.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:18.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:18.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:18.306 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:18.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:18.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:18.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4816.6253ms +2017-07-18 11:49:18.405 +05:30 [Information] Request finished in 4869.8796ms 200 application/json; charset=utf-8 +2017-07-18 11:49:18.426 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" completed keep alive response. +2017-07-18 11:49:18.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:18.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:18.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:18.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:18.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4933.7453ms +2017-07-18 11:49:18.523 +05:30 [Information] Request finished in 4993.3789ms 200 application/json; charset=utf-8 +2017-07-18 11:49:18.523 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" completed keep alive response. +2017-07-18 11:49:18.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:18.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:18.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:18.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4457.3857ms +2017-07-18 11:49:18.930 +05:30 [Information] Request finished in 4481.2524ms 200 application/json; charset=utf-8 +2017-07-18 11:49:18.931 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" completed keep alive response. +2017-07-18 11:49:19.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:19.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:19.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:19.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:19.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3340.176ms +2017-07-18 11:49:19.156 +05:30 [Information] Request finished in 3355.7213ms 200 application/json; charset=utf-8 +2017-07-18 11:49:19.157 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" completed keep alive response. +2017-07-18 11:49:19.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:19.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:19.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:19.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:19.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5721.046ms +2017-07-18 11:49:19.291 +05:30 [Information] Request finished in 5762.6904ms 200 application/json; charset=utf-8 +2017-07-18 11:49:19.292 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" completed keep alive response. +2017-07-18 11:49:20.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:49:20.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:49:20.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:49:20.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:49:20.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:49:20.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:49:21.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:49:21.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:49:21.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:49:21.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:49:21.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:49:21.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:49:21.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:49:21.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:49:21.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:49:21.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:21.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:22.006 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:22.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:22.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:22.030 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:22.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1556.8187ms +2017-07-18 11:49:22.216 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:49:22.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:49:22.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:49:22.332 +05:30 [Information] Request finished in 1726.0782ms 200 application/json; charset=utf-8 +2017-07-18 11:49:22.333 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" completed keep alive response. +2017-07-18 11:49:22.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:22.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:22.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:22.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:22.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 1998.3979ms +2017-07-18 11:49:22.562 +05:30 [Information] Request finished in 2080.7296ms 200 application/json; charset=utf-8 +2017-07-18 11:49:22.564 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" completed keep alive response. +2017-07-18 11:49:24.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:24.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:24.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:49:24.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:24.750 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:24.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:24.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:24.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3672.234ms +2017-07-18 11:49:24.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:24.844 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:24.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:24.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:24.850 +05:30 [Information] Request finished in 3766.4146ms 200 application/json; charset=utf-8 +2017-07-18 11:49:24.850 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" completed keep alive response. +2017-07-18 11:49:24.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3759.2403ms +2017-07-18 11:49:24.884 +05:30 [Information] Request finished in 3802.7446ms 200 application/json; charset=utf-8 +2017-07-18 11:49:24.885 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" completed keep alive response. +2017-07-18 11:49:25.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:25.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:49:25.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:25.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:25.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4386.6831ms +2017-07-18 11:49:25.485 +05:30 [Information] Request finished in 4403.115ms 200 application/json; charset=utf-8 +2017-07-18 11:49:25.485 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" completed keep alive response. +2017-07-18 11:49:25.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:49:25.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:49:25.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:49:25.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:49:25.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3419.3433ms +2017-07-18 11:49:25.640 +05:30 [Information] Request finished in 3523.886ms 200 application/json; charset=utf-8 +2017-07-18 11:49:25.641 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" completed keep alive response. +2017-07-18 11:50:38.123 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" received FIN. +2017-07-18 11:50:38.123 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" received FIN. +2017-07-18 11:50:38.126 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" received FIN. +2017-07-18 11:50:38.126 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" disconnecting. +2017-07-18 11:50:38.125 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" disconnecting. +2017-07-18 11:50:38.126 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" received FIN. +2017-07-18 11:50:38.125 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" received FIN. +2017-07-18 11:50:38.145 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" disconnecting. +2017-07-18 11:50:38.147 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" disconnecting. +2017-07-18 11:50:38.146 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" disconnecting. +2017-07-18 11:50:38.147 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" received FIN. +2017-07-18 11:50:38.148 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" sending FIN. +2017-07-18 11:50:38.149 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" sending FIN. +2017-07-18 11:50:38.149 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" sent FIN with status "0". +2017-07-18 11:50:38.146 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" received FIN. +2017-07-18 11:50:38.152 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" sending FIN. +2017-07-18 11:50:38.153 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" sending FIN. +2017-07-18 11:50:38.153 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" sending FIN. +2017-07-18 11:50:38.155 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" started. +2017-07-18 11:50:38.155 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" disconnecting. +2017-07-18 11:50:38.155 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" disconnecting. +2017-07-18 11:50:38.155 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" sent FIN with status "0". +2017-07-18 11:50:38.150 +05:30 [Debug] Connection id ""0HL6DJS7MM778"" stopped. +2017-07-18 11:50:38.161 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" sent FIN with status "0". +2017-07-18 11:50:38.161 +05:30 [Debug] Connection id ""0HL6DJS7MM77A"" stopped. +2017-07-18 11:50:38.160 +05:30 [Debug] Connection id ""0HL6DJS7MM779"" stopped. +2017-07-18 11:50:38.162 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" sending FIN. +2017-07-18 11:50:38.162 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" sent FIN with status "0". +2017-07-18 11:50:38.163 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" sent FIN with status "0". +2017-07-18 11:50:38.163 +05:30 [Debug] Connection id ""0HL6DJS7MM77C"" stopped. +2017-07-18 11:50:38.163 +05:30 [Debug] Connection id ""0HL6DJS7MM77B"" stopped. +2017-07-18 11:50:38.164 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" sent FIN with status "0". +2017-07-18 11:50:38.166 +05:30 [Debug] Connection id ""0HL6DJS7MM777"" stopped. +2017-07-18 11:50:38.167 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" sending FIN. +2017-07-18 11:50:38.168 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" sent FIN with status "0". +2017-07-18 11:50:38.169 +05:30 [Debug] Connection id ""0HL6DJS7MM775"" stopped. +2017-07-18 11:50:38.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:50:38.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:50:38.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:50:40.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:50:40.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:40.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:40.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:40.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2164.9149ms +2017-07-18 11:50:40.344 +05:30 [Information] Request finished in 2175.3356ms 200 application/json; charset=utf-8 +2017-07-18 11:50:40.345 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:40.350 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:50:40.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:50:40.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:50:43.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:50:43.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:43.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:43.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:43.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.8005ms +2017-07-18 11:50:43.420 +05:30 [Information] Request finished in 3072.6922ms 200 application/json; charset=utf-8 +2017-07-18 11:50:43.420 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:43.452 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:50:43.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:50:43.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:50:46.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:50:46.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:46.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:46.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:46.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3062.015ms +2017-07-18 11:50:46.525 +05:30 [Information] Request finished in 3089.4221ms 200 application/json; charset=utf-8 +2017-07-18 11:50:46.526 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:46.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:50:46.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:50:46.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:50:48.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:48.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:48.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:48.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:48.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2174.6864ms +2017-07-18 11:50:48.719 +05:30 [Information] Request finished in 2186.6565ms 200 application/json; charset=utf-8 +2017-07-18 11:50:48.720 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:48.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:50:48.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:50:48.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:50:51.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:51.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:51.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:51.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:51.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3130.2994ms +2017-07-18 11:50:51.863 +05:30 [Information] Request finished in 3135.6746ms 200 application/json; charset=utf-8 +2017-07-18 11:50:51.864 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:53.662 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" started. +2017-07-18 11:50:53.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:50:53.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:50:53.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:50:53.888 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:50:53.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:50:53.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:50:54.358 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" started. +2017-07-18 11:50:54.359 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" started. +2017-07-18 11:50:54.364 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" started. +2017-07-18 11:50:54.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:50:54.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:50:54.379 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:50:54.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:50:54.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:50:54.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:50:54.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:50:54.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:50:54.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:50:55.509 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" started. +2017-07-18 11:50:55.572 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:50:55.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:50:55.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:50:57.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:57.401 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:57.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:50:57.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:57.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:57.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3563.8966ms +2017-07-18 11:50:57.407 +05:30 [Information] Request finished in 3740.5446ms 200 application/json; charset=utf-8 +2017-07-18 11:50:57.408 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:50:57.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:57.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:57.535 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:50:57.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:57.536 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:57.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3645.4443ms +2017-07-18 11:50:57.594 +05:30 [Information] Request finished in 3899.0831ms 200 application/json; charset=utf-8 +2017-07-18 11:50:57.602 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:50:57.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:57.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:57.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:50:57.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:57.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:50:57.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:57.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:57.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3438.2357ms +2017-07-18 11:50:57.900 +05:30 [Information] Request finished in 3533.4876ms 200 application/json; charset=utf-8 +2017-07-18 11:50:57.901 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" completed keep alive response. +2017-07-18 11:50:58.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:58.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:50:58.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:58.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:58.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3615.673ms +2017-07-18 11:50:58.010 +05:30 [Information] Request finished in 3637.7671ms 200 application/json; charset=utf-8 +2017-07-18 11:50:58.010 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" completed keep alive response. +2017-07-18 11:50:58.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:58.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:50:58.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:58.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:58.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4216.1771ms +2017-07-18 11:50:58.611 +05:30 [Information] Request finished in 4240.8212ms 200 application/json; charset=utf-8 +2017-07-18 11:50:58.612 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" completed keep alive response. +2017-07-18 11:50:58.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:50:58.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:50:58.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:50:58.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:50:58.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3187.6215ms +2017-07-18 11:50:58.778 +05:30 [Information] Request finished in 3256.9445ms 200 application/json; charset=utf-8 +2017-07-18 11:50:58.778 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" completed keep alive response. +2017-07-18 11:50:58.784 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:50:58.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:50:58.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:51:01.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:51:01.820 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:51:01.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:51:01.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:51:01.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3036.3347ms +2017-07-18 11:51:01.828 +05:30 [Information] Request finished in 3047.3334ms 200 application/json; charset=utf-8 +2017-07-18 11:51:01.828 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:51:01.844 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:51:01.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:51:01.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:51:04.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:51:04.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:51:04.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:51:04.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:51:04.917 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3068.9452ms +2017-07-18 11:51:04.920 +05:30 [Information] Request finished in 3084.8259ms 200 application/json; charset=utf-8 +2017-07-18 11:51:04.922 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:51:59.635 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" received FIN. +2017-07-18 11:51:59.635 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" received FIN. +2017-07-18 11:51:59.636 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" disconnecting. +2017-07-18 11:51:59.636 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" received FIN. +2017-07-18 11:51:59.638 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" disconnecting. +2017-07-18 11:51:59.638 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" received FIN. +2017-07-18 11:51:59.639 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" sending FIN. +2017-07-18 11:51:59.647 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" sent FIN with status "0". +2017-07-18 11:51:59.647 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" sending FIN. +2017-07-18 11:51:59.648 +05:30 [Debug] Connection id ""0HL6DJS7MM77F"" stopped. +2017-07-18 11:51:59.645 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" disconnecting. +2017-07-18 11:51:59.649 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" sent FIN with status "0". +2017-07-18 11:51:59.650 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" sending FIN. +2017-07-18 11:51:59.651 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" sent FIN with status "0". +2017-07-18 11:51:59.651 +05:30 [Debug] Connection id ""0HL6DJS7MM77H"" stopped. +2017-07-18 11:51:59.650 +05:30 [Debug] Connection id ""0HL6DJS7MM77G"" stopped. +2017-07-18 11:51:59.647 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" disconnecting. +2017-07-18 11:51:59.653 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:51:59.654 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" sending FIN. +2017-07-18 11:51:59.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:51:59.655 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" sent FIN with status "0". +2017-07-18 11:51:59.656 +05:30 [Debug] Connection id ""0HL6DJS7MM77I"" stopped. +2017-07-18 11:51:59.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:52:02.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:52:02.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:02.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:02.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:02.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.5536ms +2017-07-18 11:52:02.723 +05:30 [Information] Request finished in 3069.8937ms 200 application/json; charset=utf-8 +2017-07-18 11:52:02.723 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:52:02.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:52:02.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:52:02.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:52:05.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:52:05.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:05.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:05.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:05.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3158.0343ms +2017-07-18 11:52:05.915 +05:30 [Information] Request finished in 3186.8581ms 200 application/json; charset=utf-8 +2017-07-18 11:52:05.917 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:52:05.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 11:52:05.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 11:52:05.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 11:52:09.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:52:09.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:09.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:09.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:09.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3069.9083ms +2017-07-18 11:52:09.024 +05:30 [Information] Request finished in 3097.5995ms 200 application/json; charset=utf-8 +2017-07-18 11:52:09.024 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:52:09.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 11:52:09.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 11:52:09.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 11:52:12.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:12.222 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:12.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:12.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:12.231 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3190.5621ms +2017-07-18 11:52:12.234 +05:30 [Information] Request finished in 3204.85ms 200 application/json; charset=utf-8 +2017-07-18 11:52:12.235 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:52:12.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:52:12.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:52:12.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:52:15.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:15.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:15.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:15.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:15.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3215.2359ms +2017-07-18 11:52:15.471 +05:30 [Information] Request finished in 3221.7341ms 200 application/json; charset=utf-8 +2017-07-18 11:52:15.471 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:52:17.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 11:52:17.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 11:52:17.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 11:52:17.751 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 11:52:17.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 11:52:17.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 11:52:18.536 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" started. +2017-07-18 11:52:18.542 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" started. +2017-07-18 11:52:18.550 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" started. +2017-07-18 11:52:18.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 11:52:18.651 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 11:52:18.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 11:52:18.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 11:52:18.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 11:52:18.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 11:52:19.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 11:52:19.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 11:52:19.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 11:52:19.851 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" started. +2017-07-18 11:52:19.859 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 11:52:19.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 11:52:19.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 11:52:21.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:21.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:21.629 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:52:21.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:21.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:21.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:21.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3908.4186ms +2017-07-18 11:52:21.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:21.722 +05:30 [Information] Request finished in 4004.3045ms 200 application/json; charset=utf-8 +2017-07-18 11:52:21.722 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:52:21.725 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:52:21.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:21.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:21.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4013.2556ms +2017-07-18 11:52:21.767 +05:30 [Information] Request finished in 4053.7717ms 200 application/json; charset=utf-8 +2017-07-18 11:52:21.768 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:52:21.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:22.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:22.255 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:52:22.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:22.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:22.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3605.5678ms +2017-07-18 11:52:22.270 +05:30 [Information] Request finished in 3715.1106ms 200 application/json; charset=utf-8 +2017-07-18 11:52:22.271 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" completed keep alive response. +2017-07-18 11:52:22.572 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:22.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:22.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:52:22.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:22.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 11:52:22.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:22.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3480.5158ms +2017-07-18 11:52:22.711 +05:30 [Information] Request finished in 3677.2139ms 200 application/json; charset=utf-8 +2017-07-18 11:52:22.712 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" completed keep alive response. +2017-07-18 11:52:22.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 11:52:22.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:22.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:22.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:22.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3104.9773ms +2017-07-18 11:52:22.979 +05:30 [Information] Request finished in 3125.0076ms 200 application/json; charset=utf-8 +2017-07-18 11:52:22.980 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" completed keep alive response. +2017-07-18 11:52:22.987 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 11:52:22.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 11:52:22.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 11:52:23.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:23.509 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 11:52:23.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:23.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:23.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4718.4719ms +2017-07-18 11:52:23.518 +05:30 [Information] Request finished in 4842.1477ms 200 application/json; charset=utf-8 +2017-07-18 11:52:23.518 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" completed keep alive response. +2017-07-18 11:52:26.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 11:52:26.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:26.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:26.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:26.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.6903ms +2017-07-18 11:52:26.048 +05:30 [Information] Request finished in 3064.5413ms 200 application/json; charset=utf-8 +2017-07-18 11:52:26.048 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" completed keep alive response. +2017-07-18 11:52:26.064 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 11:52:26.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 11:52:26.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 11:52:29.108 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 11:52:29.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 11:52:29.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 11:52:29.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 11:52:29.186 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3116.4442ms +2017-07-18 11:52:29.190 +05:30 [Information] Request finished in 3127.141ms 200 application/json; charset=utf-8 +2017-07-18 11:52:29.191 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" completed keep alive response. +2017-07-18 11:55:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" received FIN. +2017-07-18 11:55:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" received FIN. +2017-07-18 11:55:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" received FIN. +2017-07-18 11:55:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" disconnecting. +2017-07-18 11:55:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" disconnecting. +2017-07-18 11:55:20.817 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" received FIN. +2017-07-18 11:55:20.823 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" received FIN. +2017-07-18 11:55:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" received FIN. +2017-07-18 11:55:20.823 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" sending FIN. +2017-07-18 11:55:20.824 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" sending FIN. +2017-07-18 11:55:20.824 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" sent FIN with status "0". +2017-07-18 11:55:20.824 +05:30 [Debug] Connection id ""0HL6DJS7MM77J"" stopped. +2017-07-18 11:55:20.825 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" sent FIN with status "0". +2017-07-18 11:55:20.825 +05:30 [Debug] Connection id ""0HL6DJS7MM77M"" stopped. +2017-07-18 11:55:20.826 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" disconnecting. +2017-07-18 11:55:20.826 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" disconnecting. +2017-07-18 11:55:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" disconnecting. +2017-07-18 11:55:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" sending FIN. +2017-07-18 11:55:20.827 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" sent FIN with status "0". +2017-07-18 11:55:20.828 +05:30 [Debug] Connection id ""0HL6DJS7MM77E"" stopped. +2017-07-18 11:55:20.826 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" sending FIN. +2017-07-18 11:55:20.828 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" sending FIN. +2017-07-18 11:55:20.829 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" sent FIN with status "0". +2017-07-18 11:55:20.829 +05:30 [Debug] Connection id ""0HL6DJS7MM77D"" stopped. +2017-07-18 11:55:20.829 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" sent FIN with status "0". +2017-07-18 11:55:20.830 +05:30 [Debug] Connection id ""0HL6DJS7MM77L"" stopped. +2017-07-18 11:55:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" disconnecting. +2017-07-18 11:55:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" sending FIN. +2017-07-18 11:55:20.832 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" sent FIN with status "0". +2017-07-18 11:55:20.833 +05:30 [Debug] Connection id ""0HL6DJS7MM77K"" stopped. +2017-07-18 12:51:45.583 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" started. +2017-07-18 12:51:45.585 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 12:51:45.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 12:51:45.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 12:51:48.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:51:48.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:51:48.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:51:48.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:51:48.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3159.4834ms +2017-07-18 12:51:48.751 +05:30 [Information] Request finished in 3166.2805ms 200 application/json; charset=utf-8 +2017-07-18 12:51:48.752 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:51:48.755 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 12:51:48.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 12:51:48.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 12:51:51.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 12:51:51.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:51:51.793 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:51:51.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:51:51.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3036.4002ms +2017-07-18 12:51:51.799 +05:30 [Information] Request finished in 3043.5119ms 200 application/json; charset=utf-8 +2017-07-18 12:51:51.800 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:51:51.833 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 12:51:51.834 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 12:51:51.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 12:51:54.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:51:54.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:51:54.873 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:51:54.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:51:54.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3040.917ms +2017-07-18 12:51:54.922 +05:30 [Information] Request finished in 3068.5108ms 200 application/json; charset=utf-8 +2017-07-18 12:51:54.924 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:51:54.941 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 12:51:54.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 12:51:54.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 12:51:57.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 12:51:58.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:51:58.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:51:58.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:51:58.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3061.5796ms +2017-07-18 12:51:58.016 +05:30 [Information] Request finished in 3073.6977ms 200 application/json; charset=utf-8 +2017-07-18 12:51:58.019 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:51:58.029 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 12:51:58.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 12:51:58.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 12:52:01.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:52:01.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:01.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:01.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:01.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.9507ms +2017-07-18 12:52:01.101 +05:30 [Information] Request finished in 3072.0572ms 200 application/json; charset=utf-8 +2017-07-18 12:52:01.102 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:52:01.115 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 12:52:01.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 12:52:01.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 12:52:04.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:04.222 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:04.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:04.224 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:04.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3103.7795ms +2017-07-18 12:52:04.229 +05:30 [Information] Request finished in 3116.3889ms 200 application/json; charset=utf-8 +2017-07-18 12:52:04.229 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:52:04.238 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 12:52:04.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 12:52:04.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 12:52:07.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:07.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:07.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:07.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:07.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3120.9014ms +2017-07-18 12:52:07.368 +05:30 [Information] Request finished in 3130.1997ms 200 application/json; charset=utf-8 +2017-07-18 12:52:07.368 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:52:08.902 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" started. +2017-07-18 12:52:08.922 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 12:52:08.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 12:52:08.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 12:52:08.947 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 12:52:08.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 12:52:08.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 12:52:09.535 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" started. +2017-07-18 12:52:09.535 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" started. +2017-07-18 12:52:09.539 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" started. +2017-07-18 12:52:09.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 12:52:09.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 12:52:09.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 12:52:09.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 12:52:09.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 12:52:09.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 12:52:09.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 12:52:09.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 12:52:09.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 12:52:10.533 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" started. +2017-07-18 12:52:10.534 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 12:52:10.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 12:52:10.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 12:52:11.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:11.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:11.412 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:52:11.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:11.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:11.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2481.2299ms +2017-07-18 12:52:11.421 +05:30 [Information] Request finished in 2505.5693ms 200 application/json; charset=utf-8 +2017-07-18 12:52:11.422 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" completed keep alive response. +2017-07-18 12:52:11.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:11.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:11.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:52:11.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:11.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:11.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2337.4702ms +2017-07-18 12:52:11.926 +05:30 [Information] Request finished in 2382.2581ms 200 application/json; charset=utf-8 +2017-07-18 12:52:11.927 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" completed keep alive response. +2017-07-18 12:52:12.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:12.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:12.187 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:52:12.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:12.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:12.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3240.2951ms +2017-07-18 12:52:12.194 +05:30 [Information] Request finished in 3277.0013ms 200 application/json; charset=utf-8 +2017-07-18 12:52:12.194 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:52:12.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:12.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:13.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:13.008 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:52:13.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:13.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:13.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3430.9708ms +2017-07-18 12:52:13.013 +05:30 [Information] Request finished in 3475.1763ms 200 application/json; charset=utf-8 +2017-07-18 12:52:13.014 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" completed keep alive response. +2017-07-18 12:52:13.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:52:13.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:13.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:13.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:13.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.3905ms +2017-07-18 12:52:13.606 +05:30 [Information] Request finished in 3071.414ms 200 application/json; charset=utf-8 +2017-07-18 12:52:13.606 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" completed keep alive response. +2017-07-18 12:52:13.608 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 12:52:13.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 12:52:13.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 12:52:14.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:14.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:52:14.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:14.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:14.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4967.1116ms +2017-07-18 12:52:14.555 +05:30 [Information] Request finished in 5010.9914ms 200 application/json; charset=utf-8 +2017-07-18 12:52:14.556 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" completed keep alive response. +2017-07-18 12:52:15.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 12:52:15.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:15.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:15.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:15.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2131.675ms +2017-07-18 12:52:15.748 +05:30 [Information] Request finished in 2139.3011ms 200 application/json; charset=utf-8 +2017-07-18 12:52:15.748 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" completed keep alive response. +2017-07-18 12:52:15.757 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 12:52:15.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 12:52:15.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 12:52:18.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 12:52:18.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:18.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:18.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:18.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3160.7994ms +2017-07-18 12:52:18.935 +05:30 [Information] Request finished in 3175.5713ms 200 application/json; charset=utf-8 +2017-07-18 12:52:18.935 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" completed keep alive response. +2017-07-18 12:52:43.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 12:52:43.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 12:52:43.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 12:52:46.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:52:46.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:46.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:46.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:46.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3029.1124ms +2017-07-18 12:52:46.693 +05:30 [Information] Request finished in 3035.3107ms 200 application/json; charset=utf-8 +2017-07-18 12:52:46.693 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:52:46.697 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 12:52:46.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 12:52:46.701 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 12:52:49.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 12:52:49.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:49.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:49.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:49.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.9496ms +2017-07-18 12:52:49.770 +05:30 [Information] Request finished in 3071.6325ms 200 application/json; charset=utf-8 +2017-07-18 12:52:49.771 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" completed keep alive response. +2017-07-18 12:52:49.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 12:52:49.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 12:52:49.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 12:52:51.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:52:51.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:51.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:51.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:51.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2142.4006ms +2017-07-18 12:52:51.968 +05:30 [Information] Request finished in 2154.3121ms 200 application/json; charset=utf-8 +2017-07-18 12:52:51.968 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" completed keep alive response. +2017-07-18 12:52:51.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 12:52:51.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 12:52:51.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 12:52:55.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:55.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:55.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:55.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:55.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3098.9857ms +2017-07-18 12:52:55.085 +05:30 [Information] Request finished in 3109.0336ms 200 application/json; charset=utf-8 +2017-07-18 12:52:55.086 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" completed keep alive response. +2017-07-18 12:52:55.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 12:52:55.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 12:52:55.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 12:52:58.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:52:58.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:52:58.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:52:58.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:52:58.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3125.4152ms +2017-07-18 12:52:58.243 +05:30 [Information] Request finished in 3145.3663ms 200 application/json; charset=utf-8 +2017-07-18 12:52:58.244 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" completed keep alive response. +2017-07-18 12:52:59.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 12:52:59.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 12:52:59.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 12:52:59.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 12:52:59.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 12:52:59.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 12:53:00.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 12:53:00.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 12:53:00.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 12:53:00.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 12:53:00.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 12:53:00.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 12:53:00.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 12:53:00.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 12:53:00.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 12:53:01.783 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 12:53:01.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 12:53:01.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 12:53:03.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:53:03.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:53:04.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:04.031 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:53:04.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:04.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:04.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:04.033 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:53:04.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4345.1672ms +2017-07-18 12:53:04.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:04.042 +05:30 [Information] Request finished in 4357.1211ms 200 application/json; charset=utf-8 +2017-07-18 12:53:04.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:04.044 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:53:04.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4360.4943ms +2017-07-18 12:53:04.059 +05:30 [Information] Request finished in 4374.0065ms 200 application/json; charset=utf-8 +2017-07-18 12:53:04.060 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" completed keep alive response. +2017-07-18 12:53:04.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:53:04.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:53:04.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 12:53:04.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:04.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:53:04.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:04.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:04.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4069.3839ms +2017-07-18 12:53:04.574 +05:30 [Information] Request finished in 4110.3496ms 200 application/json; charset=utf-8 +2017-07-18 12:53:04.575 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" completed keep alive response. +2017-07-18 12:53:04.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:04.819 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:53:04.819 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:04.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:04.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4268.2932ms +2017-07-18 12:53:04.834 +05:30 [Information] Request finished in 4366.7965ms 200 application/json; charset=utf-8 +2017-07-18 12:53:04.835 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" completed keep alive response. +2017-07-18 12:53:05.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 12:53:05.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:05.017 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:05.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:05.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3236.6812ms +2017-07-18 12:53:05.025 +05:30 [Information] Request finished in 3242.6321ms 200 application/json; charset=utf-8 +2017-07-18 12:53:05.026 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" completed keep alive response. +2017-07-18 12:53:05.030 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 12:53:05.032 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 12:53:05.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 12:53:05.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:05.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 12:53:05.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:05.386 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:05.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4838.2434ms +2017-07-18 12:53:05.395 +05:30 [Information] Request finished in 4925.2011ms 200 application/json; charset=utf-8 +2017-07-18 12:53:05.396 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" completed keep alive response. +2017-07-18 12:53:08.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 12:53:08.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:08.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:08.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:08.080 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3041.104ms +2017-07-18 12:53:08.083 +05:30 [Information] Request finished in 3054.311ms 200 application/json; charset=utf-8 +2017-07-18 12:53:08.084 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" completed keep alive response. +2017-07-18 12:53:08.091 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 12:53:08.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 12:53:08.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 12:53:11.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 12:53:11.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 12:53:11.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 12:53:11.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 12:53:11.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3097.2946ms +2017-07-18 12:53:11.194 +05:30 [Information] Request finished in 3103.3207ms 200 application/json; charset=utf-8 +2017-07-18 12:53:11.195 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" completed keep alive response. +2017-07-18 12:55:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" received FIN. +2017-07-18 12:55:20.815 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" received FIN. +2017-07-18 12:55:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" received FIN. +2017-07-18 12:55:20.816 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" disconnecting. +2017-07-18 12:55:20.817 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" received FIN. +2017-07-18 12:55:20.818 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" disconnecting. +2017-07-18 12:55:20.831 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" disconnecting. +2017-07-18 12:55:20.822 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" received FIN. +2017-07-18 12:55:20.825 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" received FIN. +2017-07-18 12:55:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" sending FIN. +2017-07-18 12:55:20.841 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" sent FIN with status "0". +2017-07-18 12:55:20.839 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" disconnecting. +2017-07-18 12:55:20.838 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" disconnecting. +2017-07-18 12:55:20.841 +05:30 [Debug] Connection id ""0HL6DJS7MM77Q"" stopped. +2017-07-18 12:55:20.839 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" sending FIN. +2017-07-18 12:55:20.840 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" disconnecting. +2017-07-18 12:55:20.844 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" sending FIN. +2017-07-18 12:55:20.845 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" sending FIN. +2017-07-18 12:55:20.846 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" sent FIN with status "0". +2017-07-18 12:55:20.846 +05:30 [Debug] Connection id ""0HL6DJS7MM77R"" stopped. +2017-07-18 12:55:20.845 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" sending FIN. +2017-07-18 12:55:20.847 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" sent FIN with status "0". +2017-07-18 12:55:20.849 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" sending FIN. +2017-07-18 12:55:20.849 +05:30 [Debug] Connection id ""0HL6DJS7MM77N"" stopped. +2017-07-18 12:55:20.850 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" sent FIN with status "0". +2017-07-18 12:55:20.852 +05:30 [Debug] Connection id ""0HL6DJS7MM77O"" stopped. +2017-07-18 12:55:20.853 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" sent FIN with status "0". +2017-07-18 12:55:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM77S"" stopped. +2017-07-18 12:55:20.854 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" sent FIN with status "0". +2017-07-18 12:55:20.858 +05:30 [Debug] Connection id ""0HL6DJS7MM77P"" stopped. +2017-07-18 13:59:46.542 +05:30 [Debug] Hosting starting +2017-07-18 13:59:46.997 +05:30 [Debug] Hosting started +2017-07-18 13:59:47.110 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" started. +2017-07-18 13:59:47.110 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" started. +2017-07-18 13:59:47.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 13:59:47.394 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 13:59:47.497 +05:30 [Information] Request finished in 185.9811ms 200 +2017-07-18 13:59:47.599 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 13:59:48.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 13:59:48.756 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"5cefb90c-c024-40be-a4b3-8d186a1e6362"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 13:59:49.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 13:59:49.270 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 13:59:49.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 13:59:49.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 13:59:49.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 13:59:49.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 13:59:49.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 13:59:49.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 13:59:49.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 13:59:49.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 776.3492ms +2017-07-18 13:59:49.886 +05:30 [Information] Request finished in 2599.4927ms 200 application/json; charset=utf-8 +2017-07-18 13:59:49.889 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 13:59:53.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 14:00:00.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:00.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:00.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:00.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11180.8058ms +2017-07-18 14:00:00.906 +05:30 [Information] Request finished in 11201.8839ms 200 application/json; charset=utf-8 +2017-07-18 14:00:00.907 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:01.416 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 14:00:01.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 14:00:01.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 14:00:04.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 14:00:04.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:04.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:04.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:04.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3278.7381ms +2017-07-18 14:00:04.700 +05:30 [Information] Request finished in 3284.4662ms 200 application/json; charset=utf-8 +2017-07-18 14:00:04.701 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 14:00:05.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 14:00:05.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 14:00:05.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 14:00:08.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 14:00:08.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:08.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:08.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:08.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3070.3794ms +2017-07-18 14:00:08.306 +05:30 [Information] Request finished in 3083.6297ms 200 application/json; charset=utf-8 +2017-07-18 14:00:08.307 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:08.339 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 14:00:08.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 14:00:08.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 14:00:10.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 14:00:10.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:10.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:10.476 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:10.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2134.5275ms +2017-07-18 14:00:10.481 +05:30 [Information] Request finished in 2143.1342ms 200 application/json; charset=utf-8 +2017-07-18 14:00:10.482 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 14:00:10.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 14:00:10.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 14:00:10.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 14:00:13.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 14:00:13.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:13.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:13.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:13.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3072.2963ms +2017-07-18 14:00:13.596 +05:30 [Information] Request finished in 3082.6551ms 200 application/json; charset=utf-8 +2017-07-18 14:00:13.597 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:13.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 14:00:13.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 14:00:13.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 14:00:15.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:16.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:16.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:16.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:16.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2430.4116ms +2017-07-18 14:00:16.178 +05:30 [Information] Request finished in 2445.9827ms 200 application/json; charset=utf-8 +2017-07-18 14:00:16.179 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 14:00:16.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 14:00:16.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 14:00:16.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 14:00:19.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:19.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:19.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:19.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:19.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.4853ms +2017-07-18 14:00:19.386 +05:30 [Information] Request finished in 3117.0755ms 200 application/json; charset=utf-8 +2017-07-18 14:00:19.386 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:29.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 14:00:29.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 14:00:29.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 14:00:29.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 14:00:29.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 14:00:29.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 14:00:30.547 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBV"" started. +2017-07-18 14:00:30.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 14:00:30.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 14:00:30.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 14:00:30.561 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC0"" started. +2017-07-18 14:00:30.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 14:00:30.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 14:00:30.567 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC1"" started. +2017-07-18 14:00:30.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 14:00:30.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 14:00:30.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 14:00:30.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 14:00:31.788 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC2"" started. +2017-07-18 14:00:31.790 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 14:00:31.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 14:00:31.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 14:00:32.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:32.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:32.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:32.669 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 14:00:32.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:33.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:33.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4006.1005ms +2017-07-18 14:00:33.442 +05:30 [Information] Request finished in 4080.1158ms 200 application/json; charset=utf-8 +2017-07-18 14:00:33.444 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:33.488 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:33.488 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 14:00:33.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:33.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:33.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4128.2915ms +2017-07-18 14:00:33.516 +05:30 [Information] Request finished in 4155.3861ms 200 application/json; charset=utf-8 +2017-07-18 14:00:33.516 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 14:00:33.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:33.795 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:33.795 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 14:00:33.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:33.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:33.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3243.7753ms +2017-07-18 14:00:33.800 +05:30 [Information] Request finished in 3251.3769ms 200 application/json; charset=utf-8 +2017-07-18 14:00:33.801 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBV"" completed keep alive response. +2017-07-18 14:00:34.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:34.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 14:00:34.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:34.968 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 14:00:34.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:34.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:35.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4794.2842ms +2017-07-18 14:00:35.387 +05:30 [Information] Request finished in 4810.5516ms 200 application/json; charset=utf-8 +2017-07-18 14:00:35.388 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC1"" completed keep alive response. +2017-07-18 14:00:35.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 14:00:35.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:35.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:35.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:35.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3810.5949ms +2017-07-18 14:00:35.608 +05:30 [Information] Request finished in 3816.5005ms 200 application/json; charset=utf-8 +2017-07-18 14:00:35.608 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC2"" completed keep alive response. +2017-07-18 14:00:35.612 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 14:00:35.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 14:00:35.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 14:00:36.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:36.782 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 14:00:36.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:36.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:36.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6208.2411ms +2017-07-18 14:00:36.790 +05:30 [Information] Request finished in 6224.1148ms 200 application/json; charset=utf-8 +2017-07-18 14:00:36.790 +05:30 [Debug] Connection id ""0HL6DMSJ4CIC0"" completed keep alive response. +2017-07-18 14:00:38.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 14:00:38.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:38.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:38.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:38.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3040.9438ms +2017-07-18 14:00:38.660 +05:30 [Information] Request finished in 3049.6353ms 200 application/json; charset=utf-8 +2017-07-18 14:00:38.661 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBT"" completed keep alive response. +2017-07-18 14:00:38.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 14:00:38.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 14:00:38.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 14:00:39.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 14:00:40.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 14:00:40.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 14:00:40.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 14:00:40.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1533.3757ms +2017-07-18 14:00:40.218 +05:30 [Information] Request finished in 1540.7751ms 200 application/json; charset=utf-8 +2017-07-18 14:00:40.219 +05:30 [Debug] Connection id ""0HL6DMSJ4CIBU"" completed keep alive response. +2017-07-18 15:17:03.214 +05:30 [Debug] Hosting starting +2017-07-18 15:17:03.579 +05:30 [Debug] Hosting started +2017-07-18 15:17:03.683 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" started. +2017-07-18 15:17:03.685 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" started. +2017-07-18 15:17:03.863 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 15:17:03.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 15:17:03.930 +05:30 [Information] Request finished in 102.5228ms 200 +2017-07-18 15:17:04.002 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:05.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 15:17:05.072 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"44e444de-2541-4b10-bbc6-bd868b0007a9"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 15:17:05.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 15:17:05.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 15:17:05.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 15:17:05.630 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:05.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:05.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:06.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 533.9297ms +2017-07-18 15:17:06.103 +05:30 [Information] Request finished in 2291.551ms 200 application/json; charset=utf-8 +2017-07-18 15:17:06.105 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:06.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 15:17:06.136 +05:30 [Debug] Request did not match any routes. +2017-07-18 15:17:06.164 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 15:17:06.166 +05:30 [Information] Request finished in 34.2841ms 404 +2017-07-18 15:17:06.167 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:07.464 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:17:07.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:17:07.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:17:11.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:17:14.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:14.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:14.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:15.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7635.127ms +2017-07-18 15:17:15.108 +05:30 [Information] Request finished in 7646.1082ms 200 application/json; charset=utf-8 +2017-07-18 15:17:15.109 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:15.587 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:17:15.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:17:15.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:17:18.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:17:18.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:18.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:18.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:18.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3276.5817ms +2017-07-18 15:17:18.875 +05:30 [Information] Request finished in 3286.6439ms 200 application/json; charset=utf-8 +2017-07-18 15:17:18.876 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:19.455 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:17:19.456 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:17:19.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:17:22.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:17:22.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:22.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:22.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:22.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3050.2308ms +2017-07-18 15:17:22.513 +05:30 [Information] Request finished in 3058.8117ms 200 application/json; charset=utf-8 +2017-07-18 15:17:22.514 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:22.517 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:17:22.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:17:22.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:17:24.603 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:17:24.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:24.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:24.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:24.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2089.6041ms +2017-07-18 15:17:24.618 +05:30 [Information] Request finished in 2100.3775ms 200 application/json; charset=utf-8 +2017-07-18 15:17:24.619 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:24.659 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:17:24.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:17:24.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:17:27.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:17:27.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:27.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:27.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:27.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3072.5173ms +2017-07-18 15:17:27.738 +05:30 [Information] Request finished in 3078.9957ms 200 application/json; charset=utf-8 +2017-07-18 15:17:27.739 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:27.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:17:27.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:17:27.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:17:30.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:31.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:31.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:31.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:31.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3376.0515ms +2017-07-18 15:17:31.244 +05:30 [Information] Request finished in 3395.1618ms 200 application/json; charset=utf-8 +2017-07-18 15:17:31.245 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:31.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:17:31.389 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:17:31.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:17:34.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:34.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:34.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:34.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:34.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3149.918ms +2017-07-18 15:17:34.556 +05:30 [Information] Request finished in 3168.2311ms 200 application/json; charset=utf-8 +2017-07-18 15:17:34.557 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:45.882 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:17:45.884 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:17:45.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:17:45.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:17:45.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:17:45.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:17:46.674 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" started. +2017-07-18 15:17:46.674 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" started. +2017-07-18 15:17:46.678 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" started. +2017-07-18 15:17:46.685 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:17:46.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:17:46.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:17:46.787 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:17:46.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:17:46.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:17:46.802 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:17:46.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:17:46.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:17:47.721 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" started. +2017-07-18 15:17:48.176 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:17:48.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:17:48.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:17:50.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:50.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:50.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:50.373 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:50.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:50.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:50.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4496.0673ms +2017-07-18 15:17:50.393 +05:30 [Information] Request finished in 4509.1548ms 200 application/json; charset=utf-8 +2017-07-18 15:17:50.395 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:50.399 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:50.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:50.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:50.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:50.419 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4517.5713ms +2017-07-18 15:17:50.422 +05:30 [Information] Request finished in 4540.713ms 200 application/json; charset=utf-8 +2017-07-18 15:17:50.423 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:17:51.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:51.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:17:51.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:51.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:51.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:51.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:51.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:51.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:51.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:51.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:17:51.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:51.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3295.6821ms +2017-07-18 15:17:51.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4802.3391ms +2017-07-18 15:17:51.507 +05:30 [Information] Request finished in 3322.1912ms 200 application/json; charset=utf-8 +2017-07-18 15:17:51.508 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" completed keep alive response. +2017-07-18 15:17:51.519 +05:30 [Information] Request finished in 4821.0975ms 200 application/json; charset=utf-8 +2017-07-18 15:17:51.520 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" completed keep alive response. +2017-07-18 15:17:51.546 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:17:51.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:17:51.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:17:51.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:51.950 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:51.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:51.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:52.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5223.2283ms +2017-07-18 15:17:52.028 +05:30 [Information] Request finished in 5308.754ms 200 application/json; charset=utf-8 +2017-07-18 15:17:52.029 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" completed keep alive response. +2017-07-18 15:17:53.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:53.552 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:17:53.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:53.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:53.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6745.7855ms +2017-07-18 15:17:53.566 +05:30 [Information] Request finished in 6884.6853ms 200 application/json; charset=utf-8 +2017-07-18 15:17:53.567 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" completed keep alive response. +2017-07-18 15:17:54.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:17:54.666 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:54.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:54.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:54.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3120.4883ms +2017-07-18 15:17:54.672 +05:30 [Information] Request finished in 3158.1643ms 200 application/json; charset=utf-8 +2017-07-18 15:17:54.673 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" completed keep alive response. +2017-07-18 15:17:54.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:17:54.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:17:54.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:17:57.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:17:57.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:17:57.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:17:57.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:17:57.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3218.9042ms +2017-07-18 15:17:57.916 +05:30 [Information] Request finished in 3226.8598ms 200 application/json; charset=utf-8 +2017-07-18 15:17:57.917 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" completed keep alive response. +2017-07-18 15:19:03.668 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" received FIN. +2017-07-18 15:19:03.669 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" received FIN. +2017-07-18 15:19:03.669 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" received FIN. +2017-07-18 15:19:03.670 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" disconnecting. +2017-07-18 15:19:03.668 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" received FIN. +2017-07-18 15:19:03.670 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" disconnecting. +2017-07-18 15:19:03.672 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" disconnecting. +2017-07-18 15:19:03.683 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" disconnecting. +2017-07-18 15:19:03.671 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" sending FIN. +2017-07-18 15:19:03.676 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" received FIN. +2017-07-18 15:19:03.686 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" sending FIN. +2017-07-18 15:19:03.688 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" sending FIN. +2017-07-18 15:19:03.687 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" received FIN. +2017-07-18 15:19:03.687 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" disconnecting. +2017-07-18 15:19:03.694 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" sending FIN. +2017-07-18 15:19:03.694 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" disconnecting. +2017-07-18 15:19:03.700 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" sent FIN with status "0". +2017-07-18 15:19:03.745 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" sending FIN. +2017-07-18 15:19:03.750 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" sending FIN. +2017-07-18 15:19:03.753 +05:30 [Debug] Connection id ""0HL6DO7OU7REU"" stopped. +2017-07-18 15:19:03.755 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" sent FIN with status "0". +2017-07-18 15:19:03.756 +05:30 [Debug] Connection id ""0HL6DO7OU7RF3"" stopped. +2017-07-18 15:19:03.756 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" sent FIN with status "0". +2017-07-18 15:19:03.755 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" sent FIN with status "0". +2017-07-18 15:19:03.757 +05:30 [Debug] Connection id ""0HL6DO7OU7RF0"" stopped. +2017-07-18 15:19:03.758 +05:30 [Debug] Connection id ""0HL6DO7OU7REV"" stopped. +2017-07-18 15:19:03.758 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" sent FIN with status "0". +2017-07-18 15:19:03.759 +05:30 [Debug] Connection id ""0HL6DO7OU7RF2"" stopped. +2017-07-18 15:19:03.759 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" sent FIN with status "0". +2017-07-18 15:19:03.760 +05:30 [Debug] Connection id ""0HL6DO7OU7RF1"" stopped. +2017-07-18 15:33:06.780 +05:30 [Debug] Hosting starting +2017-07-18 15:33:07.006 +05:30 [Debug] Hosting started +2017-07-18 15:33:07.052 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" started. +2017-07-18 15:33:07.052 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" started. +2017-07-18 15:33:07.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 15:33:07.185 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 15:33:07.261 +05:30 [Information] Request finished in 95.7488ms 200 +2017-07-18 15:33:07.367 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:08.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 15:33:08.116 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d43b6ee5-50aa-4fb1-855c-341c97264b80"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 15:33:08.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 15:33:08.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 15:33:08.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 15:33:08.502 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:08.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:08.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:08.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:33:08.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:33:08.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:33:08.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 552.1918ms +2017-07-18 15:33:08.871 +05:30 [Information] Request finished in 1725.8518ms 200 application/json; charset=utf-8 +2017-07-18 15:33:08.875 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:33:12.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:33:16.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:16.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:16.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:16.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7615.6985ms +2017-07-18 15:33:16.359 +05:30 [Information] Request finished in 7633.7544ms 200 application/json; charset=utf-8 +2017-07-18 15:33:16.360 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:16.695 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:33:16.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:33:16.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:33:19.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:33:19.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:19.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:19.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:19.895 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3196.0416ms +2017-07-18 15:33:19.897 +05:30 [Information] Request finished in 3202.2196ms 200 application/json; charset=utf-8 +2017-07-18 15:33:19.897 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:33:20.271 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:33:20.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:33:20.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:33:23.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:33:23.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:23.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:23.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:23.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.724ms +2017-07-18 15:33:23.343 +05:30 [Information] Request finished in 3070.1816ms 200 application/json; charset=utf-8 +2017-07-18 15:33:23.344 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:23.351 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:33:23.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:33:23.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:33:26.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:33:26.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:26.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:26.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:26.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.5438ms +2017-07-18 15:33:26.417 +05:30 [Information] Request finished in 3068.7167ms 200 application/json; charset=utf-8 +2017-07-18 15:33:26.418 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:33:26.467 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:33:26.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:33:26.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:33:29.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:33:29.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:29.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:29.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:29.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3073.1427ms +2017-07-18 15:33:29.555 +05:30 [Information] Request finished in 3089.7442ms 200 application/json; charset=utf-8 +2017-07-18 15:33:29.556 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:29.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:33:29.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:33:29.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:33:32.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:32.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:32.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:32.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:32.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3220.096ms +2017-07-18 15:33:32.832 +05:30 [Information] Request finished in 3235.3782ms 200 application/json; charset=utf-8 +2017-07-18 15:33:32.832 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:33:32.894 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:33:32.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:33:32.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:33:35.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:36.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:36.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:36.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:36.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3125.9102ms +2017-07-18 15:33:36.025 +05:30 [Information] Request finished in 3131.4834ms 200 application/json; charset=utf-8 +2017-07-18 15:33:36.026 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:45.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:33:45.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:33:45.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:33:45.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:33:45.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:33:45.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:33:46.258 +05:30 [Debug] Connection id ""0HL6DOGO1L2JO"" started. +2017-07-18 15:33:46.261 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" started. +2017-07-18 15:33:46.264 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" started. +2017-07-18 15:33:46.266 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:33:46.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:33:46.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:33:46.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:33:46.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:33:46.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:33:46.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:33:46.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:33:46.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:33:47.531 +05:30 [Debug] Connection id ""0HL6DOGO1L2JR"" started. +2017-07-18 15:33:47.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:33:47.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:33:47.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:33:49.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:49.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:49.980 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:49.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:50.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:50.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:33:50.091 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:50.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:50.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:50.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3771.0266ms +2017-07-18 15:33:50.167 +05:30 [Information] Request finished in 3864.4324ms 200 application/json; charset=utf-8 +2017-07-18 15:33:50.174 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" completed keep alive response. +2017-07-18 15:33:50.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:50.329 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:50.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:50.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:50.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:50.417 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:50.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:50.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:50.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4789.6807ms +2017-07-18 15:33:50.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4777.3066ms +2017-07-18 15:33:50.460 +05:30 [Information] Request finished in 4830.6084ms 200 application/json; charset=utf-8 +2017-07-18 15:33:50.460 +05:30 [Information] Request finished in 4828.3972ms 200 application/json; charset=utf-8 +2017-07-18 15:33:50.484 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:33:50.481 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:33:50.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:50.584 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:50.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:50.585 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:50.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4361.1855ms +2017-07-18 15:33:50.672 +05:30 [Information] Request finished in 4409.1435ms 200 application/json; charset=utf-8 +2017-07-18 15:33:50.673 +05:30 [Debug] Connection id ""0HL6DOGO1L2JO"" completed keep alive response. +2017-07-18 15:33:50.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:33:50.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:50.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:50.919 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:50.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3238.8468ms +2017-07-18 15:33:50.925 +05:30 [Information] Request finished in 3244.7862ms 200 application/json; charset=utf-8 +2017-07-18 15:33:50.925 +05:30 [Debug] Connection id ""0HL6DOGO1L2JR"" completed keep alive response. +2017-07-18 15:33:50.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:33:50.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:33:50.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:33:53.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:33:53.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:53.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:54.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:54.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3080.8659ms +2017-07-18 15:33:54.025 +05:30 [Information] Request finished in 3096.2106ms 200 application/json; charset=utf-8 +2017-07-18 15:33:54.028 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" completed keep alive response. +2017-07-18 15:33:54.063 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:33:54.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:33:54.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:33:54.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:54.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:33:54.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:54.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:54.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8170.4837ms +2017-07-18 15:33:54.493 +05:30 [Information] Request finished in 8226.3801ms 200 application/json; charset=utf-8 +2017-07-18 15:33:54.493 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" completed keep alive response. +2017-07-18 15:33:57.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:33:57.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:33:57.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:33:57.335 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:33:57.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3267.4932ms +2017-07-18 15:33:57.344 +05:30 [Information] Request finished in 3279.4968ms 200 application/json; charset=utf-8 +2017-07-18 15:33:57.345 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:34:44.974 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:34:44.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:34:44.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:34:47.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:34:47.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:34:47.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:34:47.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:34:47.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2169.7381ms +2017-07-18 15:34:47.149 +05:30 [Information] Request finished in 2175.3458ms 200 application/json; charset=utf-8 +2017-07-18 15:34:47.150 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:34:47.156 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:34:47.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:34:47.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:34:50.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:34:50.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:34:50.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:34:50.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:34:50.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.6924ms +2017-07-18 15:34:50.225 +05:30 [Information] Request finished in 3069.3252ms 200 application/json; charset=utf-8 +2017-07-18 15:34:50.225 +05:30 [Debug] Connection id ""0HL6DOGO1L2JO"" completed keep alive response. +2017-07-18 15:34:50.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:34:50.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:34:50.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:34:53.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:34:53.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:34:53.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:34:53.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:34:53.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.3582ms +2017-07-18 15:34:53.320 +05:30 [Information] Request finished in 3076.6444ms 200 application/json; charset=utf-8 +2017-07-18 15:34:53.320 +05:30 [Debug] Connection id ""0HL6DOGO1L2JR"" completed keep alive response. +2017-07-18 15:34:53.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:34:53.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:34:53.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:34:54.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:34:54.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:34:54.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:34:54.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:34:54.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 1264.6947ms +2017-07-18 15:34:54.599 +05:30 [Information] Request finished in 1274.0971ms 200 application/json; charset=utf-8 +2017-07-18 15:34:54.600 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" completed keep alive response. +2017-07-18 15:34:54.605 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" received FIN. +2017-07-18 15:34:54.606 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" disconnecting. +2017-07-18 15:34:54.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:34:54.607 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" sending FIN. +2017-07-18 15:34:54.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:34:54.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:34:54.614 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" sent FIN with status "0". +2017-07-18 15:34:54.616 +05:30 [Debug] Connection id ""0HL6DOGO1L2JQ"" stopped. +2017-07-18 15:34:57.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:34:57.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:34:57.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:34:57.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:34:57.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3152.2934ms +2017-07-18 15:34:57.764 +05:30 [Information] Request finished in 3157.5955ms 200 application/json; charset=utf-8 +2017-07-18 15:34:57.764 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:34:59.329 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:34:59.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:34:59.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:34:59.330 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:34:59.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:34:59.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:34:59.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:34:59.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:34:59.999 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:34:59.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:35:00.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:35:00.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:35:00.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:34:59.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:35:00.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:35:01.086 +05:30 [Debug] Connection id ""0HL6DOGO1L2JS"" started. +2017-07-18 15:35:01.119 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:35:01.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:35:01.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:35:02.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:35:02.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:02.583 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:35:02.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:02.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:02.586 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3254.2799ms +2017-07-18 15:35:02.589 +05:30 [Information] Request finished in 3280.1371ms 200 application/json; charset=utf-8 +2017-07-18 15:35:02.589 +05:30 [Debug] Connection id ""0HL6DOGO1L2JO"" completed keep alive response. +2017-07-18 15:35:02.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:35:02.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:02.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:35:02.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:02.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:02.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3475.5705ms +2017-07-18 15:35:02.813 +05:30 [Information] Request finished in 3503.3141ms 200 application/json; charset=utf-8 +2017-07-18 15:35:02.814 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:35:03.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:35:03.208 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:03.208 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:35:03.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:03.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:03.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3211.234ms +2017-07-18 15:35:03.222 +05:30 [Information] Request finished in 3229.0856ms 200 application/json; charset=utf-8 +2017-07-18 15:35:03.223 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" completed keep alive response. +2017-07-18 15:35:03.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:35:03.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:35:03.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:03.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:35:03.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:03.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:03.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3360.381ms +2017-07-18 15:35:03.654 +05:30 [Information] Request finished in 3666.411ms 200 application/json; charset=utf-8 +2017-07-18 15:35:03.655 +05:30 [Debug] Connection id ""0HL6DOGO1L2JR"" completed keep alive response. +2017-07-18 15:35:04.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:04.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:35:04.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:04.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:04.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4046.9369ms +2017-07-18 15:35:04.132 +05:30 [Information] Request finished in 4135.3029ms 200 application/json; charset=utf-8 +2017-07-18 15:35:04.133 +05:30 [Debug] Connection id ""0HL6DOGO1L2JN"" completed keep alive response. +2017-07-18 15:35:04.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:35:04.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:04.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:04.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:04.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3174.5866ms +2017-07-18 15:35:04.303 +05:30 [Information] Request finished in 3204.9122ms 200 application/json; charset=utf-8 +2017-07-18 15:35:04.304 +05:30 [Debug] Connection id ""0HL6DOGO1L2JS"" completed keep alive response. +2017-07-18 15:35:04.311 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:35:04.312 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:35:04.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:35:06.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:35:06.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:06.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:06.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:06.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2101.4068ms +2017-07-18 15:35:06.421 +05:30 [Information] Request finished in 2113.365ms 200 application/json; charset=utf-8 +2017-07-18 15:35:06.422 +05:30 [Debug] Connection id ""0HL6DOGO1L2JO"" completed keep alive response. +2017-07-18 15:35:06.430 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:35:06.431 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:35:06.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:35:09.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:35:09.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:09.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:09.542 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:09.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3110.5638ms +2017-07-18 15:35:09.552 +05:30 [Information] Request finished in 3122.1115ms 200 application/json; charset=utf-8 +2017-07-18 15:35:09.553 +05:30 [Debug] Connection id ""0HL6DOGO1L2JM"" completed keep alive response. +2017-07-18 15:35:29.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:35:29.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:35:29.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:35:32.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:35:32.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:35:32.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:35:32.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:35:32.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.7593ms +2017-07-18 15:35:32.974 +05:30 [Information] Request finished in 3057.4282ms 200 application/json; charset=utf-8 +2017-07-18 15:35:32.974 +05:30 [Debug] Connection id ""0HL6DOGO1L2JP"" completed keep alive response. +2017-07-18 15:41:55.449 +05:30 [Debug] Hosting starting +2017-07-18 15:41:55.871 +05:30 [Debug] Hosting started +2017-07-18 15:41:55.992 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" started. +2017-07-18 15:41:55.992 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" started. +2017-07-18 15:41:56.180 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 15:41:56.180 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 15:41:56.253 +05:30 [Information] Request finished in 112.3039ms 200 +2017-07-18 15:41:56.320 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:41:57.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 15:41:57.153 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"242098ca-e29a-4dfa-bb01-d15b71f0a090"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 15:41:57.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 15:41:57.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 15:41:57.738 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 15:41:57.796 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:41:57.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:41:57.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:41:58.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 568.9545ms +2017-07-18 15:41:58.215 +05:30 [Information] Request finished in 2091.1042ms 200 application/json; charset=utf-8 +2017-07-18 15:41:58.218 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:42:02.580 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:42:02.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:42:02.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:42:06.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:42:11.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:11.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:11.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:11.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8813.314ms +2017-07-18 15:42:11.460 +05:30 [Information] Request finished in 8883.5119ms 200 application/json; charset=utf-8 +2017-07-18 15:42:11.461 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:42:11.871 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:42:11.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:42:11.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:42:15.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:42:15.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:15.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:15.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:15.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3242.9021ms +2017-07-18 15:42:15.121 +05:30 [Information] Request finished in 3252.6557ms 200 application/json; charset=utf-8 +2017-07-18 15:42:15.121 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:42:17.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:42:17.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:42:17.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:42:20.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:42:20.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:20.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:20.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:20.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3052.3539ms +2017-07-18 15:42:20.686 +05:30 [Information] Request finished in 3061.1607ms 200 application/json; charset=utf-8 +2017-07-18 15:42:20.687 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:42:20.722 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:42:20.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:42:20.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:42:23.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:23.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:23.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:23.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:23.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3208.2626ms +2017-07-18 15:42:23.939 +05:30 [Information] Request finished in 3216.9105ms 200 application/json; charset=utf-8 +2017-07-18 15:42:23.940 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:42:24.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:42:24.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:42:24.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:42:25.167 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:25.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:25.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:25.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:25.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1258.3594ms +2017-07-18 15:42:25.265 +05:30 [Information] Request finished in 1265.1175ms 200 application/json; charset=utf-8 +2017-07-18 15:42:25.266 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:42:34.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:42:34.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:42:34.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:42:34.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:42:34.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:42:34.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:42:35.153 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" started. +2017-07-18 15:42:35.153 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" started. +2017-07-18 15:42:35.156 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" started. +2017-07-18 15:42:35.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:42:35.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:42:35.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:42:35.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:42:35.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:42:35.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:42:36.364 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" started. +2017-07-18 15:42:36.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:42:36.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:42:36.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:42:38.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:42:38.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:42:38.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:42:40.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:40.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:40.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:40.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:40.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:42:40.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:40.377 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:42:40.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:40.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:40.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:42:40.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:40.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:40.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:40.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5906.9881ms +2017-07-18 15:42:40.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5280.6479ms +2017-07-18 15:42:40.500 +05:30 [Information] Request finished in 5968.5557ms 200 application/json; charset=utf-8 +2017-07-18 15:42:40.500 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:42:40.530 +05:30 [Information] Request finished in 5335.0932ms 200 application/json; charset=utf-8 +2017-07-18 15:42:40.531 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" completed keep alive response. +2017-07-18 15:42:40.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:40.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:42:40.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:40.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:40.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6011.5039ms +2017-07-18 15:42:40.583 +05:30 [Information] Request finished in 6056.6363ms 200 application/json; charset=utf-8 +2017-07-18 15:42:40.584 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:42:40.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:40.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:40.958 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:42:40.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:40.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:40.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:41.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:41.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:41.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2962.8745ms +2017-07-18 15:42:41.008 +05:30 [Information] Request finished in 2969.4846ms 200 application/json; charset=utf-8 +2017-07-18 15:42:41.009 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" completed keep alive response. +2017-07-18 15:42:41.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4041.8858ms +2017-07-18 15:42:41.053 +05:30 [Information] Request finished in 4083.7028ms 200 application/json; charset=utf-8 +2017-07-18 15:42:41.054 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" completed keep alive response. +2017-07-18 15:42:42.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:42.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:42:42.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:42.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:42.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7308.4604ms +2017-07-18 15:42:42.486 +05:30 [Information] Request finished in 7317.8581ms 200 application/json; charset=utf-8 +2017-07-18 15:42:42.486 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" completed keep alive response. +2017-07-18 15:42:48.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:42:48.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:42:48.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:42:51.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:42:51.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:51.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:51.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:51.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3040.7711ms +2017-07-18 15:42:51.395 +05:30 [Information] Request finished in 3053.4501ms 200 application/json; charset=utf-8 +2017-07-18 15:42:51.396 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:42:51.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:42:51.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:42:51.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:42:54.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:54.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:54.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:54.510 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:54.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3106.3463ms +2017-07-18 15:42:54.514 +05:30 [Information] Request finished in 3112.6658ms 200 application/json; charset=utf-8 +2017-07-18 15:42:54.514 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" completed keep alive response. +2017-07-18 15:42:54.525 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:42:54.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:42:54.526 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:42:57.570 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:42:57.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:42:57.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:42:57.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:42:57.648 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3118.088ms +2017-07-18 15:42:57.653 +05:30 [Information] Request finished in 3128.9107ms 200 application/json; charset=utf-8 +2017-07-18 15:42:57.654 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:42:58.790 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:42:58.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:42:58.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:42:58.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:42:58.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:42:58.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:42:59.201 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:42:59.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:42:59.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:42:59.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:42:59.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:42:59.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:42:59.213 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:42:59.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:42:59.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:43:00.226 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:43:00.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:43:00.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:43:01.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:43:01.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:01.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:43:01.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:01.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:01.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2339.0134ms +2017-07-18 15:43:01.139 +05:30 [Information] Request finished in 2350.6019ms 200 application/json; charset=utf-8 +2017-07-18 15:43:01.140 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" completed keep alive response. +2017-07-18 15:43:02.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:43:02.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:02.078 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:43:02.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:02.079 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:02.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3284.2443ms +2017-07-18 15:43:02.085 +05:30 [Information] Request finished in 3295.9407ms 200 application/json; charset=utf-8 +2017-07-18 15:43:02.086 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" completed keep alive response. +2017-07-18 15:43:02.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:43:02.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:43:02.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:43:02.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:02.511 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:43:02.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:02.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:02.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3356.2138ms +2017-07-18 15:43:02.620 +05:30 [Information] Request finished in 3383.3664ms 200 application/json; charset=utf-8 +2017-07-18 15:43:02.687 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" completed keep alive response. +2017-07-18 15:43:02.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:02.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:43:02.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:02.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:02.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3502.0478ms +2017-07-18 15:43:02.712 +05:30 [Information] Request finished in 3515.4041ms 200 application/json; charset=utf-8 +2017-07-18 15:43:02.713 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" completed keep alive response. +2017-07-18 15:43:03.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:03.231 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:43:03.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:03.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:03.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4028.6881ms +2017-07-18 15:43:03.237 +05:30 [Information] Request finished in 4040.6466ms 200 application/json; charset=utf-8 +2017-07-18 15:43:03.238 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" completed keep alive response. +2017-07-18 15:43:03.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:43:03.396 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:43:03.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:43:03.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:43:03.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3168.8359ms +2017-07-18 15:43:03.403 +05:30 [Information] Request finished in 3233.6858ms 200 application/json; charset=utf-8 +2017-07-18 15:43:03.404 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" completed keep alive response. +2017-07-18 15:45:55.967 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" received FIN. +2017-07-18 15:45:55.969 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" received FIN. +2017-07-18 15:45:55.970 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" disconnecting. +2017-07-18 15:45:55.971 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" received FIN. +2017-07-18 15:45:55.970 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" disconnecting. +2017-07-18 15:45:55.975 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" disconnecting. +2017-07-18 15:45:55.975 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" received FIN. +2017-07-18 15:45:55.976 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" disconnecting. +2017-07-18 15:45:55.974 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" sending FIN. +2017-07-18 15:45:55.977 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" sending FIN. +2017-07-18 15:45:55.979 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" sending FIN. +2017-07-18 15:45:55.979 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" sending FIN. +2017-07-18 15:45:55.984 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" sent FIN with status "0". +2017-07-18 15:45:56.012 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" sent FIN with status "0". +2017-07-18 15:45:56.019 +05:30 [Debug] Connection id ""0HL6DOLLLV05U"" stopped. +2017-07-18 15:45:56.027 +05:30 [Debug] Connection id ""0HL6DOLLLV05R"" stopped. +2017-07-18 15:45:56.034 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" sent FIN with status "0". +2017-07-18 15:45:56.031 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" received FIN. +2017-07-18 15:45:56.036 +05:30 [Debug] Connection id ""0HL6DOLLLV05T"" stopped. +2017-07-18 15:45:56.037 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" disconnecting. +2017-07-18 15:45:56.037 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" received FIN. +2017-07-18 15:45:56.043 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" sent FIN with status "0". +2017-07-18 15:45:56.047 +05:30 [Debug] Connection id ""0HL6DOLLLV060"" stopped. +2017-07-18 15:45:56.045 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" sending FIN. +2017-07-18 15:45:56.050 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" sent FIN with status "0". +2017-07-18 15:45:56.049 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" disconnecting. +2017-07-18 15:45:56.052 +05:30 [Debug] Connection id ""0HL6DOLLLV05V"" stopped. +2017-07-18 15:45:56.056 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" sending FIN. +2017-07-18 15:45:56.057 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" sent FIN with status "0". +2017-07-18 15:45:56.057 +05:30 [Debug] Connection id ""0HL6DOLLLV05S"" stopped. +2017-07-18 15:56:16.875 +05:30 [Debug] Hosting starting +2017-07-18 15:56:17.167 +05:30 [Debug] Hosting started +2017-07-18 15:56:17.307 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" started. +2017-07-18 15:56:17.307 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" started. +2017-07-18 15:56:17.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 15:56:17.502 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 15:56:17.595 +05:30 [Information] Request finished in 120.1827ms 200 +2017-07-18 15:56:17.731 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 15:56:18.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 15:56:18.738 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"69e01f61-38d0-4509-80b0-4cb4eeb1185c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 15:56:19.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 15:56:19.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 15:56:19.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 15:56:19.404 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:56:19.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:56:19.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:56:19.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 768.9614ms +2017-07-18 15:56:20.030 +05:30 [Information] Request finished in 2574.0881ms 200 application/json; charset=utf-8 +2017-07-18 15:56:20.033 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" completed keep alive response. +2017-07-18 15:56:37.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 15:56:37.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 15:56:37.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 15:56:40.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:56:44.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:56:44.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:56:44.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:56:44.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7534.1459ms +2017-07-18 15:56:44.876 +05:30 [Information] Request finished in 7580.5016ms 200 application/json; charset=utf-8 +2017-07-18 15:56:44.877 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 15:57:12.623 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:57:12.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:57:12.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:57:15.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:57:15.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:15.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:15.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:15.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3235.0418ms +2017-07-18 15:57:15.874 +05:30 [Information] Request finished in 3250.7425ms 200 application/json; charset=utf-8 +2017-07-18 15:57:15.874 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" completed keep alive response. +2017-07-18 15:57:16.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:57:16.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:57:16.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:57:19.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:57:19.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:19.474 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:19.476 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:19.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3091.2009ms +2017-07-18 15:57:19.481 +05:30 [Information] Request finished in 3113.696ms 200 application/json; charset=utf-8 +2017-07-18 15:57:19.482 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 15:57:23.270 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 15:57:23.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 15:57:23.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 15:57:26.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 15:57:34.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:34.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:34.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:34.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 11307.6496ms +2017-07-18 15:57:34.597 +05:30 [Information] Request finished in 11326.0878ms 200 application/json; charset=utf-8 +2017-07-18 15:57:34.598 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" completed keep alive response. +2017-07-18 15:57:34.627 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 15:57:34.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 15:57:34.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 15:57:37.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:37.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:37.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:37.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:37.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3227.2577ms +2017-07-18 15:57:37.863 +05:30 [Information] Request finished in 3236.6611ms 200 application/json; charset=utf-8 +2017-07-18 15:57:37.865 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 15:57:37.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:57:37.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:57:37.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:57:41.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:41.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:41.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:41.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:41.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3154.8976ms +2017-07-18 15:57:41.100 +05:30 [Information] Request finished in 3160.8343ms 200 application/json; charset=utf-8 +2017-07-18 15:57:41.101 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" completed keep alive response. +2017-07-18 15:57:50.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 15:57:50.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 15:57:50.671 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 15:57:50.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 15:57:50.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 15:57:50.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 15:57:51.459 +05:30 [Debug] Connection id ""0HL6DOTMC389G"" started. +2017-07-18 15:57:51.460 +05:30 [Debug] Connection id ""0HL6DOTMC389H"" started. +2017-07-18 15:57:51.508 +05:30 [Debug] Connection id ""0HL6DOTMC389I"" started. +2017-07-18 15:57:51.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 15:57:51.524 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 15:57:51.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 15:57:51.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 15:57:51.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 15:57:51.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 15:57:51.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 15:57:51.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 15:57:51.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 15:57:52.342 +05:30 [Debug] Connection id ""0HL6DOTMC389J"" started. +2017-07-18 15:57:52.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 15:57:52.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 15:57:52.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 15:57:54.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:54.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:54.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:54.854 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:57:54.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:54.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:54.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4194.2866ms +2017-07-18 15:57:54.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:54.882 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:57:54.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:54.881 +05:30 [Information] Request finished in 4211.4267ms 200 application/json; charset=utf-8 +2017-07-18 15:57:54.884 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 15:57:54.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:54.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4214.1093ms +2017-07-18 15:57:54.901 +05:30 [Information] Request finished in 4231.9162ms 200 application/json; charset=utf-8 +2017-07-18 15:57:54.901 +05:30 [Debug] Connection id ""0HL6DOTMC389F"" completed keep alive response. +2017-07-18 15:57:55.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:55.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:55.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 15:57:55.886 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 15:57:55.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:55.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:57:55.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:55.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:55.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:55.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:55.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4404.3523ms +2017-07-18 15:57:55.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:55.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3279.7709ms +2017-07-18 15:57:55.993 +05:30 [Information] Request finished in 4458.2592ms 200 application/json; charset=utf-8 +2017-07-18 15:57:55.995 +05:30 [Debug] Connection id ""0HL6DOTMC389G"" completed keep alive response. +2017-07-18 15:57:55.999 +05:30 [Information] Request finished in 3315.3609ms 200 application/json; charset=utf-8 +2017-07-18 15:57:56.001 +05:30 [Debug] Connection id ""0HL6DOTMC389J"" completed keep alive response. +2017-07-18 15:57:56.051 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 15:57:56.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 15:57:56.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 15:57:56.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:56.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:57:56.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:56.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:56.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4776.0115ms +2017-07-18 15:57:56.331 +05:30 [Information] Request finished in 4820.3138ms 200 application/json; charset=utf-8 +2017-07-18 15:57:56.331 +05:30 [Debug] Connection id ""0HL6DOTMC389I"" completed keep alive response. +2017-07-18 15:57:58.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:58.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 15:57:58.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:58.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:58.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6558.0816ms +2017-07-18 15:57:58.106 +05:30 [Information] Request finished in 6596.7173ms 200 application/json; charset=utf-8 +2017-07-18 15:57:58.107 +05:30 [Debug] Connection id ""0HL6DOTMC389H"" completed keep alive response. +2017-07-18 15:57:59.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 15:57:59.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 15:57:59.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 15:57:59.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 15:57:59.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3227.6252ms +2017-07-18 15:57:59.286 +05:30 [Information] Request finished in 3235.7821ms 200 application/json; charset=utf-8 +2017-07-18 15:57:59.287 +05:30 [Debug] Connection id ""0HL6DOTMC389E"" completed keep alive response. +2017-07-18 16:06:35.327 +05:30 [Debug] Hosting starting +2017-07-18 16:06:35.615 +05:30 [Debug] Hosting started +2017-07-18 16:06:35.655 +05:30 [Debug] Connection id ""0HL6DP3EL3J19"" started. +2017-07-18 16:06:35.655 +05:30 [Debug] Connection id ""0HL6DP3EL3J18"" started. +2017-07-18 16:06:35.898 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:06:35.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:06:36.010 +05:30 [Information] Request finished in 160.4837ms 200 +2017-07-18 16:06:36.103 +05:30 [Debug] Connection id ""0HL6DP3EL3J19"" completed keep alive response. +2017-07-18 16:06:36.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:06:37.056 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2d25ecb7-c07f-41f4-9cca-8e256a6fb614"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:06:37.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:06:37.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:06:37.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:06:37.760 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:06:37.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:06:37.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:06:38.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 565.0016ms +2017-07-18 16:06:38.484 +05:30 [Information] Request finished in 2581.9758ms 200 application/json; charset=utf-8 +2017-07-18 16:06:38.540 +05:30 [Debug] Connection id ""0HL6DP3EL3J18"" completed keep alive response. +2017-07-18 16:06:42.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:06:42.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:06:42.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:06:45.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:06:51.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:06:51.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:06:51.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:06:51.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9652.1916ms +2017-07-18 16:06:51.727 +05:30 [Information] Request finished in 9676.2286ms 200 application/json; charset=utf-8 +2017-07-18 16:06:51.727 +05:30 [Debug] Connection id ""0HL6DP3EL3J19"" completed keep alive response. +2017-07-18 16:06:52.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:06:52.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:06:52.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:06:55.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:06:55.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:06:55.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:06:55.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:06:55.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3254.1819ms +2017-07-18 16:06:55.435 +05:30 [Information] Request finished in 3263.7283ms 200 application/json; charset=utf-8 +2017-07-18 16:06:55.436 +05:30 [Debug] Connection id ""0HL6DP3EL3J18"" completed keep alive response. +2017-07-18 16:10:12.906 +05:30 [Debug] Hosting starting +2017-07-18 16:10:13.145 +05:30 [Debug] Hosting started +2017-07-18 16:10:13.196 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" started. +2017-07-18 16:10:13.196 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" started. +2017-07-18 16:10:13.528 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:10:13.527 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:10:13.709 +05:30 [Information] Request finished in 287.3941ms 200 +2017-07-18 16:10:13.843 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:10:14.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:10:14.946 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ff7fdb2a-82f4-4021-8009-e7d12ceaeb44"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:10:15.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:10:15.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:10:15.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:10:15.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:10:15.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:10:15.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:10:17.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 662.8633ms +2017-07-18 16:10:18.602 +05:30 [Information] Request finished in 5274.4927ms 200 application/json; charset=utf-8 +2017-07-18 16:10:18.605 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:10:18.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 16:10:18.641 +05:30 [Debug] Request did not match any routes. +2017-07-18 16:10:18.664 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 16:10:18.672 +05:30 [Information] Request finished in 34.8086ms 404 +2017-07-18 16:10:18.673 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:10:19.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:10:19.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:10:19.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:10:24.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:10:30.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:10:30.300 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:10:30.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:10:30.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10737.9468ms +2017-07-18 16:10:30.717 +05:30 [Information] Request finished in 10903.7426ms 200 application/json; charset=utf-8 +2017-07-18 16:10:30.718 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:10:31.230 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:10:31.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:10:31.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:10:42.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:10:42.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:10:42.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:10:42.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:10:42.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 11659.4357ms +2017-07-18 16:10:42.915 +05:30 [Information] Request finished in 11685.9322ms 200 application/json; charset=utf-8 +2017-07-18 16:10:42.916 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:10:59.225 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:10:59.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:10:59.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:11:02.332 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:11:02.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:02.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:02.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:02.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3616.7622ms +2017-07-18 16:11:02.859 +05:30 [Information] Request finished in 3631.0896ms 200 application/json; charset=utf-8 +2017-07-18 16:11:02.861 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:11:03.143 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:11:03.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:11:03.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:11:06.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:11:06.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:06.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:06.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:06.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.1298ms +2017-07-18 16:11:06.195 +05:30 [Information] Request finished in 3055.0713ms 200 application/json; charset=utf-8 +2017-07-18 16:11:06.196 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:11:08.420 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:11:08.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:11:08.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:11:11.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:11:13.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:13.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:13.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:13.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5168.5224ms +2017-07-18 16:11:13.625 +05:30 [Information] Request finished in 5202.5265ms 200 application/json; charset=utf-8 +2017-07-18 16:11:13.625 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:11:13.641 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:11:13.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:11:13.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:11:16.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:17.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:17.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:17.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:17.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3435.9422ms +2017-07-18 16:11:17.085 +05:30 [Information] Request finished in 3445.3853ms 200 application/json; charset=utf-8 +2017-07-18 16:11:17.086 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:11:17.155 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:11:17.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:11:17.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:11:20.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:20.273 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:20.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:20.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:20.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3131.1619ms +2017-07-18 16:11:20.293 +05:30 [Information] Request finished in 3139.2241ms 200 application/json; charset=utf-8 +2017-07-18 16:11:20.293 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:11:23.255 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:11:23.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:11:23.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:11:23.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:11:23.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:11:23.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:11:23.891 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" started. +2017-07-18 16:11:23.891 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" started. +2017-07-18 16:11:23.897 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" started. +2017-07-18 16:11:23.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:11:23.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:11:23.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:11:23.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:11:23.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:11:23.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:11:23.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:11:23.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:11:23.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:11:24.903 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" started. +2017-07-18 16:11:25.383 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:11:25.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:11:25.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:11:27.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:27.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:27.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:27.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:11:27.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:27.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:27.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4313.9008ms +2017-07-18 16:11:27.589 +05:30 [Information] Request finished in 4341.566ms 200 application/json; charset=utf-8 +2017-07-18 16:11:27.590 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:11:27.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:27.618 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:11:27.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:27.626 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:27.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4349.267ms +2017-07-18 16:11:27.650 +05:30 [Information] Request finished in 4397.0767ms 200 application/json; charset=utf-8 +2017-07-18 16:11:27.650 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:11:27.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:28.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:28.039 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:28.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:11:28.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:11:28.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:28.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:28.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4167.1382ms +2017-07-18 16:11:28.148 +05:30 [Information] Request finished in 4208.8198ms 200 application/json; charset=utf-8 +2017-07-18 16:11:28.170 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" completed keep alive response. +2017-07-18 16:11:28.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:28.390 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:11:28.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:28.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:28.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:11:28.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:28.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:28.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:28.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3082.3359ms +2017-07-18 16:11:28.474 +05:30 [Information] Request finished in 3099.2018ms 200 application/json; charset=utf-8 +2017-07-18 16:11:28.474 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" completed keep alive response. +2017-07-18 16:11:28.494 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:11:28.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:11:28.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:11:28.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4618.3557ms +2017-07-18 16:11:28.539 +05:30 [Information] Request finished in 4641.2332ms 200 application/json; charset=utf-8 +2017-07-18 16:11:28.540 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" completed keep alive response. +2017-07-18 16:11:30.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:11:30.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:30.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:30.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:30.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2240.8792ms +2017-07-18 16:11:30.747 +05:30 [Information] Request finished in 2252.5193ms 200 application/json; charset=utf-8 +2017-07-18 16:11:30.748 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:11:33.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:33.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:11:33.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:33.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:33.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9861.1224ms +2017-07-18 16:11:33.776 +05:30 [Information] Request finished in 9873.9477ms 200 application/json; charset=utf-8 +2017-07-18 16:11:33.777 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" completed keep alive response. +2017-07-18 16:11:55.122 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:11:55.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:11:55.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:11:58.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:11:58.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:11:58.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:11:58.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:11:58.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3194.7719ms +2017-07-18 16:11:58.345 +05:30 [Information] Request finished in 3223.703ms 200 application/json; charset=utf-8 +2017-07-18 16:11:58.346 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:12:00.697 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:00.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:00.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:00.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:00.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:00.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:00.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:00.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:00.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:03.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:03.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:03.785 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:03.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:03.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:03.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:03.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:03.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:03.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:03.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:03.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3128.1307ms +2017-07-18 16:12:03.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:03.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:03.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3128.9014ms +2017-07-18 16:12:03.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3127.2785ms +2017-07-18 16:12:03.892 +05:30 [Information] Request finished in 3187.3745ms 200 application/json; charset=utf-8 +2017-07-18 16:12:03.914 +05:30 [Information] Request finished in 3154.1434ms 200 application/json; charset=utf-8 +2017-07-18 16:12:03.918 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" completed keep alive response. +2017-07-18 16:12:03.918 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" completed keep alive response. +2017-07-18 16:12:03.913 +05:30 [Information] Request finished in 3167.5325ms 200 application/json; charset=utf-8 +2017-07-18 16:12:03.925 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" completed keep alive response. +2017-07-18 16:12:05.844 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:12:05.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:12:05.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:12:06.818 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:06.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:06.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:06.866 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:06.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:06.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:08.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:12:09.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:09.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:09.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:09.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4011.3603ms +2017-07-18 16:12:09.873 +05:30 [Information] Request finished in 4037.1496ms 200 application/json; charset=utf-8 +2017-07-18 16:12:09.875 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:12:09.887 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:12:09.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:12:09.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:12:09.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:09.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:09.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:09.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:10.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:10.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:10.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:10.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3183.4063ms +2017-07-18 16:12:10.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:10.031 +05:30 [Information] Request finished in 3194.7544ms 200 application/json; charset=utf-8 +2017-07-18 16:12:10.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3141.9594ms +2017-07-18 16:12:10.032 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" completed keep alive response. +2017-07-18 16:12:10.971 +05:30 [Information] Request finished in 3177.5073ms 200 application/json; charset=utf-8 +2017-07-18 16:12:10.975 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:12:11.022 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:12:11.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:12:11.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:12:12.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:12:12.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:12:12.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:12:13.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:13.611 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:12:14.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:14.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:14.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:14.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3684.4152ms +2017-07-18 16:12:14.728 +05:30 [Information] Request finished in 3715.7999ms 200 application/json; charset=utf-8 +2017-07-18 16:12:14.729 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" completed keep alive response. +2017-07-18 16:12:14.739 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:12:14.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:12:14.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:12:14.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:14.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:14.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:14.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4926.3857ms +2017-07-18 16:12:14.821 +05:30 [Information] Request finished in 4936.7393ms 200 application/json; charset=utf-8 +2017-07-18 16:12:14.822 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" completed keep alive response. +2017-07-18 16:12:14.835 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:12:14.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:12:14.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:12:15.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:12:16.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:16.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:16.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:16.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4256.9099ms +2017-07-18 16:12:16.727 +05:30 [Information] Request finished in 4270.2318ms 200 application/json; charset=utf-8 +2017-07-18 16:12:16.728 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" completed keep alive response. +2017-07-18 16:12:16.740 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:12:16.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:12:16.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:12:17.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:17.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:18.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:18.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:18.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:18.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3188.6177ms +2017-07-18 16:12:18.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:18.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:18.080 +05:30 [Information] Request finished in 3244.2244ms 200 application/json; charset=utf-8 +2017-07-18 16:12:18.083 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" completed keep alive response. +2017-07-18 16:12:18.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:18.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3355.4414ms +2017-07-18 16:12:18.156 +05:30 [Information] Request finished in 3418.3313ms 200 application/json; charset=utf-8 +2017-07-18 16:12:18.158 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:12:18.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:12:18.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:12:18.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:12:19.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:19.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:19.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:19.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:19.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3161.4442ms +2017-07-18 16:12:19.910 +05:30 [Information] Request finished in 3171.0366ms 200 application/json; charset=utf-8 +2017-07-18 16:12:19.911 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:12:19.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:12:19.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:12:19.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:12:21.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:21.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:21.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:21.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:21.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.4087ms +2017-07-18 16:12:21.305 +05:30 [Information] Request finished in 3129.6016ms 200 application/json; charset=utf-8 +2017-07-18 16:12:21.306 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" completed keep alive response. +2017-07-18 16:12:22.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:23.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:23.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:23.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:23.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.1467ms +2017-07-18 16:12:23.037 +05:30 [Information] Request finished in 3116.919ms 200 application/json; charset=utf-8 +2017-07-18 16:12:23.038 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" completed keep alive response. +2017-07-18 16:12:24.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:12:24.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:12:24.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:12:24.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:12:24.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:12:24.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:12:25.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:12:25.021 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:12:25.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:12:25.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:12:25.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:12:25.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:12:25.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:12:25.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:12:25.033 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:12:25.898 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:12:25.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:12:25.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:12:26.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:26.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:26.513 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:12:26.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:26.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:26.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2188.4548ms +2017-07-18 16:12:26.522 +05:30 [Information] Request finished in 2217.1909ms 200 application/json; charset=utf-8 +2017-07-18 16:12:26.523 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" completed keep alive response. +2017-07-18 16:12:26.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:26.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:26.760 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:12:26.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:26.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:26.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2438.7689ms +2017-07-18 16:12:26.844 +05:30 [Information] Request finished in 2469.0054ms 200 application/json; charset=utf-8 +2017-07-18 16:12:26.845 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" completed keep alive response. +2017-07-18 16:12:27.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:27.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:27.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:27.486 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:12:27.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:27.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:27.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2457.2998ms +2017-07-18 16:12:27.497 +05:30 [Information] Request finished in 2486.4134ms 200 application/json; charset=utf-8 +2017-07-18 16:12:27.497 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" completed keep alive response. +2017-07-18 16:12:28.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:28.174 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:12:28.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:28.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:12:28.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:28.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3168.1566ms +2017-07-18 16:12:28.224 +05:30 [Information] Request finished in 3210.0514ms 200 application/json; charset=utf-8 +2017-07-18 16:12:28.225 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" completed keep alive response. +2017-07-18 16:12:28.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:28.268 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:12:28.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:28.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:28.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3247.2762ms +2017-07-18 16:12:28.275 +05:30 [Information] Request finished in 3263.5922ms 200 application/json; charset=utf-8 +2017-07-18 16:12:28.276 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" completed keep alive response. +2017-07-18 16:12:29.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:12:29.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:29.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:29.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:29.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3107.507ms +2017-07-18 16:12:29.014 +05:30 [Information] Request finished in 3130.0201ms 200 application/json; charset=utf-8 +2017-07-18 16:12:29.014 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" completed keep alive response. +2017-07-18 16:12:29.021 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:12:29.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:12:29.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:12:32.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:12:32.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:12:32.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:12:32.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:12:32.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3161.5197ms +2017-07-18 16:12:32.190 +05:30 [Information] Request finished in 3168.925ms 200 application/json; charset=utf-8 +2017-07-18 16:12:32.190 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" completed keep alive response. +2017-07-18 16:13:36.351 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" received FIN. +2017-07-18 16:13:36.356 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" received FIN. +2017-07-18 16:13:36.359 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" received FIN. +2017-07-18 16:13:36.360 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" disconnecting. +2017-07-18 16:13:36.361 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" disconnecting. +2017-07-18 16:13:36.360 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" disconnecting. +2017-07-18 16:13:36.368 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" received FIN. +2017-07-18 16:13:36.358 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" received FIN. +2017-07-18 16:13:36.383 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" disconnecting. +2017-07-18 16:13:36.384 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" received FIN. +2017-07-18 16:13:36.383 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" sending FIN. +2017-07-18 16:13:36.386 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" sending FIN. +2017-07-18 16:13:36.387 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" disconnecting. +2017-07-18 16:13:36.388 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" sending FIN. +2017-07-18 16:13:36.384 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" disconnecting. +2017-07-18 16:13:36.393 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" sending FIN. +2017-07-18 16:13:36.399 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" sent FIN with status "0". +2017-07-18 16:13:36.399 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" sent FIN with status "0". +2017-07-18 16:13:36.404 +05:30 [Debug] Connection id ""0HL6DP5FFOIN7"" stopped. +2017-07-18 16:13:36.414 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" sent FIN with status "0". +2017-07-18 16:13:36.415 +05:30 [Debug] Connection id ""0HL6DP5FFOIN8"" stopped. +2017-07-18 16:13:36.416 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" sent FIN with status "0". +2017-07-18 16:13:36.416 +05:30 [Debug] Connection id ""0HL6DP5FFOIN4"" stopped. +2017-07-18 16:13:36.418 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" sending FIN. +2017-07-18 16:13:36.417 +05:30 [Debug] Connection id ""0HL6DP5FFOIN5"" stopped. +2017-07-18 16:13:36.418 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" sending FIN. +2017-07-18 16:13:36.419 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" started. +2017-07-18 16:13:36.430 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" sent FIN with status "0". +2017-07-18 16:13:36.463 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:36.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:36.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:36.468 +05:30 [Debug] Connection id ""0HL6DP5FFOIN6"" stopped. +2017-07-18 16:13:36.477 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" sent FIN with status "0". +2017-07-18 16:13:36.484 +05:30 [Debug] Connection id ""0HL6DP5FFOIN9"" stopped. +2017-07-18 16:13:39.582 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:13:39.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:39.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:39.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:39.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3117.8516ms +2017-07-18 16:13:39.591 +05:30 [Information] Request finished in 3139.0473ms 200 application/json; charset=utf-8 +2017-07-18 16:13:39.591 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:39.659 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:39.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:39.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:39.667 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" started. +2017-07-18 16:13:39.671 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:39.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:39.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:42.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:13:42.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:42.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:42.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:42.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:13:42.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3094.3765ms +2017-07-18 16:13:42.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:42.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:42.765 +05:30 [Information] Request finished in 3105.6352ms 200 application/json; charset=utf-8 +2017-07-18 16:13:42.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:42.770 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:42.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3098.9512ms +2017-07-18 16:13:42.787 +05:30 [Information] Request finished in 3111.5494ms 200 application/json; charset=utf-8 +2017-07-18 16:13:42.788 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:13:42.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:13:42.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:13:42.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:13:42.833 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:42.835 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:42.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:45.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:13:45.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:45.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:45.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:45.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:13:45.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3061.6821ms +2017-07-18 16:13:45.874 +05:30 [Information] Request finished in 3068.8699ms 200 application/json; charset=utf-8 +2017-07-18 16:13:45.875 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:45.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:45.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:45.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:45.904 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:13:45.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:13:45.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3064.2062ms +2017-07-18 16:13:45.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:13:45.912 +05:30 [Information] Request finished in 3075.9826ms 200 application/json; charset=utf-8 +2017-07-18 16:13:45.913 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:13:45.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:13:45.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:13:45.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:13:49.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:13:49.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:13:49.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:49.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:49.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:49.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:49.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:49.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3155.1088ms +2017-07-18 16:13:49.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:49.101 +05:30 [Information] Request finished in 3161.4322ms 200 application/json; charset=utf-8 +2017-07-18 16:13:49.102 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:13:49.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3172.2509ms +2017-07-18 16:13:49.108 +05:30 [Information] Request finished in 3204.6748ms 200 application/json; charset=utf-8 +2017-07-18 16:13:49.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:13:49.109 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:49.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:13:49.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:13:49.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:13:49.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:13:49.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:13:52.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:13:52.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:13:52.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:52.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:52.371 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:52.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:52.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:52.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3257.7323ms +2017-07-18 16:13:52.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:52.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3286.4436ms +2017-07-18 16:13:52.403 +05:30 [Information] Request finished in 3280.7562ms 200 application/json; charset=utf-8 +2017-07-18 16:13:52.404 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:52.412 +05:30 [Information] Request finished in 3295.7642ms 200 application/json; charset=utf-8 +2017-07-18 16:13:52.412 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:13:52.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:13:52.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:13:52.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:13:54.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:54.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:54.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:55.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:13:55.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:55.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:55.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:55.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3236.3357ms +2017-07-18 16:13:55.680 +05:30 [Information] Request finished in 3257.5542ms 200 application/json; charset=utf-8 +2017-07-18 16:13:55.681 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:13:57.067 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" started. +2017-07-18 16:13:57.089 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:13:57.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:13:57.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:13:57.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:13:57.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:13:57.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:13:57.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:13:57.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:57.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:57.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:57.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2205.4552ms +2017-07-18 16:13:57.139 +05:30 [Information] Request finished in 2218.5195ms 200 application/json; charset=utf-8 +2017-07-18 16:13:57.139 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:13:57.803 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" started. +2017-07-18 16:13:57.803 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" started. +2017-07-18 16:13:57.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:13:57.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:13:57.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:13:57.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:13:57.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:13:57.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:13:57.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:13:57.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:13:57.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:13:58.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:13:58.748 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" started. +2017-07-18 16:13:58.770 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:13:58.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:13:58.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:13:58.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:13:58.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:13:58.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:13:58.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:13:58.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 1839.0166ms +2017-07-18 16:13:58.952 +05:30 [Information] Request finished in 1880.2695ms 200 application/json; charset=utf-8 +2017-07-18 16:13:58.953 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" completed keep alive response. +2017-07-18 16:14:00.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:14:00.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:00.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:14:00.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:00.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:00.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3330.7794ms +2017-07-18 16:14:00.430 +05:30 [Information] Request finished in 3361.933ms 200 application/json; charset=utf-8 +2017-07-18 16:14:00.431 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" completed keep alive response. +2017-07-18 16:14:00.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:14:01.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:14:01.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:01.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:14:01.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:01.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:14:01.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:01.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3305.3166ms +2017-07-18 16:14:01.155 +05:30 [Information] Request finished in 3346.5754ms 200 application/json; charset=utf-8 +2017-07-18 16:14:01.156 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" completed keep alive response. +2017-07-18 16:14:01.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:01.320 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:14:01.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:01.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:01.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3509.4353ms +2017-07-18 16:14:01.326 +05:30 [Information] Request finished in 3519.3796ms 200 application/json; charset=utf-8 +2017-07-18 16:14:01.327 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" completed keep alive response. +2017-07-18 16:14:01.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:01.934 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:14:01.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:01.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:01.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4117.9933ms +2017-07-18 16:14:01.941 +05:30 [Information] Request finished in 4130.9014ms 200 application/json; charset=utf-8 +2017-07-18 16:14:01.942 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:14:02.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:14:02.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:02.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:02.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:02.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3240.185ms +2017-07-18 16:14:02.020 +05:30 [Information] Request finished in 3264.4398ms 200 application/json; charset=utf-8 +2017-07-18 16:14:02.020 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" completed keep alive response. +2017-07-18 16:14:02.038 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:14:02.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:14:02.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:14:04.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:14:04.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:14:04.184 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:14:04.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:14:04.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2148.7033ms +2017-07-18 16:14:04.193 +05:30 [Information] Request finished in 2159.4942ms 200 application/json; charset=utf-8 +2017-07-18 16:14:04.194 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" completed keep alive response. +2017-07-18 16:15:01.814 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" received FIN. +2017-07-18 16:15:01.814 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" received FIN. +2017-07-18 16:15:01.818 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" disconnecting. +2017-07-18 16:15:01.830 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" received FIN. +2017-07-18 16:15:01.831 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" disconnecting. +2017-07-18 16:15:01.833 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" sending FIN. +2017-07-18 16:15:01.835 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" sending FIN. +2017-07-18 16:15:01.837 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:01.835 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" sent FIN with status "0". +2017-07-18 16:15:01.837 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" sent FIN with status "0". +2017-07-18 16:15:01.839 +05:30 [Debug] Connection id ""0HL6DP5FFOIND"" stopped. +2017-07-18 16:15:01.838 +05:30 [Debug] Connection id ""0HL6DP5FFOINA"" stopped. +2017-07-18 16:15:01.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:01.837 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" disconnecting. +2017-07-18 16:15:01.848 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" sending FIN. +2017-07-18 16:15:01.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:01.850 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" sent FIN with status "0". +2017-07-18 16:15:01.853 +05:30 [Debug] Connection id ""0HL6DP5FFOINB"" stopped. +2017-07-18 16:15:05.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:05.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:05.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:05.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:05.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3232.0162ms +2017-07-18 16:15:05.087 +05:30 [Information] Request finished in 3267.1651ms 200 application/json; charset=utf-8 +2017-07-18 16:15:05.088 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:05.146 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" received FIN. +2017-07-18 16:15:05.147 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" disconnecting. +2017-07-18 16:15:05.148 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" received FIN. +2017-07-18 16:15:05.149 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" disconnecting. +2017-07-18 16:15:05.149 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" sending FIN. +2017-07-18 16:15:05.154 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:05.154 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" sending FIN. +2017-07-18 16:15:05.157 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" sent FIN with status "0". +2017-07-18 16:15:05.158 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" sent FIN with status "0". +2017-07-18 16:15:05.160 +05:30 [Debug] Connection id ""0HL6DP5FFOINF"" stopped. +2017-07-18 16:15:05.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:05.160 +05:30 [Debug] Connection id ""0HL6DP5FFOINC"" stopped. +2017-07-18 16:15:05.162 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" started. +2017-07-18 16:15:05.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:05.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:05.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:05.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:08.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:08.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:08.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:08.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:08.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:08.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3091.6859ms +2017-07-18 16:15:08.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:08.263 +05:30 [Information] Request finished in 3112.3718ms 200 application/json; charset=utf-8 +2017-07-18 16:15:08.264 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:08.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:08.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:08.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3107.372ms +2017-07-18 16:15:08.295 +05:30 [Information] Request finished in 3124.4369ms 200 application/json; charset=utf-8 +2017-07-18 16:15:08.296 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:08.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:15:08.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:15:08.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:15:08.348 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:08.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:08.350 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:08.848 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" started. +2017-07-18 16:15:08.864 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:08.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:08.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:11.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:11.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:15:11.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:11.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:11.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:11.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:11.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:11.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3124.333ms +2017-07-18 16:15:11.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:11.486 +05:30 [Information] Request finished in 3136.6954ms 200 application/json; charset=utf-8 +2017-07-18 16:15:11.488 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:11.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3147.3241ms +2017-07-18 16:15:11.538 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:15:11.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:15:11.550 +05:30 [Information] Request finished in 3217.961ms 200 application/json; charset=utf-8 +2017-07-18 16:15:11.551 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:15:11.551 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:11.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:15:11.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:15:11.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:15:11.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:11.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:11.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:11.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:11.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.1178ms +2017-07-18 16:15:11.925 +05:30 [Information] Request finished in 3073.5456ms 200 application/json; charset=utf-8 +2017-07-18 16:15:11.925 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" completed keep alive response. +2017-07-18 16:15:11.990 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:11.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:11.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:14.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:15:14.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:14.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:14.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:14.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3051.4262ms +2017-07-18 16:15:14.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:14.656 +05:30 [Information] Request finished in 3115.6454ms 200 application/json; charset=utf-8 +2017-07-18 16:15:14.670 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:14.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:15:14.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:15:14.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:15:14.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:14.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:14.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:14.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3164.6363ms +2017-07-18 16:15:14.747 +05:30 [Information] Request finished in 3173.9659ms 200 application/json; charset=utf-8 +2017-07-18 16:15:14.747 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:14.752 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:15:14.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:15:14.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:15:15.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:15.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:15.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:15.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:15.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3050.288ms +2017-07-18 16:15:15.049 +05:30 [Information] Request finished in 3059.9966ms 200 application/json; charset=utf-8 +2017-07-18 16:15:15.050 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" completed keep alive response. +2017-07-18 16:15:15.060 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:15:15.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:15:15.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:15:17.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:17.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:17.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:17.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:17.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:17.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:17.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:17.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:17.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3175.1703ms +2017-07-18 16:15:17.934 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3228.7383ms +2017-07-18 16:15:17.938 +05:30 [Information] Request finished in 3185.0726ms 200 application/json; charset=utf-8 +2017-07-18 16:15:17.938 +05:30 [Information] Request finished in 3237.3385ms 200 application/json; charset=utf-8 +2017-07-18 16:15:17.940 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:17.939 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:17.960 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:15:17.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:15:17.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:15:18.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:15:18.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:18.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:18.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:18.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3036.6275ms +2017-07-18 16:15:18.103 +05:30 [Information] Request finished in 3041.7292ms 200 application/json; charset=utf-8 +2017-07-18 16:15:18.103 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" completed keep alive response. +2017-07-18 16:15:18.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:15:18.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:15:18.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:15:20.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:20.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:20.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:20.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:20.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2222.9737ms +2017-07-18 16:15:20.196 +05:30 [Information] Request finished in 2247.2192ms 200 application/json; charset=utf-8 +2017-07-18 16:15:20.196 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:21.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:21.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:21.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:21.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:21.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3153.2333ms +2017-07-18 16:15:21.265 +05:30 [Information] Request finished in 3158.3235ms 200 application/json; charset=utf-8 +2017-07-18 16:15:21.266 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:21.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:15:21.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:15:21.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:15:24.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:24.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:24.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:24.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:24.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3139.5016ms +2017-07-18 16:15:24.423 +05:30 [Information] Request finished in 3153.4402ms 200 application/json; charset=utf-8 +2017-07-18 16:15:24.424 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" completed keep alive response. +2017-07-18 16:15:25.843 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:15:25.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:15:25.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:15:25.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:15:25.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:15:25.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:15:26.607 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" started. +2017-07-18 16:15:26.607 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" started. +2017-07-18 16:15:26.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:15:26.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:15:26.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:15:26.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:15:26.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:15:26.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:15:26.634 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:15:26.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:15:26.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:15:27.411 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" started. +2017-07-18 16:15:27.418 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:15:27.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:15:27.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:15:28.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:29.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:29.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:29.070 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:15:29.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:29.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:29.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:15:29.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:29.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:29.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:29.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3226.6615ms +2017-07-18 16:15:29.080 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3227.118ms +2017-07-18 16:15:29.082 +05:30 [Information] Request finished in 3240.0721ms 200 application/json; charset=utf-8 +2017-07-18 16:15:29.083 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:15:29.085 +05:30 [Information] Request finished in 3243.3924ms 200 application/json; charset=utf-8 +2017-07-18 16:15:29.086 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" completed keep alive response. +2017-07-18 16:15:29.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:29.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:29.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:15:30.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:30.028 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:15:30.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:30.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:30.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3394.9082ms +2017-07-18 16:15:30.041 +05:30 [Information] Request finished in 3426.961ms 200 application/json; charset=utf-8 +2017-07-18 16:15:30.044 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" completed keep alive response. +2017-07-18 16:15:30.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:30.123 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:15:30.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:30.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:30.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3491.296ms +2017-07-18 16:15:30.133 +05:30 [Information] Request finished in 3522.9329ms 200 application/json; charset=utf-8 +2017-07-18 16:15:30.137 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" completed keep alive response. +2017-07-18 16:15:30.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:15:30.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:30.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:30.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:30.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3111.2405ms +2017-07-18 16:15:30.547 +05:30 [Information] Request finished in 3132.3399ms 200 application/json; charset=utf-8 +2017-07-18 16:15:30.547 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" completed keep alive response. +2017-07-18 16:15:30.571 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:15:30.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:15:30.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:15:30.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:30.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:15:30.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:30.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:30.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4191.2725ms +2017-07-18 16:15:30.854 +05:30 [Information] Request finished in 4238.5134ms 200 application/json; charset=utf-8 +2017-07-18 16:15:30.855 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" completed keep alive response. +2017-07-18 16:15:33.626 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:15:33.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:15:33.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:15:33.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:15:33.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3082.9394ms +2017-07-18 16:15:33.669 +05:30 [Information] Request finished in 3094.4732ms 200 application/json; charset=utf-8 +2017-07-18 16:15:33.670 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" completed keep alive response. +2017-07-18 16:17:12.400 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" received FIN. +2017-07-18 16:17:12.400 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" received FIN. +2017-07-18 16:17:12.406 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" received FIN. +2017-07-18 16:17:12.406 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" started. +2017-07-18 16:17:12.401 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" disconnecting. +2017-07-18 16:17:12.407 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" disconnecting. +2017-07-18 16:17:12.409 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" disconnecting. +2017-07-18 16:17:12.403 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" received FIN. +2017-07-18 16:17:12.412 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" received FIN. +2017-07-18 16:17:12.409 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" sending FIN. +2017-07-18 16:17:12.412 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" received FIN. +2017-07-18 16:17:12.413 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" sending FIN. +2017-07-18 16:17:12.413 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" sending FIN. +2017-07-18 16:17:12.417 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" sent FIN with status "0". +2017-07-18 16:17:12.415 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" disconnecting. +2017-07-18 16:17:12.421 +05:30 [Debug] Connection id ""0HL6DP5FFOINJ"" stopped. +2017-07-18 16:17:12.422 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" sent FIN with status "0". +2017-07-18 16:17:12.422 +05:30 [Debug] Connection id ""0HL6DP5FFOINH"" stopped. +2017-07-18 16:17:12.415 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" disconnecting. +2017-07-18 16:17:12.416 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" disconnecting. +2017-07-18 16:17:12.426 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:17:12.417 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" sent FIN with status "0". +2017-07-18 16:17:12.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:17:12.428 +05:30 [Debug] Connection id ""0HL6DP5FFOING"" stopped. +2017-07-18 16:17:12.428 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:17:12.428 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" sending FIN. +2017-07-18 16:17:12.431 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" sending FIN. +2017-07-18 16:17:12.431 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" sending FIN. +2017-07-18 16:17:12.432 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" sent FIN with status "0". +2017-07-18 16:17:12.432 +05:30 [Debug] Connection id ""0HL6DP5FFOINE"" stopped. +2017-07-18 16:17:12.433 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" sent FIN with status "0". +2017-07-18 16:17:12.433 +05:30 [Debug] Connection id ""0HL6DP5FFOINI"" stopped. +2017-07-18 16:17:12.433 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" sent FIN with status "0". +2017-07-18 16:17:12.434 +05:30 [Debug] Connection id ""0HL6DP5FFOINK"" stopped. +2017-07-18 16:17:15.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:17:15.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:17:15.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:17:15.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:17:15.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.8895ms +2017-07-18 16:17:15.503 +05:30 [Information] Request finished in 3089.0926ms 200 application/json; charset=utf-8 +2017-07-18 16:17:15.503 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" completed keep alive response. +2017-07-18 16:17:15.535 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-18 16:17:15.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-18 16:17:15.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-18 16:17:18.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["24", "8d4cd180d972ca1"]) - ModelState is Valid +2017-07-18 16:17:18.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-18 16:17:18.645 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-18 16:17:18.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3107.6398ms +2017-07-18 16:17:18.655 +05:30 [Information] Request finished in 3132.7372ms 200 +2017-07-18 16:17:18.655 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" completed keep alive response. +2017-07-18 16:20:13.169 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" received FIN. +2017-07-18 16:20:13.171 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" disconnecting. +2017-07-18 16:20:13.173 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" sending FIN. +2017-07-18 16:20:13.173 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" sent FIN with status "0". +2017-07-18 16:20:13.174 +05:30 [Debug] Connection id ""0HL6DP5FFOINL"" stopped. +2017-07-18 16:24:04.918 +05:30 [Debug] Hosting starting +2017-07-18 16:24:05.227 +05:30 [Debug] Hosting started +2017-07-18 16:24:05.396 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" started. +2017-07-18 16:24:05.397 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" started. +2017-07-18 16:24:05.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:24:05.582 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:24:05.658 +05:30 [Information] Request finished in 125.9112ms 200 +2017-07-18 16:24:05.715 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" completed keep alive response. +2017-07-18 16:24:06.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:24:06.762 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e2cff5fd-1fcc-484d-861c-acde5a6f4470"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:24:06.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:24:06.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:24:06.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:24:07.043 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:24:07.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:24:07.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:24:07.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 483.5162ms +2017-07-18 16:24:07.453 +05:30 [Information] Request finished in 1936.5505ms 200 application/json; charset=utf-8 +2017-07-18 16:24:07.457 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" completed keep alive response. +2017-07-18 16:26:05.371 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" received FIN. +2017-07-18 16:26:05.371 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" received FIN. +2017-07-18 16:26:05.373 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" disconnecting. +2017-07-18 16:26:05.379 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" sending FIN. +2017-07-18 16:26:05.381 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" disconnecting. +2017-07-18 16:26:05.383 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" sending FIN. +2017-07-18 16:26:05.386 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" sent FIN with status "0". +2017-07-18 16:26:05.386 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" sent FIN with status "0". +2017-07-18 16:26:05.388 +05:30 [Debug] Connection id ""0HL6DPD7G7E5B"" stopped. +2017-07-18 16:26:05.389 +05:30 [Debug] Connection id ""0HL6DPD7G7E5A"" stopped. +2017-07-18 16:36:02.309 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" started. +2017-07-18 16:36:02.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:36:02.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:36:02.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:36:06.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:36:11.357 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:11.365 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:11.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:11.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9270.6066ms +2017-07-18 16:36:11.613 +05:30 [Information] Request finished in 9298.97ms 200 application/json; charset=utf-8 +2017-07-18 16:36:11.614 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" completed keep alive response. +2017-07-18 16:36:12.297 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:36:12.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:36:12.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:36:15.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:15.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:15.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:15.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:15.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3279.9365ms +2017-07-18 16:36:15.624 +05:30 [Information] Request finished in 3339.7779ms 200 application/json; charset=utf-8 +2017-07-18 16:36:15.625 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" completed keep alive response. +2017-07-18 16:36:15.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:36:15.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:36:15.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:36:18.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:18.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:18.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:18.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:18.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3143.0357ms +2017-07-18 16:36:18.859 +05:30 [Information] Request finished in 3152.2606ms 200 application/json; charset=utf-8 +2017-07-18 16:36:18.860 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" completed keep alive response. +2017-07-18 16:36:21.524 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" started. +2017-07-18 16:36:21.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:36:21.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:36:21.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:36:21.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:36:21.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:36:21.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:36:21.695 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" started. +2017-07-18 16:36:21.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:36:21.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:36:21.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:36:22.204 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" started. +2017-07-18 16:36:22.208 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" started. +2017-07-18 16:36:22.212 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" started. +2017-07-18 16:36:22.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:36:22.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:36:22.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:36:23.180 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" started. +2017-07-18 16:36:23.864 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:36:23.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:36:23.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:36:24.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:36:24.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:36:24.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:36:24.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:36:24.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:36:24.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:36:27.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:27.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:27.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:27.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:27.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5958.5524ms +2017-07-18 16:36:27.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:27.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:27.565 +05:30 [Information] Request finished in 6033.2542ms 200 application/json; charset=utf-8 +2017-07-18 16:36:27.569 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" completed keep alive response. +2017-07-18 16:36:27.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:27.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5865.0174ms +2017-07-18 16:36:27.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:27.584 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:27.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:27.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:27.598 +05:30 [Information] Request finished in 5888.4909ms 200 application/json; charset=utf-8 +2017-07-18 16:36:27.599 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" completed keep alive response. +2017-07-18 16:36:27.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6065.2815ms +2017-07-18 16:36:27.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:36:27.618 +05:30 [Information] Request finished in 6086.6437ms 200 application/json; charset=utf-8 +2017-07-18 16:36:27.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:36:27.618 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" completed keep alive response. +2017-07-18 16:36:27.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:36:27.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:27.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:27.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:27.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:27.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:27.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4086.4097ms +2017-07-18 16:36:27.998 +05:30 [Information] Request finished in 4134.3097ms 200 application/json; charset=utf-8 +2017-07-18 16:36:28.007 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" completed keep alive response. +2017-07-18 16:36:28.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:36:28.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:28.353 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:28.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:28.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:28.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6132.7766ms +2017-07-18 16:36:28.479 +05:30 [Information] Request finished in 6267.5323ms 200 application/json; charset=utf-8 +2017-07-18 16:36:28.481 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" completed keep alive response. +2017-07-18 16:36:28.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:28.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:28.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:28.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3746.8506ms +2017-07-18 16:36:28.700 +05:30 [Information] Request finished in 3767.8811ms 200 application/json; charset=utf-8 +2017-07-18 16:36:28.700 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" completed keep alive response. +2017-07-18 16:36:30.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:30.579 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:30.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:30.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:30.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6172.5327ms +2017-07-18 16:36:30.598 +05:30 [Information] Request finished in 6191.6486ms 200 application/json; charset=utf-8 +2017-07-18 16:36:30.599 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" completed keep alive response. +2017-07-18 16:36:30.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:30.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:30.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:30.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:30.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3224.2556ms +2017-07-18 16:36:30.854 +05:30 [Information] Request finished in 3247.987ms 200 application/json; charset=utf-8 +2017-07-18 16:36:30.855 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" completed keep alive response. +2017-07-18 16:36:31.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:36:31.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:36:31.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:36:31.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:36:31.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:36:31.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:36:32.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:36:32.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:36:32.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:36:32.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:36:32.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:36:32.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:36:32.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:36:32.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:36:32.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:36:32.967 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:36:32.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:36:32.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:36:34.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:34.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:34.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:34.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:34.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:34.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3232.2178ms +2017-07-18 16:36:34.825 +05:30 [Information] Request finished in 3316.2064ms 200 application/json; charset=utf-8 +2017-07-18 16:36:34.826 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" completed keep alive response. +2017-07-18 16:36:35.016 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:35.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:35.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:35.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:35.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:35.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3404.1417ms +2017-07-18 16:36:35.097 +05:30 [Information] Request finished in 3472.8372ms 200 application/json; charset=utf-8 +2017-07-18 16:36:35.097 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" completed keep alive response. +2017-07-18 16:36:35.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:36:35.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:35.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:35.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:35.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2233.0905ms +2017-07-18 16:36:35.236 +05:30 [Information] Request finished in 2272.6043ms 200 application/json; charset=utf-8 +2017-07-18 16:36:35.239 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" completed keep alive response. +2017-07-18 16:36:35.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:35.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:35.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:35.385 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:35.386 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:35.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3261.8555ms +2017-07-18 16:36:35.391 +05:30 [Information] Request finished in 3297.0762ms 200 application/json; charset=utf-8 +2017-07-18 16:36:35.392 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" completed keep alive response. +2017-07-18 16:36:35.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:35.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:36:35.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:35.832 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:35.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:35.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:35.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3669.9955ms +2017-07-18 16:36:35.839 +05:30 [Information] Request finished in 3735.7809ms 200 application/json; charset=utf-8 +2017-07-18 16:36:35.840 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" completed keep alive response. +2017-07-18 16:36:36.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:36:36.605 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:36:36.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:36:36.608 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:36:36.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4476.0532ms +2017-07-18 16:36:36.616 +05:30 [Information] Request finished in 4517.9268ms 200 application/json; charset=utf-8 +2017-07-18 16:36:36.616 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" completed keep alive response. +2017-07-18 16:38:10.985 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" received FIN. +2017-07-18 16:38:10.990 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" received FIN. +2017-07-18 16:38:10.993 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" received FIN. +2017-07-18 16:38:10.994 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" received FIN. +2017-07-18 16:38:10.994 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" received FIN. +2017-07-18 16:38:10.995 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" received FIN. +2017-07-18 16:38:10.995 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" received FIN. +2017-07-18 16:38:10.996 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" disconnecting. +2017-07-18 16:38:10.997 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" sending FIN. +2017-07-18 16:38:10.997 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" sent FIN with status "0". +2017-07-18 16:38:10.998 +05:30 [Debug] Connection id ""0HL6DPD7G7E5C"" stopped. +2017-07-18 16:38:11.009 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" disconnecting. +2017-07-18 16:38:11.011 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" sending FIN. +2017-07-18 16:38:11.012 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" sent FIN with status "0". +2017-07-18 16:38:11.012 +05:30 [Debug] Connection id ""0HL6DPD7G7E5E"" stopped. +2017-07-18 16:38:11.934 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" disconnecting. +2017-07-18 16:38:11.935 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" disconnecting. +2017-07-18 16:38:11.953 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" disconnecting. +2017-07-18 16:38:11.953 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" disconnecting. +2017-07-18 16:38:11.941 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" sending FIN. +2017-07-18 16:38:11.954 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" sent FIN with status "0". +2017-07-18 16:38:11.955 +05:30 [Debug] Connection id ""0HL6DPD7G7E5I"" stopped. +2017-07-18 16:38:11.935 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" disconnecting. +2017-07-18 16:38:11.956 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" sending FIN. +2017-07-18 16:38:11.957 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" sent FIN with status "0". +2017-07-18 16:38:11.958 +05:30 [Debug] Connection id ""0HL6DPD7G7E5G"" stopped. +2017-07-18 16:38:11.970 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" sending FIN. +2017-07-18 16:38:11.993 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" sending FIN. +2017-07-18 16:38:12.001 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" sending FIN. +2017-07-18 16:38:12.002 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" sent FIN with status "0". +2017-07-18 16:38:12.003 +05:30 [Debug] Connection id ""0HL6DPD7G7E5F"" stopped. +2017-07-18 16:38:12.004 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" sent FIN with status "0". +2017-07-18 16:38:12.004 +05:30 [Debug] Connection id ""0HL6DPD7G7E5H"" stopped. +2017-07-18 16:38:12.005 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" sent FIN with status "0". +2017-07-18 16:38:12.005 +05:30 [Debug] Connection id ""0HL6DPD7G7E5D"" stopped. +2017-07-18 16:38:13.379 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" started. +2017-07-18 16:38:13.387 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:38:13.387 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:38:13.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:38:16.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:38:16.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:16.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:16.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:16.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3210.3351ms +2017-07-18 16:38:16.608 +05:30 [Information] Request finished in 3223.1058ms 200 application/json; charset=utf-8 +2017-07-18 16:38:16.608 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:16.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:38:16.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:38:16.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:38:19.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:38:19.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:19.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:19.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:19.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.8872ms +2017-07-18 16:38:19.756 +05:30 [Information] Request finished in 3065.5245ms 200 application/json; charset=utf-8 +2017-07-18 16:38:19.756 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:19.768 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:38:19.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:38:19.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:38:22.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:38:22.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:22.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:22.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:22.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.6542ms +2017-07-18 16:38:22.819 +05:30 [Information] Request finished in 3050.4185ms 200 application/json; charset=utf-8 +2017-07-18 16:38:22.820 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:22.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:38:22.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:38:22.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:38:25.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:25.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:25.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:25.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:25.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3144.6163ms +2017-07-18 16:38:25.979 +05:30 [Information] Request finished in 3154.4308ms 200 application/json; charset=utf-8 +2017-07-18 16:38:25.980 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:25.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:38:25.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:38:25.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:38:28.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:28.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:28.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:28.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:28.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2177.4345ms +2017-07-18 16:38:28.170 +05:30 [Information] Request finished in 2184.5458ms 200 application/json; charset=utf-8 +2017-07-18 16:38:28.170 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:29.506 +05:30 [Debug] Connection id ""0HL6DPD7G7E5K"" started. +2017-07-18 16:38:29.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:38:29.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:38:29.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:38:29.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:38:29.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:38:29.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:38:30.009 +05:30 [Debug] Connection id ""0HL6DPD7G7E5L"" started. +2017-07-18 16:38:30.010 +05:30 [Debug] Connection id ""0HL6DPD7G7E5N"" started. +2017-07-18 16:38:30.012 +05:30 [Debug] Connection id ""0HL6DPD7G7E5M"" started. +2017-07-18 16:38:30.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:38:30.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:38:30.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:38:30.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:38:30.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:38:30.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:38:30.044 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:38:30.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:38:30.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:38:30.916 +05:30 [Debug] Connection id ""0HL6DPD7G7E5O"" started. +2017-07-18 16:38:30.921 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:38:30.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:38:30.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:38:32.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:38:32.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:32.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:32.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:32.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1199.7065ms +2017-07-18 16:38:32.133 +05:30 [Information] Request finished in 1214.3864ms 200 application/json; charset=utf-8 +2017-07-18 16:38:32.134 +05:30 [Debug] Connection id ""0HL6DPD7G7E5O"" completed keep alive response. +2017-07-18 16:38:32.171 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:38:32.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:38:32.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:38:32.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:32.640 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:32.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:38:32.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:32.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:32.645 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3130.6047ms +2017-07-18 16:38:32.648 +05:30 [Information] Request finished in 3140.5368ms 200 application/json; charset=utf-8 +2017-07-18 16:38:32.649 +05:30 [Debug] Connection id ""0HL6DPD7G7E5K"" completed keep alive response. +2017-07-18 16:38:32.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:32.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:32.788 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:38:32.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:32.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:32.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3281.4511ms +2017-07-18 16:38:32.797 +05:30 [Information] Request finished in 3289.8824ms 200 application/json; charset=utf-8 +2017-07-18 16:38:32.798 +05:30 [Debug] Connection id ""0HL6DPD7G7E5J"" completed keep alive response. +2017-07-18 16:38:33.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:33.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:33.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:38:33.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:33.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:38:33.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:33.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:33.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3459.805ms +2017-07-18 16:38:33.544 +05:30 [Information] Request finished in 3527.8963ms 200 application/json; charset=utf-8 +2017-07-18 16:38:33.545 +05:30 [Debug] Connection id ""0HL6DPD7G7E5L"" completed keep alive response. +2017-07-18 16:38:33.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:33.591 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:38:33.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:33.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:33.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3546.0253ms +2017-07-18 16:38:33.600 +05:30 [Information] Request finished in 3578.6082ms 200 application/json; charset=utf-8 +2017-07-18 16:38:33.601 +05:30 [Debug] Connection id ""0HL6DPD7G7E5N"" completed keep alive response. +2017-07-18 16:38:35.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:38:35.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:35.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:35.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:35.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3132.6286ms +2017-07-18 16:38:35.319 +05:30 [Information] Request finished in 3146.1077ms 200 application/json; charset=utf-8 +2017-07-18 16:38:35.321 +05:30 [Debug] Connection id ""0HL6DPD7G7E5O"" completed keep alive response. +2017-07-18 16:38:35.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:38:35.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:38:35.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:38:35.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:38:35.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5744.785ms +2017-07-18 16:38:35.780 +05:30 [Information] Request finished in 5764.9508ms 200 application/json; charset=utf-8 +2017-07-18 16:38:35.780 +05:30 [Debug] Connection id ""0HL6DPD7G7E5M"" completed keep alive response. +2017-07-18 16:44:51.403 +05:30 [Debug] Hosting starting +2017-07-18 16:44:51.674 +05:30 [Debug] Hosting started +2017-07-18 16:44:51.731 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" started. +2017-07-18 16:44:51.731 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" started. +2017-07-18 16:44:51.977 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:44:51.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:44:52.098 +05:30 [Information] Request finished in 174.2883ms 200 +2017-07-18 16:44:52.238 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:44:53.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:44:53.256 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"97fe03a0-683f-43bb-8b34-6e9c6eda1c02"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:44:53.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:44:53.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:44:53.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:44:53.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:44:53.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:44:53.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:44:54.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 652.9352ms +2017-07-18 16:44:54.373 +05:30 [Information] Request finished in 2506.1977ms 200 application/json; charset=utf-8 +2017-07-18 16:44:54.376 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:45:01.879 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:45:01.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:45:01.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:45:03.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:45:08.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:08.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:08.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:08.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6750.8479ms +2017-07-18 16:45:08.650 +05:30 [Information] Request finished in 6764.7415ms 200 application/json; charset=utf-8 +2017-07-18 16:45:08.656 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:45:09.095 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:45:09.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:45:09.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:45:12.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:45:12.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:12.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:12.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:12.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3571.6508ms +2017-07-18 16:45:12.732 +05:30 [Information] Request finished in 3603.4609ms 200 application/json; charset=utf-8 +2017-07-18 16:45:12.733 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:45:18.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:45:18.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:45:18.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:45:21.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:45:22.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:22.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:22.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:22.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3502.2424ms +2017-07-18 16:45:22.430 +05:30 [Information] Request finished in 3517.8666ms 200 application/json; charset=utf-8 +2017-07-18 16:45:22.431 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:45:22.594 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:45:22.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:45:22.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:45:25.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:45:25.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:25.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:25.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:25.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3062.4707ms +2017-07-18 16:45:25.668 +05:30 [Information] Request finished in 3073.3516ms 200 application/json; charset=utf-8 +2017-07-18 16:45:25.669 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:45:25.724 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:45:25.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:45:25.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:45:28.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:45:28.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:28.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:28.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:28.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3050.7148ms +2017-07-18 16:45:28.788 +05:30 [Information] Request finished in 3063.4414ms 200 application/json; charset=utf-8 +2017-07-18 16:45:28.790 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:45:28.799 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:45:28.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:45:28.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:45:31.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:31.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:31.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:32.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:32.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3210.2934ms +2017-07-18 16:45:32.020 +05:30 [Information] Request finished in 3221.4005ms 200 application/json; charset=utf-8 +2017-07-18 16:45:32.021 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:45:32.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:45:32.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:45:32.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:45:35.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:35.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:35.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:35.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:35.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3160.6764ms +2017-07-18 16:45:35.254 +05:30 [Information] Request finished in 3165.8318ms 200 application/json; charset=utf-8 +2017-07-18 16:45:35.254 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:45:37.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:45:37.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:45:37.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:45:37.824 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:45:37.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:45:37.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:45:38.312 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" started. +2017-07-18 16:45:38.313 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" started. +2017-07-18 16:45:38.317 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" started. +2017-07-18 16:45:38.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:45:38.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:45:38.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:45:38.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:45:38.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:45:38.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:45:38.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:45:38.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:45:38.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:45:39.151 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" started. +2017-07-18 16:45:39.688 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:45:39.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:45:39.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:45:40.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:40.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:40.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:40.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:45:40.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:40.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:40.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3159.8425ms +2017-07-18 16:45:41.002 +05:30 [Information] Request finished in 3206.3203ms 200 application/json; charset=utf-8 +2017-07-18 16:45:41.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:41.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:45:41.003 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:45:41.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:41.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:41.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3208.844ms +2017-07-18 16:45:41.015 +05:30 [Information] Request finished in 3222.2364ms 200 application/json; charset=utf-8 +2017-07-18 16:45:41.016 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:45:42.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:42.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:42.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:45:42.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:45:42.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:42.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:45:42.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:42.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:42.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:42.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4585.5997ms +2017-07-18 16:45:42.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:42.934 +05:30 [Information] Request finished in 4612.1875ms 200 application/json; charset=utf-8 +2017-07-18 16:45:42.939 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:45:42.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:42.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3257.7029ms +2017-07-18 16:45:42.995 +05:30 [Information] Request finished in 3307.8979ms 200 application/json; charset=utf-8 +2017-07-18 16:45:42.996 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:45:43.050 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:45:43.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:45:43.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:45:43.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:43.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:45:43.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:43.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:43.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4960.4852ms +2017-07-18 16:45:43.294 +05:30 [Information] Request finished in 4973.0767ms 200 application/json; charset=utf-8 +2017-07-18 16:45:43.295 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:45:44.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:44.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:45:44.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:44.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:44.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6637.6418ms +2017-07-18 16:45:44.992 +05:30 [Information] Request finished in 6654.1588ms 200 application/json; charset=utf-8 +2017-07-18 16:45:44.998 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:45:46.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:45:46.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:45:46.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:45:46.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:45:46.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3123.2977ms +2017-07-18 16:45:46.235 +05:30 [Information] Request finished in 3218.0941ms 200 application/json; charset=utf-8 +2017-07-18 16:45:46.236 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:46:05.116 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 16:46:05.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 16:46:05.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-18 16:46:05.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-18 16:46:05.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 16:46:05.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-18 16:46:05.141 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-18 16:46:05.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-18 16:46:05.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-18 16:46:07.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:07.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:07.261 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:07.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:07.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:07.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 2139.0311ms +2017-07-18 16:46:07.269 +05:30 [Information] Request finished in 2179.6454ms 200 application/json; charset=utf-8 +2017-07-18 16:46:07.270 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:46:08.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:08.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:08.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:08.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:08.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:08.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:08.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3296.4336ms +2017-07-18 16:46:08.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:08.458 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:08.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:08.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:08.480 +05:30 [Information] Request finished in 3370.0005ms 200 application/json; charset=utf-8 +2017-07-18 16:46:08.481 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:46:08.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3267.6849ms +2017-07-18 16:46:08.490 +05:30 [Information] Request finished in 3395.0164ms 200 application/json; charset=utf-8 +2017-07-18 16:46:08.490 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:46:26.464 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:46:26.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:46:26.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:46:29.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ba21daa531c5"]) - ModelState is Valid +2017-07-18 16:46:29.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:29.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:29.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:29.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3035.2476ms +2017-07-18 16:46:29.505 +05:30 [Information] Request finished in 3040.6592ms 200 application/json; charset=utf-8 +2017-07-18 16:46:29.505 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:46:38.883 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:46:38.884 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:46:38.885 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:46:40.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:46:41.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:41.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:41.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:41.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2196.1233ms +2017-07-18 16:46:41.089 +05:30 [Information] Request finished in 2207.5287ms 200 application/json; charset=utf-8 +2017-07-18 16:46:41.095 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:46:41.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:46:41.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:46:41.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:46:44.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:44.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:44.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:44.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:44.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3105.2511ms +2017-07-18 16:46:44.291 +05:30 [Information] Request finished in 3111.5093ms 200 application/json; charset=utf-8 +2017-07-18 16:46:44.292 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:46:44.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:46:44.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:46:44.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:46:47.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:47.414 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:47.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:47.416 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:47.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3118.6101ms +2017-07-18 16:46:47.420 +05:30 [Information] Request finished in 3123.4616ms 200 application/json; charset=utf-8 +2017-07-18 16:46:47.421 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:46:51.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:46:51.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:46:51.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:46:51.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:46:51.730 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:46:51.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:46:53.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:46:53.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:46:53.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:46:53.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:46:53.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:46:53.014 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:46:53.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:46:53.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:46:53.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:46:54.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:55.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:55.005 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:55.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:55.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:55.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:55.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3317.8753ms +2017-07-18 16:46:55.071 +05:30 [Information] Request finished in 3444.5311ms 200 application/json; charset=utf-8 +2017-07-18 16:46:55.072 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:46:55.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:55.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:55.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:55.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:55.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3326.2487ms +2017-07-18 16:46:55.094 +05:30 [Information] Request finished in 3466.7889ms 200 application/json; charset=utf-8 +2017-07-18 16:46:55.096 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:46:55.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:55.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:55.368 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:55.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:55.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:55.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2356.0986ms +2017-07-18 16:46:55.373 +05:30 [Information] Request finished in 2375.3201ms 200 application/json; charset=utf-8 +2017-07-18 16:46:55.374 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:46:55.499 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 16:46:55.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:46:55.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:46:56.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:56.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:46:56.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:56.528 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:56.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:56.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:56.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3528.2211ms +2017-07-18 16:46:56.591 +05:30 [Information] Request finished in 3581.8338ms 200 application/json; charset=utf-8 +2017-07-18 16:46:56.593 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:46:57.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:57.316 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:46:57.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:57.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:57.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4264.1557ms +2017-07-18 16:46:57.323 +05:30 [Information] Request finished in 4318.552ms 200 application/json; charset=utf-8 +2017-07-18 16:46:57.323 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:46:58.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:46:58.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:46:58.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:46:58.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:46:58.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3225.8474ms +2017-07-18 16:46:58.761 +05:30 [Information] Request finished in 3272.6986ms 200 application/json; charset=utf-8 +2017-07-18 16:46:58.762 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:47:06.695 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:47:06.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:47:06.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:47:09.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:47:09.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:09.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:09.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:09.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3050.971ms +2017-07-18 16:47:09.757 +05:30 [Information] Request finished in 3059.7987ms 200 application/json; charset=utf-8 +2017-07-18 16:47:09.761 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:47:09.784 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:47:09.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:47:09.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:47:12.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:47:12.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:12.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:12.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:12.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.3879ms +2017-07-18 16:47:12.865 +05:30 [Information] Request finished in 3082.703ms 200 application/json; charset=utf-8 +2017-07-18 16:47:12.866 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:47:12.888 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:47:12.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:47:12.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:47:15.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:16.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:16.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:16.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:16.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3194.4412ms +2017-07-18 16:47:16.102 +05:30 [Information] Request finished in 3228.3986ms 200 application/json; charset=utf-8 +2017-07-18 16:47:16.103 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:47:16.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:47:16.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:47:16.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:47:19.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:19.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:19.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:19.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:19.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.9674ms +2017-07-18 16:47:19.237 +05:30 [Information] Request finished in 3119.7093ms 200 application/json; charset=utf-8 +2017-07-18 16:47:19.237 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:47:20.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:47:20.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:47:20.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:47:20.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:47:20.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:47:20.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:47:20.962 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-18 16:47:20.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-18 16:47:20.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-18 16:47:20.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 16:47:20.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-18 16:47:20.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 16:47:20.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 16:47:20.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-18 16:47:20.977 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-18 16:47:23.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:23.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:23.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:23.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:23.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:23.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3093.0608ms +2017-07-18 16:47:23.745 +05:30 [Information] Request finished in 3122.58ms 200 application/json; charset=utf-8 +2017-07-18 16:47:23.757 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:47:23.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:23.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:23.824 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:23.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:23.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:23.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3188.8084ms +2017-07-18 16:47:23.829 +05:30 [Information] Request finished in 3218.2593ms 200 application/json; charset=utf-8 +2017-07-18 16:47:23.830 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:47:24.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:24.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:24.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:24.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:24.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:24.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:24.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:24.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3197.1394ms +2017-07-18 16:47:24.304 +05:30 [Information] Request finished in 3329.8028ms 200 application/json; charset=utf-8 +2017-07-18 16:47:24.305 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:47:24.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:24.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:24.424 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:24.424 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:24.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:24.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:24.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:24.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:24.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3461.849ms +2017-07-18 16:47:24.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3450.3076ms +2017-07-18 16:47:24.432 +05:30 [Information] Request finished in 3474.9084ms 200 application/json; charset=utf-8 +2017-07-18 16:47:24.432 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:47:24.435 +05:30 [Information] Request finished in 3477.0338ms 200 application/json; charset=utf-8 +2017-07-18 16:47:24.436 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:47:36.380 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession?sessionId=26&systemId=8d4cdce819184a7 0 +2017-07-18 16:47:36.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-18 16:47:36.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-18 16:47:38.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["26", "8d4cdce819184a7"]) - ModelState is Valid +2017-07-18 16:47:38.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-18 16:47:38.542 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-18 16:47:38.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 2156.7344ms +2017-07-18 16:47:38.546 +05:30 [Information] Request finished in 2167.1809ms 200 +2017-07-18 16:47:38.547 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:47:38.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 16:47:38.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 16:47:38.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 16:47:39.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:47:39.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:47:39.783 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:47:39.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:47:39.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:47:39.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 1182.0072ms +2017-07-18 16:47:39.788 +05:30 [Information] Request finished in 1217.2191ms 200 application/json; charset=utf-8 +2017-07-18 16:47:39.789 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:48:13.720 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:48:13.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:48:13.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:48:16.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:48:16.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:16.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:16.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:16.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.9298ms +2017-07-18 16:48:16.781 +05:30 [Information] Request finished in 3060.6353ms 200 application/json; charset=utf-8 +2017-07-18 16:48:16.782 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:48:16.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:48:16.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:48:16.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:48:19.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdce819184a7"]) - ModelState is Valid +2017-07-18 16:48:19.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:19.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:19.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:19.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3065.98ms +2017-07-18 16:48:19.875 +05:30 [Information] Request finished in 3076.8865ms 200 application/json; charset=utf-8 +2017-07-18 16:48:19.875 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:48:19.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:48:19.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:48:19.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:48:22.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:23.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:23.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:23.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:23.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3111.8199ms +2017-07-18 16:48:23.026 +05:30 [Information] Request finished in 3117.4586ms 200 application/json; charset=utf-8 +2017-07-18 16:48:23.027 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:48:23.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:48:23.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:48:23.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:48:26.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:26.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:26.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:26.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:26.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3136.2213ms +2017-07-18 16:48:26.176 +05:30 [Information] Request finished in 3142.0925ms 200 application/json; charset=utf-8 +2017-07-18 16:48:26.176 +05:30 [Debug] Connection id ""0HL6DPOQU58BS"" completed keep alive response. +2017-07-18 16:48:28.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:48:28.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:48:28.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:48:28.774 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:48:28.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:48:28.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:48:29.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:48:29.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:48:29.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:48:29.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:48:29.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:48:29.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:48:29.835 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:48:29.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:48:29.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:48:34.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:34.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:34.634 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:48:34.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:34.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:34.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:34.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5858.9764ms +2017-07-18 16:48:34.790 +05:30 [Information] Request finished in 6025.0688ms 200 application/json; charset=utf-8 +2017-07-18 16:48:34.791 +05:30 [Debug] Connection id ""0HL6DPOQU58BN"" completed keep alive response. +2017-07-18 16:48:35.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:37.306 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:48:37.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:37.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:37.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:37.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:37.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8580.0884ms +2017-07-18 16:48:37.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:48:37.415 +05:30 [Information] Request finished in 8633.6256ms 200 application/json; charset=utf-8 +2017-07-18 16:48:37.438 +05:30 [Debug] Connection id ""0HL6DPOQU58BQ"" completed keep alive response. +2017-07-18 16:48:37.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:37.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:48:37.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:37.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:37.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 7757.7596ms +2017-07-18 16:48:37.594 +05:30 [Information] Request finished in 7894.9073ms 200 application/json; charset=utf-8 +2017-07-18 16:48:37.595 +05:30 [Debug] Connection id ""0HL6DPOQU58BR"" completed keep alive response. +2017-07-18 16:48:37.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:37.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:48:37.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:37.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:37.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7823.358ms +2017-07-18 16:48:37.707 +05:30 [Information] Request finished in 8024.6136ms 200 application/json; charset=utf-8 +2017-07-18 16:48:37.708 +05:30 [Debug] Connection id ""0HL6DPOQU58BP"" completed keep alive response. +2017-07-18 16:48:39.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:48:39.054 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:48:39.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:48:39.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:48:39.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9366.8739ms +2017-07-18 16:48:39.074 +05:30 [Information] Request finished in 9394.4463ms 200 application/json; charset=utf-8 +2017-07-18 16:48:39.077 +05:30 [Debug] Connection id ""0HL6DPOQU58BO"" completed keep alive response. +2017-07-18 16:50:27.077 +05:30 [Debug] Hosting starting +2017-07-18 16:50:27.758 +05:30 [Debug] Connection id ""0HL6DPRV2PHFD"" started. +2017-07-18 16:50:27.829 +05:30 [Debug] Connection id ""0HL6DPRV2PHFE"" started. +2017-07-18 16:50:27.882 +05:30 [Debug] Hosting started +2017-07-18 16:50:28.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:50:28.259 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:50:28.340 +05:30 [Information] Request finished in 142.4679ms 200 +2017-07-18 16:50:28.450 +05:30 [Debug] Connection id ""0HL6DPRV2PHFE"" completed keep alive response. +2017-07-18 16:50:29.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:50:29.515 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"75d273ce-d0eb-431a-b390-0e194e8bf339"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:50:29.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:50:29.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:50:29.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:50:30.054 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:50:30.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:50:30.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:50:30.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 610.1465ms +2017-07-18 16:50:30.702 +05:30 [Information] Request finished in 2542.0472ms 200 application/json; charset=utf-8 +2017-07-18 16:50:30.705 +05:30 [Debug] Connection id ""0HL6DPRV2PHFD"" completed keep alive response. +2017-07-18 16:50:37.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:50:37.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:50:37.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:50:41.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:50:46.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:50:46.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:50:46.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:50:46.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8728.1385ms +2017-07-18 16:50:46.539 +05:30 [Information] Request finished in 8802.354ms 200 application/json; charset=utf-8 +2017-07-18 16:50:46.539 +05:30 [Debug] Connection id ""0HL6DPRV2PHFE"" completed keep alive response. +2017-07-18 16:50:47.227 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:50:47.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:50:47.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:50:57.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:50:58.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:50:58.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:50:58.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:50:59.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 12427.2106ms +2017-07-18 16:50:59.665 +05:30 [Information] Request finished in 12492.1286ms 200 application/json; charset=utf-8 +2017-07-18 16:50:59.666 +05:30 [Debug] Connection id ""0HL6DPRV2PHFD"" completed keep alive response. +2017-07-18 16:51:25.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:51:25.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:51:25.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:51:29.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdce819184a7"]) - ModelState is Valid +2017-07-18 16:51:29.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:51:29.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:51:29.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:51:30.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4776.812ms +2017-07-18 16:51:30.040 +05:30 [Information] Request finished in 4822.7872ms 200 application/json; charset=utf-8 +2017-07-18 16:51:30.041 +05:30 [Debug] Connection id ""0HL6DPRV2PHFE"" completed keep alive response. +2017-07-18 16:51:49.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:51:49.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:51:49.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:51:51.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:51:51.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:51:51.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:51:51.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:51:51.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2459.7474ms +2017-07-18 16:51:51.773 +05:30 [Information] Request finished in 2471.7364ms 200 application/json; charset=utf-8 +2017-07-18 16:51:51.774 +05:30 [Debug] Connection id ""0HL6DPRV2PHFD"" completed keep alive response. +2017-07-18 16:53:19.453 +05:30 [Debug] Hosting starting +2017-07-18 16:53:19.656 +05:30 [Debug] Hosting started +2017-07-18 16:53:19.735 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" started. +2017-07-18 16:53:19.763 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" started. +2017-07-18 16:53:19.942 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 16:53:19.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 16:53:20.021 +05:30 [Information] Request finished in 117.5126ms 200 +2017-07-18 16:53:20.100 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:53:20.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 16:53:20.893 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"246dacd7-4102-44df-a25d-cd04fa12b4ea"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 16:53:21.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 16:53:21.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 16:53:21.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 16:53:21.341 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:53:21.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:53:21.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:53:21.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 524.041ms +2017-07-18 16:53:21.676 +05:30 [Information] Request finished in 1793.4476ms 200 application/json; charset=utf-8 +2017-07-18 16:53:21.679 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:53:32.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:53:32.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:53:32.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:53:36.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:53:40.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:53:40.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:53:40.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:53:40.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8149.6737ms +2017-07-18 16:53:40.895 +05:30 [Information] Request finished in 8175.0551ms 200 application/json; charset=utf-8 +2017-07-18 16:53:40.897 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:53:43.134 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:53:43.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:53:43.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:53:50.454 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:53:50.456 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:53:50.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:53:50.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:53:50.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:53:50.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:53:50.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:53:50.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 7470.8475ms +2017-07-18 16:53:50.613 +05:30 [Information] Request finished in 7478.518ms 200 application/json; charset=utf-8 +2017-07-18 16:53:50.614 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:53:53.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:53:53.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:53:53.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:53:53.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:53:53.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.8311ms +2017-07-18 16:53:53.529 +05:30 [Information] Request finished in 3077.0073ms 200 application/json; charset=utf-8 +2017-07-18 16:53:53.530 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:53:56.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:53:56.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:53:56.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:53:59.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:53:59.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:53:59.114 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:53:59.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:53:59.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:53:59.873 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:53:59.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:53:59.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.6109ms +2017-07-18 16:53:59.879 +05:30 [Information] Request finished in 3081.3575ms 200 application/json; charset=utf-8 +2017-07-18 16:53:59.880 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:02.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:54:02.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:02.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:02.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:02.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3310.3918ms +2017-07-18 16:54:02.433 +05:30 [Information] Request finished in 3320.7129ms 200 application/json; charset=utf-8 +2017-07-18 16:54:02.433 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:03.720 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:54:03.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:54:03.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:54:06.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:54:06.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:06.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:06.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:06.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.5249ms +2017-07-18 16:54:06.783 +05:30 [Information] Request finished in 3063.1703ms 200 application/json; charset=utf-8 +2017-07-18 16:54:06.783 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:06.791 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:54:06.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:54:06.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:54:09.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:54:09.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:09.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:09.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:09.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.7258ms +2017-07-18 16:54:09.854 +05:30 [Information] Request finished in 3067.3689ms 200 application/json; charset=utf-8 +2017-07-18 16:54:09.855 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:09.891 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:54:09.891 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:54:09.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:54:12.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:54:12.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:12.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:12.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:12.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3075.7797ms +2017-07-18 16:54:12.973 +05:30 [Information] Request finished in 3083.0543ms 200 application/json; charset=utf-8 +2017-07-18 16:54:12.974 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:12.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:54:12.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:54:12.998 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:54:16.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:16.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:16.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:16.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:16.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3215.0823ms +2017-07-18 16:54:16.222 +05:30 [Information] Request finished in 3230.628ms 200 application/json; charset=utf-8 +2017-07-18 16:54:16.223 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:16.289 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:54:16.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:54:16.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:54:19.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:19.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:19.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:19.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:19.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3126.8587ms +2017-07-18 16:54:19.428 +05:30 [Information] Request finished in 3138.2438ms 200 application/json; charset=utf-8 +2017-07-18 16:54:19.428 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:23.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:54:23.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:54:23.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:54:23.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:54:23.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:54:23.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:54:24.474 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" started. +2017-07-18 16:54:24.479 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" started. +2017-07-18 16:54:24.489 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" started. +2017-07-18 16:54:24.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:54:24.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:54:24.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:54:24.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:54:24.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:54:24.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:54:24.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:54:24.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:54:24.532 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:54:26.633 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" started. +2017-07-18 16:54:26.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:54:26.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:54:26.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:54:28.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:28.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:28.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:28.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:28.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:28.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4901.6148ms +2017-07-18 16:54:28.832 +05:30 [Information] Request finished in 4918.1815ms 200 application/json; charset=utf-8 +2017-07-18 16:54:28.833 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:28.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:28.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:28.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:28.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:29.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:29.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:29.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:29.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:29.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4542.1853ms +2017-07-18 16:54:29.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:29.169 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:29.168 +05:30 [Information] Request finished in 4604.7971ms 200 application/json; charset=utf-8 +2017-07-18 16:54:29.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:29.179 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" completed keep alive response. +2017-07-18 16:54:29.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:29.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5275.2638ms +2017-07-18 16:54:29.223 +05:30 [Information] Request finished in 5307.7072ms 200 application/json; charset=utf-8 +2017-07-18 16:54:29.254 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:29.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:29.398 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:29.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:29.399 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:29.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4918.3838ms +2017-07-18 16:54:29.454 +05:30 [Information] Request finished in 4960.8772ms 200 application/json; charset=utf-8 +2017-07-18 16:54:29.455 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" completed keep alive response. +2017-07-18 16:54:29.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:54:29.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:29.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:29.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:29.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3208.8245ms +2017-07-18 16:54:29.894 +05:30 [Information] Request finished in 3214.8926ms 200 application/json; charset=utf-8 +2017-07-18 16:54:29.895 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" completed keep alive response. +2017-07-18 16:54:29.922 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:54:29.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:54:29.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:54:31.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:31.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:31.426 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:31.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:31.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6895.7135ms +2017-07-18 16:54:31.437 +05:30 [Information] Request finished in 6944.669ms 200 application/json; charset=utf-8 +2017-07-18 16:54:31.438 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" completed keep alive response. +2017-07-18 16:54:34.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:54:34.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:34.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:34.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:34.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4404.4145ms +2017-07-18 16:54:34.334 +05:30 [Information] Request finished in 4435.2172ms 200 application/json; charset=utf-8 +2017-07-18 16:54:34.335 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:36.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:54:36.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:54:36.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:54:38.687 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:54:38.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:54:38.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:54:38.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:54:38.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:38.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:38.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:39.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2769.351ms +2017-07-18 16:54:39.300 +05:30 [Information] Request finished in 2965.4992ms 200 application/json; charset=utf-8 +2017-07-18 16:54:39.333 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" completed keep alive response. +2017-07-18 16:54:41.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdce819184a7"]) - ModelState is Valid +2017-07-18 16:54:41.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:41.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:41.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:41.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3092.5427ms +2017-07-18 16:54:41.795 +05:30 [Information] Request finished in 3110.4393ms 200 application/json; charset=utf-8 +2017-07-18 16:54:41.796 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:48.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 16:54:48.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 16:54:48.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 16:54:50.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:54:51.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:51.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:51.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:51.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2307.1897ms +2017-07-18 16:54:51.119 +05:30 [Information] Request finished in 2319.4631ms 200 application/json; charset=utf-8 +2017-07-18 16:54:51.120 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" completed keep alive response. +2017-07-18 16:54:52.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:54:52.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:54:52.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:54:53.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:53.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:53.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:53.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:53.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 1365.5043ms +2017-07-18 16:54:53.774 +05:30 [Information] Request finished in 1380.9559ms 200 application/json; charset=utf-8 +2017-07-18 16:54:53.775 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" completed keep alive response. +2017-07-18 16:54:53.780 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:54:53.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:54:53.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:54:54.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:54.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:54.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:55.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:55.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1216.5761ms +2017-07-18 16:54:55.009 +05:30 [Information] Request finished in 1228.4108ms 200 application/json; charset=utf-8 +2017-07-18 16:54:55.009 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" completed keep alive response. +2017-07-18 16:54:56.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:54:56.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:54:56.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:54:56.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:54:56.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:54:56.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:54:57.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:54:57.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:54:57.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:54:57.457 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:54:57.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:54:57.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:54:57.511 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:54:57.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:54:57.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:54:58.740 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 16:54:58.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:54:58.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:54:59.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:59.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:59.024 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:59.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:59.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:59.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:54:59.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:59.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2390.3162ms +2017-07-18 16:54:59.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:59.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:59.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:59.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:54:59.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:54:59.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:54:59.261 +05:30 [Information] Request finished in 2533.6268ms 200 application/json; charset=utf-8 +2017-07-18 16:54:59.266 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:54:59.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:59.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:54:59.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1836.6051ms +2017-07-18 16:54:59.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2605.5393ms +2017-07-18 16:54:59.310 +05:30 [Information] Request finished in 1900.6017ms 200 application/json; charset=utf-8 +2017-07-18 16:54:59.311 +05:30 [Information] Request finished in 2641.1889ms 200 application/json; charset=utf-8 +2017-07-18 16:54:59.311 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:54:59.320 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" completed keep alive response. +2017-07-18 16:55:00.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:00.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:00.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:00.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:00.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:00.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:00.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3541.6324ms +2017-07-18 16:55:00.966 +05:30 [Information] Request finished in 3559.2439ms 200 application/json; charset=utf-8 +2017-07-18 16:55:00.967 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" completed keep alive response. +2017-07-18 16:55:01.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:01.785 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:01.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:01.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:01.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4293.9447ms +2017-07-18 16:55:01.830 +05:30 [Information] Request finished in 4413.0057ms 200 application/json; charset=utf-8 +2017-07-18 16:55:01.831 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" completed keep alive response. +2017-07-18 16:55:01.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:55:02.051 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:02.051 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:02.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:02.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3310.9265ms +2017-07-18 16:55:02.056 +05:30 [Information] Request finished in 3334.6013ms 200 application/json; charset=utf-8 +2017-07-18 16:55:02.057 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" completed keep alive response. +2017-07-18 16:55:06.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-18 16:55:06.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-18 16:55:06.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-18 16:55:06.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 16:55:06.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 16:55:06.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 16:55:06.354 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-18 16:55:06.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-18 16:55:06.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-18 16:55:09.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:09.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:09.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:09.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:09.503 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:09.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:09.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:09.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3196.9666ms +2017-07-18 16:55:09.633 +05:30 [Information] Request finished in 3273.2346ms 200 application/json; charset=utf-8 +2017-07-18 16:55:09.634 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:55:09.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:09.752 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:09.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:09.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:09.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:09.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:09.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:09.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:09.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3445.5621ms +2017-07-18 16:55:09.787 +05:30 [Information] Request finished in 3461.4759ms 200 application/json; charset=utf-8 +2017-07-18 16:55:09.788 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" completed keep alive response. +2017-07-18 16:55:09.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3422.2979ms +2017-07-18 16:55:09.793 +05:30 [Information] Request finished in 3463.3279ms 200 application/json; charset=utf-8 +2017-07-18 16:55:09.794 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" completed keep alive response. +2017-07-18 16:55:13.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession?sessionId=27&systemId=8d4cdcfa19c04ec 0 +2017-07-18 16:55:13.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-18 16:55:13.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-18 16:55:16.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["27", "8d4cdcfa19c04ec"]) - ModelState is Valid +2017-07-18 16:55:16.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-18 16:55:16.817 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-18 16:55:16.819 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3094.98ms +2017-07-18 16:55:16.826 +05:30 [Information] Request finished in 3110.9369ms 200 +2017-07-18 16:55:16.827 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" completed keep alive response. +2017-07-18 16:55:16.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 16:55:16.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 16:55:16.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 16:55:19.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:55:19.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:19.917 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:55:19.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:19.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:19.926 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3065.399ms +2017-07-18 16:55:19.929 +05:30 [Information] Request finished in 3078.3283ms 200 application/json; charset=utf-8 +2017-07-18 16:55:19.930 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" completed keep alive response. +2017-07-18 16:55:33.563 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:55:33.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:55:33.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:55:36.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcfa19c04ec"]) - ModelState is Valid +2017-07-18 16:55:36.667 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:36.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:36.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:36.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.8029ms +2017-07-18 16:55:36.677 +05:30 [Information] Request finished in 3116.6836ms 200 application/json; charset=utf-8 +2017-07-18 16:55:36.677 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" completed keep alive response. +2017-07-18 16:55:37.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:55:37.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:55:37.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:55:42.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcfa19c04ec"]) - ModelState is Valid +2017-07-18 16:55:42.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:55:42.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:55:42.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:55:42.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4748.2152ms +2017-07-18 16:55:42.740 +05:30 [Information] Request finished in 4788.0631ms 200 application/json; charset=utf-8 +2017-07-18 16:55:42.742 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" completed keep alive response. +2017-07-18 16:57:09.352 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" received FIN. +2017-07-18 16:57:09.353 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" received FIN. +2017-07-18 16:57:09.353 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" received FIN. +2017-07-18 16:57:09.354 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" disconnecting. +2017-07-18 16:57:09.352 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" received FIN. +2017-07-18 16:57:09.366 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" received FIN. +2017-07-18 16:57:09.357 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" disconnecting. +2017-07-18 16:57:09.354 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" disconnecting. +2017-07-18 16:57:09.367 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" disconnecting. +2017-07-18 16:57:09.366 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" sending FIN. +2017-07-18 16:57:09.369 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" disconnecting. +2017-07-18 16:57:09.368 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" received FIN. +2017-07-18 16:57:09.372 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" started. +2017-07-18 16:57:09.372 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" sending FIN. +2017-07-18 16:57:09.373 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" sending FIN. +2017-07-18 16:57:09.376 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" sending FIN. +2017-07-18 16:57:09.373 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" disconnecting. +2017-07-18 16:57:09.375 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" sending FIN. +2017-07-18 16:57:09.378 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" sending FIN. +2017-07-18 16:57:09.381 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" sent FIN with status "0". +2017-07-18 16:57:09.381 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" sent FIN with status "0". +2017-07-18 16:57:09.383 +05:30 [Debug] Connection id ""0HL6DPTIAT0HC"" stopped. +2017-07-18 16:57:09.383 +05:30 [Debug] Connection id ""0HL6DPTIAT0HD"" stopped. +2017-07-18 16:57:09.384 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" sent FIN with status "0". +2017-07-18 16:57:09.386 +05:30 [Debug] Connection id ""0HL6DPTIAT0HF"" stopped. +2017-07-18 16:57:09.386 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" sent FIN with status "0". +2017-07-18 16:57:09.386 +05:30 [Debug] Connection id ""0HL6DPTIAT0HE"" stopped. +2017-07-18 16:57:09.384 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" sent FIN with status "0". +2017-07-18 16:57:09.389 +05:30 [Debug] Connection id ""0HL6DPTIAT0HG"" stopped. +2017-07-18 16:57:09.388 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:57:09.389 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" sent FIN with status "0". +2017-07-18 16:57:09.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:57:09.393 +05:30 [Debug] Connection id ""0HL6DPTIAT0HB"" stopped. +2017-07-18 16:57:09.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:57:12.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:57:12.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:12.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:12.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:12.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3100.0974ms +2017-07-18 16:57:12.504 +05:30 [Information] Request finished in 3116.4191ms 200 application/json; charset=utf-8 +2017-07-18 16:57:12.505 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:12.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:57:12.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:57:12.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:57:15.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:57:15.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:15.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:15.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:15.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.3747ms +2017-07-18 16:57:15.599 +05:30 [Information] Request finished in 3089.0483ms 200 application/json; charset=utf-8 +2017-07-18 16:57:15.600 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:15.634 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:57:15.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:57:15.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:57:18.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:57:18.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:18.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:18.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:18.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3055.9374ms +2017-07-18 16:57:18.701 +05:30 [Information] Request finished in 3078.1492ms 200 application/json; charset=utf-8 +2017-07-18 16:57:18.702 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:18.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:57:18.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:57:18.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:57:21.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:21.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:21.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:21.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:21.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3110.9793ms +2017-07-18 16:57:21.840 +05:30 [Information] Request finished in 3119.3063ms 200 application/json; charset=utf-8 +2017-07-18 16:57:21.841 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:21.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:57:21.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:57:21.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:57:24.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:24.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:24.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:24.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:24.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.8585ms +2017-07-18 16:57:24.971 +05:30 [Information] Request finished in 3119.4394ms 200 application/json; charset=utf-8 +2017-07-18 16:57:24.971 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:26.323 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" started. +2017-07-18 16:57:26.333 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:57:26.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:57:26.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:57:26.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:57:26.350 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:57:26.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:57:26.875 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" started. +2017-07-18 16:57:26.879 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" started. +2017-07-18 16:57:26.900 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" started. +2017-07-18 16:57:26.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:57:26.955 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:57:26.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:57:26.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:57:26.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:57:26.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:57:26.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:57:26.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:57:26.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:57:29.273 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" started. +2017-07-18 16:57:29.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:57:29.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:57:29.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:57:30.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:30.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:30.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:30.442 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:57:30.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:30.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:30.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4089.7101ms +2017-07-18 16:57:30.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:30.451 +05:30 [Information] Request finished in 4125.787ms 200 application/json; charset=utf-8 +2017-07-18 16:57:30.451 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:57:30.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:57:30.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:30.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:30.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4098.7754ms +2017-07-18 16:57:30.462 +05:30 [Information] Request finished in 4137.4863ms 200 application/json; charset=utf-8 +2017-07-18 16:57:30.463 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:31.501 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:31.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:31.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:31.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:31.635 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:57:31.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:31.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:57:31.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:31.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:31.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:31.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4752.2242ms +2017-07-18 16:57:31.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:31.799 +05:30 [Information] Request finished in 4873.3875ms 200 application/json; charset=utf-8 +2017-07-18 16:57:31.800 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:57:31.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2459.8381ms +2017-07-18 16:57:31.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:31.840 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:57:31.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:31.864 +05:30 [Information] Request finished in 2560.7116ms 200 application/json; charset=utf-8 +2017-07-18 16:57:31.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:31.866 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" completed keep alive response. +2017-07-18 16:57:31.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4888.8941ms +2017-07-18 16:57:31.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:57:31.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:57:31.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:57:31.888 +05:30 [Information] Request finished in 4924.2858ms 200 application/json; charset=utf-8 +2017-07-18 16:57:31.888 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" completed keep alive response. +2017-07-18 16:57:33.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:33.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:57:33.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:33.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:33.487 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6512.5741ms +2017-07-18 16:57:33.493 +05:30 [Information] Request finished in 6602.4561ms 200 application/json; charset=utf-8 +2017-07-18 16:57:33.494 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 16:57:34.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:57:34.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:34.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:34.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:34.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3056.9862ms +2017-07-18 16:57:34.941 +05:30 [Information] Request finished in 3070.2916ms 200 application/json; charset=utf-8 +2017-07-18 16:57:34.942 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:57:34.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:57:34.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:57:34.951 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:57:38.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:57:38.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:38.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:38.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:38.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3093.6958ms +2017-07-18 16:57:38.052 +05:30 [Information] Request finished in 3102.2752ms 200 application/json; charset=utf-8 +2017-07-18 16:57:38.052 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:57:44.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:57:44.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:57:44.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:57:47.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:57:47.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:47.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:47.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:47.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.9731ms +2017-07-18 16:57:47.490 +05:30 [Information] Request finished in 3069.7989ms 200 application/json; charset=utf-8 +2017-07-18 16:57:47.492 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:57:47.503 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:57:47.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:57:47.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:57:50.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:57:50.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:50.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:50.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:50.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3034.4599ms +2017-07-18 16:57:50.546 +05:30 [Information] Request finished in 3050.9657ms 200 application/json; charset=utf-8 +2017-07-18 16:57:50.547 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" completed keep alive response. +2017-07-18 16:57:50.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:57:50.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:57:50.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:57:53.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:57:53.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:53.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:53.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:53.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3058.0331ms +2017-07-18 16:57:53.621 +05:30 [Information] Request finished in 3066.9858ms 200 application/json; charset=utf-8 +2017-07-18 16:57:53.622 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" completed keep alive response. +2017-07-18 16:57:53.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:57:53.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:57:53.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:57:56.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:56.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:56.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:56.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:56.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.7659ms +2017-07-18 16:57:56.799 +05:30 [Information] Request finished in 3173.2633ms 200 application/json; charset=utf-8 +2017-07-18 16:57:56.800 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 16:57:56.806 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:57:56.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:57:56.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:57:59.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:57:59.929 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:57:59.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:57:59.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:57:59.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.1925ms +2017-07-18 16:57:59.935 +05:30 [Information] Request finished in 3129.3252ms 200 application/json; charset=utf-8 +2017-07-18 16:57:59.936 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:58:01.301 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:58:01.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:58:01.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:58:01.306 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:58:01.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:58:01.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:58:01.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:58:01.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:58:01.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:58:01.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:58:01.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:58:01.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:58:01.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:58:01.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:58:01.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:58:03.573 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:58:03.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:58:03.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:58:03.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:58:03.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:03.584 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:58:03.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:03.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:03.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2291.063ms +2017-07-18 16:58:03.599 +05:30 [Information] Request finished in 2302.3826ms 200 application/json; charset=utf-8 +2017-07-18 16:58:03.600 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:58:04.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:58:04.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:04.606 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:58:04.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:04.608 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:04.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3299.7874ms +2017-07-18 16:58:04.612 +05:30 [Information] Request finished in 3316.1154ms 200 application/json; charset=utf-8 +2017-07-18 16:58:04.613 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:58:05.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:58:05.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:58:05.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:05.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:05.832 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:58:05.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:05.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:58:05.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:05.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:05.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3967.8174ms +2017-07-18 16:58:05.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:05.842 +05:30 [Information] Request finished in 3985.611ms 200 application/json; charset=utf-8 +2017-07-18 16:58:05.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3963.6992ms +2017-07-18 16:58:05.844 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 16:58:05.850 +05:30 [Information] Request finished in 3992.7896ms 200 application/json; charset=utf-8 +2017-07-18 16:58:05.851 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" completed keep alive response. +2017-07-18 16:58:06.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:58:06.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:06.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:06.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:06.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3207.724ms +2017-07-18 16:58:06.791 +05:30 [Information] Request finished in 3230.2321ms 200 application/json; charset=utf-8 +2017-07-18 16:58:06.792 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:58:06.805 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:58:06.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:58:06.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:58:09.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:58:09.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:58:09.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:09.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:09.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:09.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3050.6088ms +2017-07-18 16:58:09.862 +05:30 [Information] Request finished in 3066.1029ms 200 application/json; charset=utf-8 +2017-07-18 16:58:09.863 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:58:09.872 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:58:09.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:58:09.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:58:10.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:10.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:58:10.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:10.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:10.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8645.1544ms +2017-07-18 16:58:10.518 +05:30 [Information] Request finished in 8660.1353ms 200 application/json; charset=utf-8 +2017-07-18 16:58:10.521 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" completed keep alive response. +2017-07-18 16:58:12.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:58:12.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:12.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:12.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:12.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3056.1172ms +2017-07-18 16:58:12.933 +05:30 [Information] Request finished in 3062.2592ms 200 application/json; charset=utf-8 +2017-07-18 16:58:12.934 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:58:48.654 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:58:48.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:58:48.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:58:51.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:58:51.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:51.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:51.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:51.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3066.1251ms +2017-07-18 16:58:51.725 +05:30 [Information] Request finished in 3115.8655ms 200 application/json; charset=utf-8 +2017-07-18 16:58:51.725 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 16:58:51.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:58:51.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:58:51.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:58:54.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:58:54.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:54.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:54.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:54.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3064.091ms +2017-07-18 16:58:54.800 +05:30 [Information] Request finished in 3072.3833ms 200 application/json; charset=utf-8 +2017-07-18 16:58:54.801 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" completed keep alive response. +2017-07-18 16:58:54.823 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 16:58:54.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 16:58:54.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 16:58:57.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:58:57.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:58:57.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:58:57.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:58:57.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3076.2389ms +2017-07-18 16:58:57.911 +05:30 [Information] Request finished in 3088.3732ms 200 application/json; charset=utf-8 +2017-07-18 16:58:57.912 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:58:57.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 16:58:57.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 16:58:57.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 16:59:01.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:01.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:01.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:01.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:01.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3141.9568ms +2017-07-18 16:59:01.076 +05:30 [Information] Request finished in 3150.6086ms 200 application/json; charset=utf-8 +2017-07-18 16:59:01.076 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:59:01.085 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:59:01.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:59:01.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:59:04.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:04.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:04.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:04.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:04.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3103.4908ms +2017-07-18 16:59:04.193 +05:30 [Information] Request finished in 3109.1392ms 200 application/json; charset=utf-8 +2017-07-18 16:59:04.195 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" completed keep alive response. +2017-07-18 16:59:05.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 16:59:05.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 16:59:05.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 16:59:05.571 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 16:59:05.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 16:59:05.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 16:59:06.136 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 16:59:06.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 16:59:06.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 16:59:06.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 16:59:06.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 16:59:06.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 16:59:06.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 16:59:06.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 16:59:06.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 16:59:07.781 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 16:59:07.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 16:59:07.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 16:59:08.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:08.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:08.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:08.953 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:59:08.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:08.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:08.955 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:08.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3390.2245ms +2017-07-18 16:59:08.965 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:59:08.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:08.968 +05:30 [Information] Request finished in 3412.5542ms 200 application/json; charset=utf-8 +2017-07-18 16:59:08.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:08.971 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:59:08.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3406.928ms +2017-07-18 16:59:09.000 +05:30 [Information] Request finished in 3444.8304ms 200 application/json; charset=utf-8 +2017-07-18 16:59:09.001 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 16:59:09.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:10.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:10.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 16:59:10.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:10.217 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:59:10.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:10.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:10.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 16:59:10.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4116.4462ms +2017-07-18 16:59:10.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:10.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:10.308 +05:30 [Information] Request finished in 4174.8816ms 200 application/json; charset=utf-8 +2017-07-18 16:59:10.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:10.322 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" completed keep alive response. +2017-07-18 16:59:10.356 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:10.363 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:59:10.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:10.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2576.6708ms +2017-07-18 16:59:10.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:10.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4210.2312ms +2017-07-18 16:59:10.376 +05:30 [Information] Request finished in 2602.0237ms 200 application/json; charset=utf-8 +2017-07-18 16:59:10.378 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" completed keep alive response. +2017-07-18 16:59:10.386 +05:30 [Information] Request finished in 4258.2965ms 200 application/json; charset=utf-8 +2017-07-18 16:59:10.387 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" completed keep alive response. +2017-07-18 16:59:10.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 16:59:10.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 16:59:10.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 16:59:10.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:10.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 16:59:10.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:10.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:10.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4803.2545ms +2017-07-18 16:59:10.976 +05:30 [Information] Request finished in 4855.1403ms 200 application/json; charset=utf-8 +2017-07-18 16:59:10.977 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" completed keep alive response. +2017-07-18 16:59:12.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 16:59:12.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:12.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:12.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:12.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2101.2555ms +2017-07-18 16:59:12.513 +05:30 [Information] Request finished in 2125.4344ms 200 application/json; charset=utf-8 +2017-07-18 16:59:12.514 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" completed keep alive response. +2017-07-18 16:59:12.529 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 16:59:12.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 16:59:12.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 16:59:15.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 16:59:15.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 16:59:15.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 16:59:15.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 16:59:15.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3056.5863ms +2017-07-18 16:59:15.591 +05:30 [Information] Request finished in 3064.4068ms 200 application/json; charset=utf-8 +2017-07-18 16:59:15.591 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" completed keep alive response. +2017-07-18 17:01:19.710 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" received FIN. +2017-07-18 17:01:19.712 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" received FIN. +2017-07-18 17:01:19.711 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" received FIN. +2017-07-18 17:01:19.713 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" received FIN. +2017-07-18 17:01:19.713 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" received FIN. +2017-07-18 17:01:19.715 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" received FIN. +2017-07-18 17:01:19.760 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" disconnecting. +2017-07-18 17:01:19.760 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" disconnecting. +2017-07-18 17:01:19.769 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" disconnecting. +2017-07-18 17:01:19.760 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" disconnecting. +2017-07-18 17:01:19.768 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" disconnecting. +2017-07-18 17:01:19.769 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" sending FIN. +2017-07-18 17:01:19.770 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" disconnecting. +2017-07-18 17:01:19.770 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" sending FIN. +2017-07-18 17:01:19.782 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" sending FIN. +2017-07-18 17:01:19.789 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" sending FIN. +2017-07-18 17:01:19.794 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" sending FIN. +2017-07-18 17:01:19.798 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" sending FIN. +2017-07-18 17:01:19.804 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" sent FIN with status "0". +2017-07-18 17:01:19.808 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" sent FIN with status "0". +2017-07-18 17:01:19.814 +05:30 [Debug] Connection id ""0HL6DPTIAT0HK"" stopped. +2017-07-18 17:01:19.819 +05:30 [Debug] Connection id ""0HL6DPTIAT0HJ"" stopped. +2017-07-18 17:01:19.826 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" sent FIN with status "0". +2017-07-18 17:01:19.831 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" sent FIN with status "0". +2017-07-18 17:01:19.836 +05:30 [Debug] Connection id ""0HL6DPTIAT0HM"" stopped. +2017-07-18 17:01:19.843 +05:30 [Debug] Connection id ""0HL6DPTIAT0HL"" stopped. +2017-07-18 17:01:19.850 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" sent FIN with status "0". +2017-07-18 17:01:19.850 +05:30 [Debug] Connection id ""0HL6DPTIAT0HH"" stopped. +2017-07-18 17:01:19.849 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" sent FIN with status "0". +2017-07-18 17:01:19.853 +05:30 [Debug] Connection id ""0HL6DPTIAT0HI"" stopped. +2017-07-18 17:08:50.788 +05:30 [Debug] Hosting starting +2017-07-18 17:08:51.018 +05:30 [Debug] Hosting started +2017-07-18 17:08:51.073 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" started. +2017-07-18 17:08:51.073 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" started. +2017-07-18 17:08:51.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:08:51.257 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:08:51.348 +05:30 [Information] Request finished in 135.4251ms 200 +2017-07-18 17:08:51.417 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:08:52.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:08:52.103 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2829be4a-88ed-456d-91ee-c2ba2a2839b3"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:08:52.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:08:52.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:08:52.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:08:52.695 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:08:52.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:08:52.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:08:53.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 541.5546ms +2017-07-18 17:08:53.276 +05:30 [Information] Request finished in 2075.7903ms 200 application/json; charset=utf-8 +2017-07-18 17:08:53.280 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:08:53.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 17:08:53.364 +05:30 [Debug] Request did not match any routes. +2017-07-18 17:08:53.406 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 17:08:53.438 +05:30 [Information] Request finished in 69.838ms 404 +2017-07-18 17:08:53.439 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:09:00.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:09:00.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:09:00.317 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:09:04.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 17:09:09.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:09:09.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:09:09.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:09:09.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9064.4296ms +2017-07-18 17:09:09.385 +05:30 [Information] Request finished in 9075.6493ms 200 application/json; charset=utf-8 +2017-07-18 17:09:09.386 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:09:09.817 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:09:09.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:09:09.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:09:18.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:09:20.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:09:20.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:09:20.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:09:22.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 12352.9091ms +2017-07-18 17:09:22.195 +05:30 [Information] Request finished in 12377.3711ms 200 application/json; charset=utf-8 +2017-07-18 17:09:22.196 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:09:22.243 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:09:22.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:09:22.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:09:25.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 17:09:25.299 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:09:25.300 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:09:25.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:09:25.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.7814ms +2017-07-18 17:09:25.311 +05:30 [Information] Request finished in 3072.6292ms 200 application/json; charset=utf-8 +2017-07-18 17:09:25.312 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:10:12.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:10:12.630 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:10:12.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:10:15.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:10:15.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:15.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:15.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:15.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3296.6267ms +2017-07-18 17:10:15.932 +05:30 [Information] Request finished in 3305.0851ms 200 application/json; charset=utf-8 +2017-07-18 17:10:15.932 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:10:18.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:10:18.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:10:18.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:10:21.861 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:22.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:22.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:22.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:22.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3220.6595ms +2017-07-18 17:10:22.024 +05:30 [Information] Request finished in 3226.8469ms 200 application/json; charset=utf-8 +2017-07-18 17:10:22.025 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:10:22.110 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:10:22.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:10:22.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:10:25.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:25.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:25.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:25.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:25.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3169.0051ms +2017-07-18 17:10:25.292 +05:30 [Information] Request finished in 3180.4945ms 200 application/json; charset=utf-8 +2017-07-18 17:10:25.296 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:10:27.904 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:10:27.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:10:27.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:10:27.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:10:27.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:10:27.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:10:28.666 +05:30 [Debug] Connection id ""0HL6DQ67SR6J4"" started. +2017-07-18 17:10:28.680 +05:30 [Debug] Connection id ""0HL6DQ67SR6J5"" started. +2017-07-18 17:10:28.689 +05:30 [Debug] Connection id ""0HL6DQ67SR6J6"" started. +2017-07-18 17:10:28.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:10:28.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:10:28.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:10:28.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:10:28.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:10:28.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:10:28.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:10:28.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:10:28.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:10:29.301 +05:30 [Debug] Connection id ""0HL6DQ67SR6J7"" started. +2017-07-18 17:10:30.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:10:30.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:10:30.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:10:32.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:32.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:32.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:32.399 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:10:32.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:32.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:32.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:10:32.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:32.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:32.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:32.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4491.9637ms +2017-07-18 17:10:32.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4523.4706ms +2017-07-18 17:10:32.445 +05:30 [Information] Request finished in 4565.4866ms 200 application/json; charset=utf-8 +2017-07-18 17:10:32.448 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:10:32.448 +05:30 [Information] Request finished in 4572.3864ms 200 application/json; charset=utf-8 +2017-07-18 17:10:32.478 +05:30 [Debug] Connection id ""0HL6DQ67SR6J3"" completed keep alive response. +2017-07-18 17:10:32.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:32.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:32.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:32.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:10:32.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:32.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:32.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4061.651ms +2017-07-18 17:10:32.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:10:32.787 +05:30 [Information] Request finished in 4092.6424ms 200 application/json; charset=utf-8 +2017-07-18 17:10:32.793 +05:30 [Debug] Connection id ""0HL6DQ67SR6J6"" completed keep alive response. +2017-07-18 17:10:33.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:10:33.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:33.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:10:33.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:33.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:33.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:33.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:33.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:33.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3321.6796ms +2017-07-18 17:10:33.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4619.9134ms +2017-07-18 17:10:33.375 +05:30 [Information] Request finished in 3328.7682ms 200 application/json; charset=utf-8 +2017-07-18 17:10:33.378 +05:30 [Debug] Connection id ""0HL6DQ67SR6J7"" completed keep alive response. +2017-07-18 17:10:33.388 +05:30 [Information] Request finished in 4696.1887ms 200 application/json; charset=utf-8 +2017-07-18 17:10:33.389 +05:30 [Debug] Connection id ""0HL6DQ67SR6J5"" completed keep alive response. +2017-07-18 17:10:36.020 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:10:36.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:10:36.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:10:36.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:10:36.031 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7303.0388ms +2017-07-18 17:10:36.037 +05:30 [Information] Request finished in 7355.7308ms 200 application/json; charset=utf-8 +2017-07-18 17:10:36.038 +05:30 [Debug] Connection id ""0HL6DQ67SR6J4"" completed keep alive response. +2017-07-18 17:11:18.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:11:18.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:11:18.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:11:21.166 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 17:11:21.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:11:21.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:11:21.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:11:21.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3093.5468ms +2017-07-18 17:11:21.179 +05:30 [Information] Request finished in 3107.5259ms 200 application/json; charset=utf-8 +2017-07-18 17:11:21.180 +05:30 [Debug] Connection id ""0HL6DQ67SR6J2"" completed keep alive response. +2017-07-18 17:12:46.541 +05:30 [Debug] Hosting starting +2017-07-18 17:12:46.816 +05:30 [Debug] Hosting started +2017-07-18 17:12:46.862 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" started. +2017-07-18 17:12:46.880 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" started. +2017-07-18 17:12:47.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:12:47.155 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:12:47.297 +05:30 [Information] Request finished in 209.7796ms 200 +2017-07-18 17:12:47.398 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:12:49.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:12:49.233 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"52b9f35f-2201-4c96-941f-078fd90bb3eb"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:12:49.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:12:49.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:12:49.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:12:49.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:12:49.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:12:49.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:12:50.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 614.5014ms +2017-07-18 17:12:50.805 +05:30 [Information] Request finished in 3674.9685ms 200 application/json; charset=utf-8 +2017-07-18 17:12:50.813 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:12:51.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 17:12:51.037 +05:30 [Debug] Request did not match any routes. +2017-07-18 17:12:51.102 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 17:12:51.119 +05:30 [Information] Request finished in 126.52ms 404 +2017-07-18 17:12:51.205 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:13:01.916 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:13:01.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:13:01.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:13:05.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdcd09dc05a4"]) - ModelState is Valid +2017-07-18 17:13:10.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:10.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:10.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:10.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8661.7443ms +2017-07-18 17:13:10.656 +05:30 [Information] Request finished in 8813.5196ms 200 application/json; charset=utf-8 +2017-07-18 17:13:10.657 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:13:19.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:13:19.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:13:19.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:13:20.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:13:21.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:21.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:21.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:21.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2349.708ms +2017-07-18 17:13:21.910 +05:30 [Information] Request finished in 2355.2603ms 200 application/json; charset=utf-8 +2017-07-18 17:13:21.910 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:13:22.199 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:13:22.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:13:22.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:13:24.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:24.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:24.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:24.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:24.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2283.1895ms +2017-07-18 17:13:24.495 +05:30 [Information] Request finished in 2296.6581ms 200 application/json; charset=utf-8 +2017-07-18 17:13:24.497 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:13:24.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:13:24.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:13:24.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:13:27.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:27.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:27.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:27.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:27.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3230.5022ms +2017-07-18 17:13:27.832 +05:30 [Information] Request finished in 3240.8802ms 200 application/json; charset=utf-8 +2017-07-18 17:13:27.833 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:13:31.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:13:31.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:13:31.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:13:31.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:13:31.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:13:31.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:13:31.683 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H3"" started. +2017-07-18 17:13:31.683 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" started. +2017-07-18 17:13:31.689 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H5"" started. +2017-07-18 17:13:31.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:13:31.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:13:31.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:13:31.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:13:31.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:13:31.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:13:32.688 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" started. +2017-07-18 17:13:33.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:13:33.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:13:33.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:13:34.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:13:34.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:13:34.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:13:36.468 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:36.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:36.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:36.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:13:36.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:36.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:36.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5438.8414ms +2017-07-18 17:13:36.573 +05:30 [Information] Request finished in 5451.8305ms 200 application/json; charset=utf-8 +2017-07-18 17:13:36.574 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:13:36.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:36.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:13:36.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:36.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:36.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5489.0838ms +2017-07-18 17:13:36.621 +05:30 [Information] Request finished in 5500.8692ms 200 application/json; charset=utf-8 +2017-07-18 17:13:36.622 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:13:37.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:37.243 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:37.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:13:37.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:37.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:13:37.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:37.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:37.358 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4174.732ms +2017-07-18 17:13:37.381 +05:30 [Information] Request finished in 4207.2241ms 200 application/json; charset=utf-8 +2017-07-18 17:13:37.384 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H5"" completed keep alive response. +2017-07-18 17:13:37.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:13:37.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:37.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:13:37.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:37.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:37.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6156.8009ms +2017-07-18 17:13:37.862 +05:30 [Information] Request finished in 6174.3393ms 200 application/json; charset=utf-8 +2017-07-18 17:13:37.862 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H3"" completed keep alive response. +2017-07-18 17:13:37.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:37.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:37.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:37.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3490.9517ms +2017-07-18 17:13:37.895 +05:30 [Information] Request finished in 3515.1545ms 200 application/json; charset=utf-8 +2017-07-18 17:13:37.896 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" completed keep alive response. +2017-07-18 17:13:39.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:13:39.798 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:13:39.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:13:39.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:13:39.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8106.5695ms +2017-07-18 17:13:39.822 +05:30 [Information] Request finished in 8133.2149ms 200 application/json; charset=utf-8 +2017-07-18 17:13:39.823 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" completed keep alive response. +2017-07-18 17:14:18.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:14:18.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:14:18.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:14:22.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd1ccb77396"]) - ModelState is Valid +2017-07-18 17:14:22.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:22.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:22.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:22.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3158.6701ms +2017-07-18 17:14:22.091 +05:30 [Information] Request finished in 3190.4985ms 200 application/json; charset=utf-8 +2017-07-18 17:14:22.093 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:14:28.310 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:14:28.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:14:28.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:14:30.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:14:31.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:31.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:31.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:31.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3135.1997ms +2017-07-18 17:14:31.456 +05:30 [Information] Request finished in 3147.6379ms 200 application/json; charset=utf-8 +2017-07-18 17:14:31.457 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:14:33.380 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:14:33.381 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:14:33.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:14:36.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:36.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:36.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:36.531 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:36.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3137.2354ms +2017-07-18 17:14:36.537 +05:30 [Information] Request finished in 3158.2027ms 200 application/json; charset=utf-8 +2017-07-18 17:14:36.538 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H5"" completed keep alive response. +2017-07-18 17:14:36.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:14:36.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:14:36.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:14:39.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:39.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:39.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:39.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:39.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.2609ms +2017-07-18 17:14:39.676 +05:30 [Information] Request finished in 3124.9329ms 200 application/json; charset=utf-8 +2017-07-18 17:14:39.676 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H3"" completed keep alive response. +2017-07-18 17:14:41.818 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" received FIN. +2017-07-18 17:14:41.822 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" disconnecting. +2017-07-18 17:14:41.823 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" sending FIN. +2017-07-18 17:14:41.820 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" received FIN. +2017-07-18 17:14:41.833 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" sent FIN with status "0". +2017-07-18 17:14:41.842 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" disconnecting. +2017-07-18 17:14:41.844 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" sending FIN. +2017-07-18 17:14:41.845 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" sent FIN with status "0". +2017-07-18 17:14:41.845 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H4"" stopped. +2017-07-18 17:14:41.843 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H6"" stopped. +2017-07-18 17:14:41.854 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:14:41.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:14:41.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:14:41.895 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:14:41.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:14:41.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:14:42.831 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H7"" started. +2017-07-18 17:14:42.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:14:42.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:14:42.851 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:14:42.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:14:42.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:14:42.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:14:42.899 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:14:42.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:14:42.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:14:43.390 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H8"" started. +2017-07-18 17:14:43.394 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:14:43.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:14:43.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:14:44.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:44.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:44.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:44.414 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:14:44.415 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:44.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:44.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2554.1316ms +2017-07-18 17:14:44.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:44.488 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:14:44.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:44.490 +05:30 [Information] Request finished in 2641.468ms 200 application/json; charset=utf-8 +2017-07-18 17:14:44.491 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:14:44.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:44.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2637.7116ms +2017-07-18 17:14:44.501 +05:30 [Information] Request finished in 2653.7006ms 200 application/json; charset=utf-8 +2017-07-18 17:14:44.501 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:14:46.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:46.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:46.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:14:46.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:14:46.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:46.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:14:46.807 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:46.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:46.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3963.3165ms +2017-07-18 17:14:46.910 +05:30 [Information] Request finished in 4069.8069ms 200 application/json; charset=utf-8 +2017-07-18 17:14:46.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:46.946 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H3"" completed keep alive response. +2017-07-18 17:14:46.952 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:14:46.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:46.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:46.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4054.0397ms +2017-07-18 17:14:46.972 +05:30 [Information] Request finished in 4084.2567ms 200 application/json; charset=utf-8 +2017-07-18 17:14:46.973 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H7"" completed keep alive response. +2017-07-18 17:14:47.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:47.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:14:47.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:47.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:47.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4951.0057ms +2017-07-18 17:14:47.856 +05:30 [Information] Request finished in 5055.0955ms 200 application/json; charset=utf-8 +2017-07-18 17:14:47.857 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H5"" completed keep alive response. +2017-07-18 17:14:47.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:14:47.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:14:47.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:14:47.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4538.5879ms +2017-07-18 17:14:47.941 +05:30 [Information] Request finished in 4547.8178ms 200 application/json; charset=utf-8 +2017-07-18 17:14:47.942 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H8"" completed keep alive response. +2017-07-18 17:15:02.784 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:15:02.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:15:02.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:15:04.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:15:04.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:15:04.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:15:05.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:15:05.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2325.0556ms +2017-07-18 17:15:05.136 +05:30 [Information] Request finished in 2348.5793ms 200 application/json; charset=utf-8 +2017-07-18 17:15:05.137 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H1"" completed keep alive response. +2017-07-18 17:15:25.751 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:15:25.752 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:15:25.753 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:15:30.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:15:30.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:15:30.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:15:30.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:15:30.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5028.9589ms +2017-07-18 17:15:30.879 +05:30 [Information] Request finished in 5127.8939ms 200 application/json; charset=utf-8 +2017-07-18 17:15:30.879 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H2"" completed keep alive response. +2017-07-18 17:15:42.910 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:15:42.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:15:42.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:15:46.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:15:46.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:15:46.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:15:46.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:15:46.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3168.9915ms +2017-07-18 17:15:46.087 +05:30 [Information] Request finished in 3181.2719ms 200 application/json; charset=utf-8 +2017-07-18 17:15:46.088 +05:30 [Debug] Connection id ""0HL6DQ8E5G4H3"" completed keep alive response. +2017-07-18 17:17:08.029 +05:30 [Debug] Hosting starting +2017-07-18 17:17:08.648 +05:30 [Debug] Hosting started +2017-07-18 17:17:08.724 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" started. +2017-07-18 17:17:08.724 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" started. +2017-07-18 17:17:08.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:17:08.915 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:17:09.005 +05:30 [Information] Request finished in 118.035ms 200 +2017-07-18 17:17:09.079 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:17:10.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:17:10.380 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"53b22f4e-4f9e-4bed-b072-c35027d9d6c9"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:17:10.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:17:10.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:17:10.733 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:17:10.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:17:10.797 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:17:10.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:17:11.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 790.1061ms +2017-07-18 17:17:11.655 +05:30 [Information] Request finished in 2786.9801ms 200 application/json; charset=utf-8 +2017-07-18 17:17:11.658 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:17:23.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:17:23.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:17:23.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:17:26.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:17:31.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:17:31.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:17:31.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:17:32.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8900.6425ms +2017-07-18 17:17:32.241 +05:30 [Information] Request finished in 8978.2494ms 200 application/json; charset=utf-8 +2017-07-18 17:17:32.242 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:17:55.254 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:17:55.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:17:55.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:17:56.600 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:17:56.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:17:56.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:17:58.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:17:58.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:17:58.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:17:58.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:17:58.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3242.2449ms +2017-07-18 17:17:58.515 +05:30 [Information] Request finished in 3260.7848ms 200 application/json; charset=utf-8 +2017-07-18 17:17:58.515 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:17:59.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:17:59.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:17:59.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:17:59.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:17:59.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3244.8617ms +2017-07-18 17:17:59.856 +05:30 [Information] Request finished in 3254.471ms 200 application/json; charset=utf-8 +2017-07-18 17:17:59.857 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:00.037 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:18:00.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:18:00.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:18:03.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:03.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:03.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:03.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:03.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.7804ms +2017-07-18 17:18:03.124 +05:30 [Information] Request finished in 3086.6709ms 200 application/json; charset=utf-8 +2017-07-18 17:18:03.125 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:03.135 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:18:03.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:18:03.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:18:06.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:18:06.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:06.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:06.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:06.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3056.6753ms +2017-07-18 17:18:06.206 +05:30 [Information] Request finished in 3077.3622ms 200 application/json; charset=utf-8 +2017-07-18 17:18:06.211 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:06.254 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:18:06.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:18:06.258 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:18:09.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:09.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:09.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:09.343 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:09.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3085.7601ms +2017-07-18 17:18:09.363 +05:30 [Information] Request finished in 3109.9874ms 200 application/json; charset=utf-8 +2017-07-18 17:18:09.367 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:09.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:18:09.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:18:09.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:18:11.125 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:18:11.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:18:11.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:18:11.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:11.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:11.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:11.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:11.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2445.8154ms +2017-07-18 17:18:11.885 +05:30 [Information] Request finished in 2487.4768ms 200 application/json; charset=utf-8 +2017-07-18 17:18:11.892 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:12.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:18:12.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:18:12.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:18:14.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:14.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:14.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:14.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:14.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:14.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3217.3905ms +2017-07-18 17:18:14.386 +05:30 [Information] Request finished in 3263.0175ms 200 application/json; charset=utf-8 +2017-07-18 17:18:14.388 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:14.426 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:18:14.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:18:14.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:14.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:18:14.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:14.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:14.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2391.9845ms +2017-07-18 17:18:14.471 +05:30 [Information] Request finished in 2416.1906ms 200 application/json; charset=utf-8 +2017-07-18 17:18:14.471 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:16.885 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" started. +2017-07-18 17:18:16.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:18:16.890 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:18:16.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:18:16.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:18:16.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:18:16.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:18:17.703 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" started. +2017-07-18 17:18:17.704 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" started. +2017-07-18 17:18:17.708 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" started. +2017-07-18 17:18:17.802 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:18:17.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:18:17.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:18:17.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:18:17.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:17.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:17.900 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:17.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3452.444ms +2017-07-18 17:18:17.954 +05:30 [Information] Request finished in 3529.8599ms 200 application/json; charset=utf-8 +2017-07-18 17:18:17.954 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:17.998 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:18:17.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:18:18.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:18:19.679 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:18:19.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:18:19.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:18:20.683 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:18:20.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:18:20.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:18:22.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:22.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:22.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:22.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:22.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:22.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:22.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:22.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6034.4669ms +2017-07-18 17:18:22.959 +05:30 [Information] Request finished in 6065.3821ms 200 application/json; charset=utf-8 +2017-07-18 17:18:23.023 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:23.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:23.057 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:23.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:23.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:23.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6187.1451ms +2017-07-18 17:18:23.157 +05:30 [Information] Request finished in 6251.1192ms 200 application/json; charset=utf-8 +2017-07-18 17:18:23.158 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" completed keep alive response. +2017-07-18 17:18:23.309 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:23.310 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:23.310 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:23.311 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:23.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5579.0786ms +2017-07-18 17:18:23.438 +05:30 [Information] Request finished in 5705.0607ms 200 application/json; charset=utf-8 +2017-07-18 17:18:23.439 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" completed keep alive response. +2017-07-18 17:18:23.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:23.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:23.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:23.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:23.792 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:23.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3100.7923ms +2017-07-18 17:18:23.797 +05:30 [Information] Request finished in 3118.2903ms 200 application/json; charset=utf-8 +2017-07-18 17:18:23.798 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:23.805 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:18:23.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:18:23.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:18:23.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:23.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:23.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:23.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:23.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:23.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4274.3609ms +2017-07-18 17:18:23.971 +05:30 [Information] Request finished in 4291.8139ms 200 application/json; charset=utf-8 +2017-07-18 17:18:23.971 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" completed keep alive response. +2017-07-18 17:18:26.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:18:26.864 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:26.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:26.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:26.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.9268ms +2017-07-18 17:18:26.870 +05:30 [Information] Request finished in 3065.652ms 200 application/json; charset=utf-8 +2017-07-18 17:18:26.871 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:26.885 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:18:26.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:18:26.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:18:27.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:27.718 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:27.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:27.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:27.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9727.2132ms +2017-07-18 17:18:27.779 +05:30 [Information] Request finished in 9818.7065ms 200 application/json; charset=utf-8 +2017-07-18 17:18:27.780 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" completed keep alive response. +2017-07-18 17:18:30.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:18:30.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:30.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:30.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:30.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3381.8942ms +2017-07-18 17:18:30.276 +05:30 [Information] Request finished in 3391.4637ms 200 application/json; charset=utf-8 +2017-07-18 17:18:30.277 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" completed keep alive response. +2017-07-18 17:18:35.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:18:35.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:18:35.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:18:38.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:38.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:38.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:38.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:38.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3075.6873ms +2017-07-18 17:18:38.381 +05:30 [Information] Request finished in 3087.5413ms 200 application/json; charset=utf-8 +2017-07-18 17:18:38.382 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" completed keep alive response. +2017-07-18 17:18:38.389 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:18:38.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:18:38.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:18:41.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:18:41.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:41.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:41.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:41.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3048.4556ms +2017-07-18 17:18:41.451 +05:30 [Information] Request finished in 3065.0895ms 200 application/json; charset=utf-8 +2017-07-18 17:18:41.452 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:41.470 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:18:41.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:18:41.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:18:44.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:44.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:44.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:44.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:44.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3091.0976ms +2017-07-18 17:18:44.573 +05:30 [Information] Request finished in 3101.8729ms 200 application/json; charset=utf-8 +2017-07-18 17:18:44.574 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" completed keep alive response. +2017-07-18 17:18:44.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:18:44.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:18:44.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:18:47.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:47.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:47.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:47.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:47.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3098.9655ms +2017-07-18 17:18:47.693 +05:30 [Information] Request finished in 3108.0937ms 200 application/json; charset=utf-8 +2017-07-18 17:18:47.693 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:47.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:18:47.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:18:47.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:18:50.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:50.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:50.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:50.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:50.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.1497ms +2017-07-18 17:18:50.806 +05:30 [Information] Request finished in 3106.9164ms 200 application/json; charset=utf-8 +2017-07-18 17:18:50.808 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" completed keep alive response. +2017-07-18 17:18:52.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:18:52.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:18:52.666 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:18:52.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:18:52.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:18:52.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:18:53.432 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:18:53.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:18:53.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:18:53.436 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:18:53.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:18:53.445 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:18:53.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:18:53.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:18:53.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:18:54.167 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:18:54.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:18:54.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:18:55.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:55.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:55.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:55.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:55.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:55.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:55.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:55.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:55.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:55.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3210.3881ms +2017-07-18 17:18:55.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:55.930 +05:30 [Information] Request finished in 3261.5274ms 200 application/json; charset=utf-8 +2017-07-18 17:18:55.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3257.9098ms +2017-07-18 17:18:55.932 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" completed keep alive response. +2017-07-18 17:18:55.948 +05:30 [Information] Request finished in 3280.8105ms 200 application/json; charset=utf-8 +2017-07-18 17:18:55.948 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" completed keep alive response. +2017-07-18 17:18:56.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:18:56.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:56.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:56.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:56.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2252.1343ms +2017-07-18 17:18:56.433 +05:30 [Information] Request finished in 2267.5392ms 200 application/json; charset=utf-8 +2017-07-18 17:18:56.434 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" completed keep alive response. +2017-07-18 17:18:56.436 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:18:56.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:18:56.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:18:56.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:56.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:56.536 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:56.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:56.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:56.539 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3103.7233ms +2017-07-18 17:18:56.542 +05:30 [Information] Request finished in 3113.8126ms 200 application/json; charset=utf-8 +2017-07-18 17:18:56.542 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" completed keep alive response. +2017-07-18 17:18:56.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:56.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:18:56.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:56.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:56.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:56.894 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:56.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3446.6768ms +2017-07-18 17:18:56.900 +05:30 [Information] Request finished in 3472.1128ms 200 application/json; charset=utf-8 +2017-07-18 17:18:56.901 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" completed keep alive response. +2017-07-18 17:18:57.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:57.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:18:57.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:57.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:57.454 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4003.7129ms +2017-07-18 17:18:57.459 +05:30 [Information] Request finished in 4027.3615ms 200 application/json; charset=utf-8 +2017-07-18 17:18:57.461 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" completed keep alive response. +2017-07-18 17:18:59.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:18:59.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:18:59.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:18:59.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:18:59.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.118ms +2017-07-18 17:18:59.504 +05:30 [Information] Request finished in 3066.0519ms 200 application/json; charset=utf-8 +2017-07-18 17:18:59.505 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" completed keep alive response. +2017-07-18 17:18:59.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:18:59.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:18:59.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:19:04.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:19:05.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:19:05.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:19:05.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:19:05.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5840.1992ms +2017-07-18 17:19:05.369 +05:30 [Information] Request finished in 5855.9776ms 200 application/json; charset=utf-8 +2017-07-18 17:19:05.371 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" completed keep alive response. +2017-07-18 17:19:09.142 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:19:09.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:19:09.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:19:12.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:19:12.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:19:12.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:19:12.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:19:12.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3269.9385ms +2017-07-18 17:19:12.428 +05:30 [Information] Request finished in 3287.4567ms 200 application/json; charset=utf-8 +2017-07-18 17:19:12.428 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" completed keep alive response. +2017-07-18 17:20:33.206 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" received FIN. +2017-07-18 17:20:33.206 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" received FIN. +2017-07-18 17:20:33.207 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" received FIN. +2017-07-18 17:20:33.207 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" received FIN. +2017-07-18 17:20:33.207 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" received FIN. +2017-07-18 17:20:33.209 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" disconnecting. +2017-07-18 17:20:33.209 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" received FIN. +2017-07-18 17:20:33.211 +05:30 [Debug] Connection id ""0HL6DQAS6QC5O"" started. +2017-07-18 17:20:33.208 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" disconnecting. +2017-07-18 17:20:33.212 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" disconnecting. +2017-07-18 17:20:33.211 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" disconnecting. +2017-07-18 17:20:33.213 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" sending FIN. +2017-07-18 17:20:33.208 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" disconnecting. +2017-07-18 17:20:33.211 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" sending FIN. +2017-07-18 17:20:33.208 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" disconnecting. +2017-07-18 17:20:33.216 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" sending FIN. +2017-07-18 17:20:33.216 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" sending FIN. +2017-07-18 17:20:33.217 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" sending FIN. +2017-07-18 17:20:33.217 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" sending FIN. +2017-07-18 17:20:33.222 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" sent FIN with status "0". +2017-07-18 17:20:33.222 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" sent FIN with status "0". +2017-07-18 17:20:33.224 +05:30 [Debug] Connection id ""0HL6DQAS6QC5J"" stopped. +2017-07-18 17:20:33.224 +05:30 [Debug] Connection id ""0HL6DQAS6QC5L"" stopped. +2017-07-18 17:20:33.225 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" sent FIN with status "0". +2017-07-18 17:20:33.227 +05:30 [Debug] Connection id ""0HL6DQAS6QC5K"" stopped. +2017-07-18 17:20:33.226 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" sent FIN with status "0". +2017-07-18 17:20:33.228 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" sent FIN with status "0". +2017-07-18 17:20:33.228 +05:30 [Debug] Connection id ""0HL6DQAS6QC5N"" stopped. +2017-07-18 17:20:33.229 +05:30 [Debug] Connection id ""0HL6DQAS6QC5M"" stopped. +2017-07-18 17:20:33.230 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" sent FIN with status "0". +2017-07-18 17:20:33.231 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:20:33.231 +05:30 [Debug] Connection id ""0HL6DQAS6QC5I"" stopped. +2017-07-18 17:20:33.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:20:33.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:20:34.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:20:34.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:34.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:34.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:34.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 1283.9894ms +2017-07-18 17:20:34.523 +05:30 [Information] Request finished in 1291.3286ms 200 application/json; charset=utf-8 +2017-07-18 17:20:34.524 +05:30 [Debug] Connection id ""0HL6DQAS6QC5O"" completed keep alive response. +2017-07-18 17:20:34.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:20:34.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:20:34.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:20:37.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:37.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:37.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:37.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:37.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3103.5044ms +2017-07-18 17:20:37.713 +05:30 [Information] Request finished in 3116.4658ms 200 application/json; charset=utf-8 +2017-07-18 17:20:37.714 +05:30 [Debug] Connection id ""0HL6DQAS6QC5O"" completed keep alive response. +2017-07-18 17:20:37.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:20:37.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:20:37.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:20:40.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:40.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:40.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:40.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:40.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.4129ms +2017-07-18 17:20:40.837 +05:30 [Information] Request finished in 3112.5896ms 200 application/json; charset=utf-8 +2017-07-18 17:20:40.838 +05:30 [Debug] Connection id ""0HL6DQAS6QC5O"" completed keep alive response. +2017-07-18 17:20:43.353 +05:30 [Debug] Connection id ""0HL6DQAS6QC5P"" started. +2017-07-18 17:20:43.372 +05:30 [Debug] Connection id ""0HL6DQAS6QC5Q"" started. +2017-07-18 17:20:43.372 +05:30 [Debug] Connection id ""0HL6DQAS6QC5R"" started. +2017-07-18 17:20:43.377 +05:30 [Debug] Connection id ""0HL6DQAS6QC5S"" started. +2017-07-18 17:20:43.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:20:43.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:20:43.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:20:43.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:20:43.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:20:43.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:20:43.445 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:20:43.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:20:43.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:20:43.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:20:43.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:20:43.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:20:43.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:20:43.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:20:43.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:20:44.020 +05:30 [Debug] Connection id ""0HL6DQAS6QC5T"" started. +2017-07-18 17:20:44.029 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:20:44.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:20:44.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:20:46.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:46.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:46.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:20:46.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:46.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:46.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3119.1425ms +2017-07-18 17:20:46.518 +05:30 [Information] Request finished in 3161.4948ms 200 application/json; charset=utf-8 +2017-07-18 17:20:46.519 +05:30 [Debug] Connection id ""0HL6DQAS6QC5O"" completed keep alive response. +2017-07-18 17:20:46.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:46.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:46.695 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:20:46.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:46.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:46.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:46.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3305.9734ms +2017-07-18 17:20:46.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:46.849 +05:30 [Information] Request finished in 3448.6857ms 200 application/json; charset=utf-8 +2017-07-18 17:20:46.850 +05:30 [Debug] Connection id ""0HL6DQAS6QC5P"" completed keep alive response. +2017-07-18 17:20:46.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:20:46.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:46.988 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:20:46.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:47.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:47.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3539.7413ms +2017-07-18 17:20:47.030 +05:30 [Information] Request finished in 3637.1141ms 200 application/json; charset=utf-8 +2017-07-18 17:20:47.031 +05:30 [Debug] Connection id ""0HL6DQAS6QC5R"" completed keep alive response. +2017-07-18 17:20:47.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:47.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:20:47.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:47.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:47.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3563.5306ms +2017-07-18 17:20:47.077 +05:30 [Information] Request finished in 3612.6533ms 200 application/json; charset=utf-8 +2017-07-18 17:20:47.078 +05:30 [Debug] Connection id ""0HL6DQAS6QC5Q"" completed keep alive response. +2017-07-18 17:20:47.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:20:47.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:47.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:47.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:47.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3171.9526ms +2017-07-18 17:20:47.214 +05:30 [Information] Request finished in 3190.2045ms 200 application/json; charset=utf-8 +2017-07-18 17:20:47.214 +05:30 [Debug] Connection id ""0HL6DQAS6QC5T"" completed keep alive response. +2017-07-18 17:20:49.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:20:49.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:20:49.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:20:49.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:20:49.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5847.3208ms +2017-07-18 17:20:49.271 +05:30 [Information] Request finished in 5877.1177ms 200 application/json; charset=utf-8 +2017-07-18 17:20:49.272 +05:30 [Debug] Connection id ""0HL6DQAS6QC5S"" completed keep alive response. +2017-07-18 17:21:12.697 +05:30 [Debug] Hosting starting +2017-07-18 17:21:12.983 +05:30 [Debug] Hosting started +2017-07-18 17:21:13.155 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" started. +2017-07-18 17:21:13.155 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" started. +2017-07-18 17:21:13.383 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:21:13.451 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:21:13.568 +05:30 [Information] Request finished in 195.7078ms 200 +2017-07-18 17:21:13.705 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:15.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:21:15.071 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3d8971e9-abc1-47bc-a17b-f2bcf39db9fc"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:21:15.187 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:21:15.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:21:15.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:21:15.364 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:21:15.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:15.373 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:22.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 6596.5746ms +2017-07-18 17:21:23.383 +05:30 [Information] Request finished in 10060.7574ms 200 application/json; charset=utf-8 +2017-07-18 17:21:23.386 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:23.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 17:21:23.438 +05:30 [Debug] Request did not match any routes. +2017-07-18 17:21:23.463 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 17:21:23.489 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:21:23.494 +05:30 [Information] Request finished in 56.6902ms 404 +2017-07-18 17:21:23.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:21:23.495 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:23.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:21:27.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:32.584 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:32.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:32.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:32.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9425.2311ms +2017-07-18 17:21:32.983 +05:30 [Information] Request finished in 9516.2079ms 200 application/json; charset=utf-8 +2017-07-18 17:21:32.988 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:38.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:21:38.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:21:38.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:21:40.260 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:21:40.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:21:40.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:21:41.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:21:41.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:41.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:41.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:41.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3597.8463ms +2017-07-18 17:21:41.774 +05:30 [Information] Request finished in 3614.2902ms 200 application/json; charset=utf-8 +2017-07-18 17:21:41.775 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:43.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:43.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:43.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:43.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:43.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3149.5826ms +2017-07-18 17:21:43.419 +05:30 [Information] Request finished in 3161.2214ms 200 application/json; charset=utf-8 +2017-07-18 17:21:43.419 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:43.603 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:21:43.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:21:43.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:21:43.868 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:21:43.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:21:43.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:21:46.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:46.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:46.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:46.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:46.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3045.4743ms +2017-07-18 17:21:46.657 +05:30 [Information] Request finished in 3059.6238ms 200 application/json; charset=utf-8 +2017-07-18 17:21:46.658 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:46.662 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:21:46.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:21:46.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:21:49.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:21:49.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:49.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:49.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:49.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.76ms +2017-07-18 17:21:49.719 +05:30 [Information] Request finished in 3057.2454ms 200 application/json; charset=utf-8 +2017-07-18 17:21:49.720 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:49.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:21:49.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:21:49.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:21:51.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:51.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:51.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:51.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:51.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7285.6428ms +2017-07-18 17:21:51.184 +05:30 [Information] Request finished in 7313.883ms 200 application/json; charset=utf-8 +2017-07-18 17:21:51.184 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:51.188 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:21:51.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:21:51.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:21:52.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:52.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:52.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:52.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:52.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3071.3765ms +2017-07-18 17:21:52.839 +05:30 [Information] Request finished in 3078.4501ms 200 application/json; charset=utf-8 +2017-07-18 17:21:52.840 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:52.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:21:52.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:21:52.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:21:54.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:21:54.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:54.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:54.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:54.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3126.8094ms +2017-07-18 17:21:54.324 +05:30 [Information] Request finished in 3135.0447ms 200 application/json; charset=utf-8 +2017-07-18 17:21:54.325 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:54.457 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:21:54.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:21:54.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:21:55.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:21:56.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:56.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:56.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:56.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3266.6669ms +2017-07-18 17:21:56.134 +05:30 [Information] Request finished in 3279.9037ms 200 application/json; charset=utf-8 +2017-07-18 17:21:56.135 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:21:56.213 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:21:56.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:21:56.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:21:57.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:21:57.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:57.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:57.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:57.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3195.2722ms +2017-07-18 17:21:57.663 +05:30 [Information] Request finished in 3205.9925ms 200 application/json; charset=utf-8 +2017-07-18 17:21:57.664 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:21:57.667 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:21:57.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:21:57.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:21:59.248 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:21:59.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:21:59.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:21:59.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:21:59.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.8155ms +2017-07-18 17:21:59.356 +05:30 [Information] Request finished in 3142.4113ms 200 application/json; charset=utf-8 +2017-07-18 17:21:59.356 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:22:00.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:22:00.787 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:00.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:00.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:00.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3116.6025ms +2017-07-18 17:22:00.794 +05:30 [Information] Request finished in 3126.6077ms 200 application/json; charset=utf-8 +2017-07-18 17:22:00.795 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:22:00.812 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:22:00.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:22:00.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:22:02.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:22:02.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:02.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:02.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:02.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2135.9939ms +2017-07-18 17:22:02.960 +05:30 [Information] Request finished in 2147.7896ms 200 application/json; charset=utf-8 +2017-07-18 17:22:02.960 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:22:02.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:22:02.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:22:02.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:22:06.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:06.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:06.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:06.224 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:06.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3266.5795ms +2017-07-18 17:22:06.258 +05:30 [Information] Request finished in 3293.1968ms 200 application/json; charset=utf-8 +2017-07-18 17:22:06.260 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:22:06.291 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:22:06.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:22:06.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:22:09.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:09.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:09.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:09.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:09.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3139.4466ms +2017-07-18 17:22:09.459 +05:30 [Information] Request finished in 3193.5347ms 200 application/json; charset=utf-8 +2017-07-18 17:22:09.460 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:22:12.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:22:12.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:22:12.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:22:12.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:22:12.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:22:12.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:22:13.139 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" started. +2017-07-18 17:22:13.139 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" started. +2017-07-18 17:22:13.141 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" started. +2017-07-18 17:22:13.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:22:13.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:22:13.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:22:13.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:22:13.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:22:13.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:22:13.166 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:22:13.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:22:13.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:22:14.672 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" started. +2017-07-18 17:22:14.676 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:22:14.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:22:14.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:22:15.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:15.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:16.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:16.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:16.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:16.174 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:22:16.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:16.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:16.233 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3045.763ms +2017-07-18 17:22:16.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:16.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:22:16.275 +05:30 [Information] Request finished in 3130.91ms 200 application/json; charset=utf-8 +2017-07-18 17:22:16.275 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" completed keep alive response. +2017-07-18 17:22:16.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:16.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:16.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:16.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3822.8538ms +2017-07-18 17:22:16.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:22:16.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:16.319 +05:30 [Information] Request finished in 3838.7454ms 200 application/json; charset=utf-8 +2017-07-18 17:22:16.342 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:22:16.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:16.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:22:16.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3893.2871ms +2017-07-18 17:22:16.419 +05:30 [Information] Request finished in 3932.4622ms 200 application/json; charset=utf-8 +2017-07-18 17:22:16.419 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:22:16.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:16.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:22:16.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:16.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:16.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3790.6123ms +2017-07-18 17:22:16.967 +05:30 [Information] Request finished in 3806.4179ms 200 application/json; charset=utf-8 +2017-07-18 17:22:16.967 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" completed keep alive response. +2017-07-18 17:22:17.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:22:17.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:17.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:17.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:17.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2490.6408ms +2017-07-18 17:22:17.174 +05:30 [Information] Request finished in 2498.9192ms 200 application/json; charset=utf-8 +2017-07-18 17:22:17.175 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" completed keep alive response. +2017-07-18 17:22:17.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:22:17.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:22:17.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:22:19.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:19.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:22:19.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:19.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:19.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6009.064ms +2017-07-18 17:22:19.179 +05:30 [Information] Request finished in 6034.8556ms 200 application/json; charset=utf-8 +2017-07-18 17:22:19.180 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" completed keep alive response. +2017-07-18 17:22:20.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:22:20.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:20.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:20.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:20.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.2336ms +2017-07-18 17:22:20.242 +05:30 [Information] Request finished in 3063.7705ms 200 application/json; charset=utf-8 +2017-07-18 17:22:20.243 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" completed keep alive response. +2017-07-18 17:22:20.288 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:22:20.289 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:22:20.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:22:23.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:22:23.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:23.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:23.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:23.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3150.4898ms +2017-07-18 17:22:23.447 +05:30 [Information] Request finished in 3160.2546ms 200 application/json; charset=utf-8 +2017-07-18 17:22:23.448 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:22:44.809 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:22:44.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:22:44.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:22:47.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:22:47.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:22:47.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:22:47.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:22:47.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3153.8994ms +2017-07-18 17:22:47.969 +05:30 [Information] Request finished in 3170.5615ms 200 application/json; charset=utf-8 +2017-07-18 17:22:47.970 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:23:21.240 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" received FIN. +2017-07-18 17:23:21.240 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" received FIN. +2017-07-18 17:23:21.241 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" received FIN. +2017-07-18 17:23:21.241 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" disconnecting. +2017-07-18 17:23:21.249 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" sending FIN. +2017-07-18 17:23:21.247 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" disconnecting. +2017-07-18 17:23:21.253 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" disconnecting. +2017-07-18 17:23:21.245 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" received FIN. +2017-07-18 17:23:21.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:23:21.257 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" disconnecting. +2017-07-18 17:23:21.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:23:21.258 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" sent FIN with status "0". +2017-07-18 17:23:21.257 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" sending FIN. +2017-07-18 17:23:21.263 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" sending FIN. +2017-07-18 17:23:21.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:23:21.263 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" sent FIN with status "0". +2017-07-18 17:23:21.266 +05:30 [Debug] Connection id ""0HL6DQD51RID1"" stopped. +2017-07-18 17:23:21.265 +05:30 [Debug] Connection id ""0HL6DQD51RID2"" stopped. +2017-07-18 17:23:21.268 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" sending FIN. +2017-07-18 17:23:21.268 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" sent FIN with status "0". +2017-07-18 17:23:21.268 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" sent FIN with status "0". +2017-07-18 17:23:21.269 +05:30 [Debug] Connection id ""0HL6DQD51RID4"" stopped. +2017-07-18 17:23:21.269 +05:30 [Debug] Connection id ""0HL6DQD51RID3"" stopped. +2017-07-18 17:23:24.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:23:24.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:24.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:24.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:24.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3194.9652ms +2017-07-18 17:23:24.463 +05:30 [Information] Request finished in 3211.044ms 200 application/json; charset=utf-8 +2017-07-18 17:23:24.463 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:23:24.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:23:24.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:23:24.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:23:27.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:27.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:27.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:27.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:27.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3141.5727ms +2017-07-18 17:23:27.698 +05:30 [Information] Request finished in 3152.1256ms 200 application/json; charset=utf-8 +2017-07-18 17:23:27.699 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:23:27.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:23:27.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:23:27.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:23:30.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:30.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:30.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:30.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:30.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3174.3658ms +2017-07-18 17:23:30.894 +05:30 [Information] Request finished in 3187.8069ms 200 application/json; charset=utf-8 +2017-07-18 17:23:30.895 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:23:32.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:23:32.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:23:32.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:23:32.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:23:32.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:23:32.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:23:33.503 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" started. +2017-07-18 17:23:33.509 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" started. +2017-07-18 17:23:33.510 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" started. +2017-07-18 17:23:33.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:23:33.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:23:33.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:23:33.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:23:33.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:23:33.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:23:33.750 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:23:33.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:23:33.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:23:34.310 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" started. +2017-07-18 17:23:34.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:23:34.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:23:34.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:23:36.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:36.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:36.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:36.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:23:36.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:36.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:36.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3303.5745ms +2017-07-18 17:23:36.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:36.161 +05:30 [Information] Request finished in 3319.6528ms 200 application/json; charset=utf-8 +2017-07-18 17:23:36.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:23:36.169 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:23:36.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:36.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:36.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3339.8391ms +2017-07-18 17:23:36.202 +05:30 [Information] Request finished in 3365.3262ms 200 application/json; charset=utf-8 +2017-07-18 17:23:36.203 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" completed keep alive response. +2017-07-18 17:23:36.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:36.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:36.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:23:37.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:37.043 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:23:37.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:37.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:37.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:37.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:23:37.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3516.447ms +2017-07-18 17:23:37.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:37.089 +05:30 [Information] Request finished in 3563.72ms 200 application/json; charset=utf-8 +2017-07-18 17:23:37.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:37.090 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" completed keep alive response. +2017-07-18 17:23:37.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3339.5872ms +2017-07-18 17:23:37.139 +05:30 [Information] Request finished in 3578.8068ms 200 application/json; charset=utf-8 +2017-07-18 17:23:37.158 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" completed keep alive response. +2017-07-18 17:23:37.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:23:37.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:37.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:37.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:37.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3254.9407ms +2017-07-18 17:23:37.579 +05:30 [Information] Request finished in 3266.6136ms 200 application/json; charset=utf-8 +2017-07-18 17:23:37.579 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" completed keep alive response. +2017-07-18 17:23:37.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:23:37.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:23:37.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:23:37.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:23:37.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4150.0716ms +2017-07-18 17:23:37.745 +05:30 [Information] Request finished in 4186.9769ms 200 application/json; charset=utf-8 +2017-07-18 17:23:37.746 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" completed keep alive response. +2017-07-18 17:24:04.002 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:24:04.004 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:24:04.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:24:06.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:24:06.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:24:06.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:24:06.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:24:06.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2189.8741ms +2017-07-18 17:24:06.210 +05:30 [Information] Request finished in 2208.2626ms 200 application/json; charset=utf-8 +2017-07-18 17:24:06.211 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:24:38.149 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" received FIN. +2017-07-18 17:24:38.149 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" received FIN. +2017-07-18 17:24:38.151 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" received FIN. +2017-07-18 17:24:38.151 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" disconnecting. +2017-07-18 17:24:38.152 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" disconnecting. +2017-07-18 17:24:38.156 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" disconnecting. +2017-07-18 17:24:38.152 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" received FIN. +2017-07-18 17:24:38.158 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" disconnecting. +2017-07-18 17:24:38.155 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" received FIN. +2017-07-18 17:24:38.158 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" sending FIN. +2017-07-18 17:24:38.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:24:38.168 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" sending FIN. +2017-07-18 17:24:38.169 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" disconnecting. +2017-07-18 17:24:38.176 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" sending FIN. +2017-07-18 17:24:38.185 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" sending FIN. +2017-07-18 17:24:38.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:24:38.186 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" sent FIN with status "0". +2017-07-18 17:24:38.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:24:38.188 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" sending FIN. +2017-07-18 17:24:38.195 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" sent FIN with status "0". +2017-07-18 17:24:39.338 +05:30 [Debug] Connection id ""0HL6DQD51RID8"" stopped. +2017-07-18 17:24:39.345 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" sent FIN with status "0". +2017-07-18 17:24:39.346 +05:30 [Debug] Connection id ""0HL6DQD51RID6"" stopped. +2017-07-18 17:24:39.349 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" sent FIN with status "0". +2017-07-18 17:24:39.350 +05:30 [Debug] Connection id ""0HL6DQD51RICV"" stopped. +2017-07-18 17:24:38.189 +05:30 [Debug] Connection id ""0HL6DQD51RID7"" stopped. +2017-07-18 17:24:39.354 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" sent FIN with status "0". +2017-07-18 17:24:39.355 +05:30 [Debug] Connection id ""0HL6DQD51RID5"" stopped. +2017-07-18 17:24:41.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:24:41.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:24:41.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:24:41.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:24:42.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3788.1925ms +2017-07-18 17:24:42.830 +05:30 [Information] Request finished in 4670.2355ms 200 application/json; charset=utf-8 +2017-07-18 17:24:42.831 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:24:42.954 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:24:42.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:24:42.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:24:44.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:24:44.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:24:44.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:24:44.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:24:44.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1560.3322ms +2017-07-18 17:24:44.539 +05:30 [Information] Request finished in 1583.2253ms 200 application/json; charset=utf-8 +2017-07-18 17:24:44.543 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:24:46.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:24:46.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:24:46.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:24:49.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:24:49.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:24:49.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:24:49.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:24:49.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3158.9933ms +2017-07-18 17:24:49.694 +05:30 [Information] Request finished in 3173.4232ms 200 application/json; charset=utf-8 +2017-07-18 17:24:49.695 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:24:49.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:24:49.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:24:49.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:24:54.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:24:54.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:24:54.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:03.098 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:03.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 13364.0585ms +2017-07-18 17:25:03.110 +05:30 [Information] Request finished in 13412.048ms 200 application/json; charset=utf-8 +2017-07-18 17:25:03.111 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:03.284 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:03.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:03.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:06.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:06.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:06.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:06.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:06.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.129ms +2017-07-18 17:25:06.347 +05:30 [Information] Request finished in 3061.2613ms 200 application/json; charset=utf-8 +2017-07-18 17:25:06.348 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:06.352 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:25:06.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:25:06.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:25:08.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:25:08.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:08.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:08.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:08.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2123.7685ms +2017-07-18 17:25:08.482 +05:30 [Information] Request finished in 2129.7996ms 200 application/json; charset=utf-8 +2017-07-18 17:25:08.483 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:08.490 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:25:08.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:25:08.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:25:09.234 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" started. +2017-07-18 17:25:09.237 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:09.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:09.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:11.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:11.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:11.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:11.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:11.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.792ms +2017-07-18 17:25:11.546 +05:30 [Information] Request finished in 3055.4789ms 200 application/json; charset=utf-8 +2017-07-18 17:25:11.547 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:11.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:25:11.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:25:11.562 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:25:12.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:12.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:12.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:12.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:12.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3034.6563ms +2017-07-18 17:25:12.283 +05:30 [Information] Request finished in 3046.8075ms 200 application/json; charset=utf-8 +2017-07-18 17:25:12.283 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:12.289 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:25:12.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:25:12.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:25:14.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:25:14.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:14.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:14.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:14.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2099.2306ms +2017-07-18 17:25:14.407 +05:30 [Information] Request finished in 2119.6007ms 200 application/json; charset=utf-8 +2017-07-18 17:25:14.407 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:14.493 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:14.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:14.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:14.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:14.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:14.734 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:14.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:14.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3176.3621ms +2017-07-18 17:25:14.745 +05:30 [Information] Request finished in 3190.808ms 200 application/json; charset=utf-8 +2017-07-18 17:25:14.746 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:14.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:25:14.757 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:25:14.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:25:17.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:17.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:17.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:17.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:17.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3076.0234ms +2017-07-18 17:25:17.580 +05:30 [Information] Request finished in 3087.5214ms 200 application/json; charset=utf-8 +2017-07-18 17:25:17.581 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:17.585 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:25:17.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:25:17.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:25:17.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:17.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:17.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:17.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:17.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3159.4071ms +2017-07-18 17:25:17.922 +05:30 [Information] Request finished in 3166.5277ms 200 application/json; charset=utf-8 +2017-07-18 17:25:17.923 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:20.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:25:20.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:20.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:20.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:20.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3064.4661ms +2017-07-18 17:25:20.661 +05:30 [Information] Request finished in 3075.9644ms 200 application/json; charset=utf-8 +2017-07-18 17:25:20.661 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:20.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:25:20.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:25:20.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:25:23.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:23.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:23.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:23.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:23.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3037.9243ms +2017-07-18 17:25:23.716 +05:30 [Information] Request finished in 3043.908ms 200 application/json; charset=utf-8 +2017-07-18 17:25:23.716 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:23.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:25:23.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:25:23.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:25:26.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:26.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:26.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:26.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:26.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3172.2006ms +2017-07-18 17:25:26.902 +05:30 [Information] Request finished in 3182.1823ms 200 application/json; charset=utf-8 +2017-07-18 17:25:26.902 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:26.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:25:26.915 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:25:26.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:25:29.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:30.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:30.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:30.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:30.023 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.0094ms +2017-07-18 17:25:30.026 +05:30 [Information] Request finished in 3111.2306ms 200 application/json; charset=utf-8 +2017-07-18 17:25:30.026 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:32.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:25:32.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:25:32.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:25:32.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:25:32.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:25:32.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:25:33.184 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" started. +2017-07-18 17:25:33.187 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" started. +2017-07-18 17:25:33.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:25:33.187 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" started. +2017-07-18 17:25:33.215 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:25:33.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:25:33.220 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:25:33.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:25:33.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:25:33.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:25:33.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:25:33.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:25:33.918 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" started. +2017-07-18 17:25:33.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:33.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:33.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:35.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:35.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:35.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:35.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:25:35.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:35.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:35.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:35.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3283.5474ms +2017-07-18 17:25:35.535 +05:30 [Information] Request finished in 3413.3981ms 200 application/json; charset=utf-8 +2017-07-18 17:25:35.536 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:35.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:35.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:25:35.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:35.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:35.597 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3453.1068ms +2017-07-18 17:25:35.616 +05:30 [Information] Request finished in 3494.7014ms 200 application/json; charset=utf-8 +2017-07-18 17:25:35.617 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:35.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:35.660 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:25:35.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:35.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:35.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2435.2062ms +2017-07-18 17:25:35.672 +05:30 [Information] Request finished in 2482.229ms 200 application/json; charset=utf-8 +2017-07-18 17:25:35.672 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" completed keep alive response. +2017-07-18 17:25:36.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:36.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:36.442 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:25:36.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:36.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:25:36.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:36.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3230.5227ms +2017-07-18 17:25:36.466 +05:30 [Information] Request finished in 3248.426ms 200 application/json; charset=utf-8 +2017-07-18 17:25:36.467 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" completed keep alive response. +2017-07-18 17:25:37.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:37.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:37.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:37.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:37.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3084.1044ms +2017-07-18 17:25:37.009 +05:30 [Information] Request finished in 3089.8005ms 200 application/json; charset=utf-8 +2017-07-18 17:25:37.009 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" completed keep alive response. +2017-07-18 17:25:37.012 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:25:37.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:25:37.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:25:38.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:38.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:25:38.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:38.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:38.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4922.8565ms +2017-07-18 17:25:38.152 +05:30 [Information] Request finished in 4957.3854ms 200 application/json; charset=utf-8 +2017-07-18 17:25:38.153 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" completed keep alive response. +2017-07-18 17:25:39.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:25:39.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:39.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:39.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:39.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2096.1742ms +2017-07-18 17:25:39.116 +05:30 [Information] Request finished in 2103.1959ms 200 application/json; charset=utf-8 +2017-07-18 17:25:39.116 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:25:39.127 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:25:39.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:25:39.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:25:41.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:25:41.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:41.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:41.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:41.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2141.5254ms +2017-07-18 17:25:41.273 +05:30 [Information] Request finished in 2147.5459ms 200 application/json; charset=utf-8 +2017-07-18 17:25:41.274 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:25:51.977 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:51.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:51.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:52.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:25:52.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:25:52.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:25:53.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:53.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:53.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:53.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:53.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1158.2255ms +2017-07-18 17:25:53.145 +05:30 [Information] Request finished in 1173.8454ms 200 application/json; charset=utf-8 +2017-07-18 17:25:53.146 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" completed keep alive response. +2017-07-18 17:25:54.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:25:54.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:25:54.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:25:54.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:25:54.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2174.8763ms +2017-07-18 17:25:54.200 +05:30 [Information] Request finished in 2194.7726ms 200 application/json; charset=utf-8 +2017-07-18 17:25:54.202 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" completed keep alive response. +2017-07-18 17:25:54.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:25:54.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:25:54.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:26:00.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:26:03.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:03.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:03.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:03.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 8784.4173ms +2017-07-18 17:26:03.527 +05:30 [Information] Request finished in 8801.1668ms 200 application/json; charset=utf-8 +2017-07-18 17:26:03.529 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" completed keep alive response. +2017-07-18 17:26:04.128 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:26:04.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:26:04.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:26:10.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:26:10.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:10.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:10.842 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:10.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 6708.6584ms +2017-07-18 17:26:10.850 +05:30 [Information] Request finished in 6738.4427ms 200 application/json; charset=utf-8 +2017-07-18 17:26:10.851 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" completed keep alive response. +2017-07-18 17:26:10.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:26:10.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:26:10.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:26:13.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:13.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:13.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:13.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:13.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3116.9369ms +2017-07-18 17:26:13.980 +05:30 [Information] Request finished in 3123.7844ms 200 application/json; charset=utf-8 +2017-07-18 17:26:13.981 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:26:13.998 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:26:14.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:26:14.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:26:17.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:17.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:17.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:17.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:17.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3084.6093ms +2017-07-18 17:26:17.089 +05:30 [Information] Request finished in 3101.9626ms 200 application/json; charset=utf-8 +2017-07-18 17:26:17.090 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:26:18.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:26:18.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:26:18.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:26:18.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:26:18.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:26:18.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:26:19.449 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:26:19.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:26:19.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:26:19.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:26:19.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:26:19.462 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:26:19.460 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:26:19.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:26:19.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:26:19.954 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:26:19.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:26:19.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:26:21.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:21.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:21.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:21.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:21.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:26:21.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:21.763 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:21.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2296.5379ms +2017-07-18 17:26:21.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:21.833 +05:30 [Information] Request finished in 2384.8834ms 200 application/json; charset=utf-8 +2017-07-18 17:26:21.836 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:26:21.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:26:22.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:22.009 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:26:22.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:22.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:22.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:26:22.052 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:22.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:22.058 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:26:22.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:22.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:22.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:22.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3378.2693ms +2017-07-18 17:26:22.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:22.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3412.6346ms +2017-07-18 17:26:22.119 +05:30 [Information] Request finished in 3448.5348ms 200 application/json; charset=utf-8 +2017-07-18 17:26:22.125 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" completed keep alive response. +2017-07-18 17:26:22.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2642.6336ms +2017-07-18 17:26:22.184 +05:30 [Information] Request finished in 3466.3777ms 200 application/json; charset=utf-8 +2017-07-18 17:26:22.185 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" completed keep alive response. +2017-07-18 17:26:22.231 +05:30 [Information] Request finished in 2746.441ms 200 application/json; charset=utf-8 +2017-07-18 17:26:22.233 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" completed keep alive response. +2017-07-18 17:26:22.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:22.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:26:22.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:22.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:22.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3142.7517ms +2017-07-18 17:26:22.605 +05:30 [Information] Request finished in 3185.2696ms 200 application/json; charset=utf-8 +2017-07-18 17:26:22.606 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" completed keep alive response. +2017-07-18 17:26:23.162 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:26:23.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:23.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:23.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:23.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3237.4113ms +2017-07-18 17:26:23.210 +05:30 [Information] Request finished in 3258.0664ms 200 application/json; charset=utf-8 +2017-07-18 17:26:23.211 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:26:23.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:26:23.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:26:23.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:26:26.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:26:26.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:26.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:26.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:26.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3180.7379ms +2017-07-18 17:26:26.404 +05:30 [Information] Request finished in 3189.5268ms 200 application/json; charset=utf-8 +2017-07-18 17:26:26.405 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:26:26.418 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:26:26.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:26:26.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:26:29.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:26:29.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:29.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:29.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:29.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3159.2416ms +2017-07-18 17:26:29.588 +05:30 [Information] Request finished in 3170.438ms 200 application/json; charset=utf-8 +2017-07-18 17:26:29.589 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" completed keep alive response. +2017-07-18 17:26:49.826 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:26:49.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:26:49.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:26:52.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:26:52.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:52.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:52.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:53.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3172.6886ms +2017-07-18 17:26:53.006 +05:30 [Information] Request finished in 3180.0228ms 200 application/json; charset=utf-8 +2017-07-18 17:26:53.007 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" completed keep alive response. +2017-07-18 17:26:53.014 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:26:53.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:26:53.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:26:56.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:26:56.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:56.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:56.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:56.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.6567ms +2017-07-18 17:26:56.076 +05:30 [Information] Request finished in 3065.7331ms 200 application/json; charset=utf-8 +2017-07-18 17:26:56.077 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" completed keep alive response. +2017-07-18 17:26:56.092 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:26:56.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:26:56.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:26:59.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:26:59.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:26:59.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:26:59.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:26:59.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3061.1107ms +2017-07-18 17:26:59.162 +05:30 [Information] Request finished in 3074.4154ms 200 application/json; charset=utf-8 +2017-07-18 17:26:59.162 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" completed keep alive response. +2017-07-18 17:26:59.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:26:59.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:26:59.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:27:02.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:02.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:02.286 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:02.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:02.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3116.7929ms +2017-07-18 17:27:02.294 +05:30 [Information] Request finished in 3125.5245ms 200 application/json; charset=utf-8 +2017-07-18 17:27:02.295 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:27:02.302 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:27:02.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:27:02.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:27:05.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:05.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:05.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:05.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:05.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.4247ms +2017-07-18 17:27:05.424 +05:30 [Information] Request finished in 3122.9653ms 200 application/json; charset=utf-8 +2017-07-18 17:27:05.425 +05:30 [Debug] Connection id ""0HL6DQD51RID0"" completed keep alive response. +2017-07-18 17:27:07.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:27:07.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:27:07.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:27:07.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:27:07.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:27:07.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:27:07.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:27:07.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:27:07.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:27:07.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:27:07.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:27:07.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:27:08.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:27:08.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:27:08.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:27:09.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:09.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:09.909 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:27:09.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:09.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:09.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2128.369ms +2017-07-18 17:27:09.914 +05:30 [Information] Request finished in 2155.7193ms 200 application/json; charset=utf-8 +2017-07-18 17:27:09.914 +05:30 [Debug] Connection id ""0HL6DQD51RID9"" completed keep alive response. +2017-07-18 17:27:10.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:11.861 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:12.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:12.793 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:27:13.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:13.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:13.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:27:13.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:13.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:27:13.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:13.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:13.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:13.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5704.2605ms +2017-07-18 17:27:13.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6460.6294ms +2017-07-18 17:27:13.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:13.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:27:13.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:13.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:27:13.800 +05:30 [Information] Request finished in 6628.8549ms 200 application/json; charset=utf-8 +2017-07-18 17:27:13.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:27:13.803 +05:30 [Debug] Connection id ""0HL6DQD51RIDA"" completed keep alive response. +2017-07-18 17:27:13.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:27:13.798 +05:30 [Information] Request finished in 5990.6039ms 200 application/json; charset=utf-8 +2017-07-18 17:27:13.806 +05:30 [Debug] Connection id ""0HL6DQD51RIDB"" completed keep alive response. +2017-07-18 17:27:13.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:13.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:27:13.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6631.0787ms +2017-07-18 17:27:13.833 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" received FIN. +2017-07-18 17:27:13.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5144.1329ms +2017-07-18 17:27:13.840 +05:30 [Information] Request finished in 6689.8011ms 200 application/json; charset=utf-8 +2017-07-18 17:27:13.841 +05:30 [Debug] Connection id ""0HL6DQD51RIDC"" completed keep alive response. +2017-07-18 17:27:13.861 +05:30 [Information] Request finished in 5187.3192ms 200 application/json; charset=utf-8 +2017-07-18 17:27:13.862 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" completed keep alive response. +2017-07-18 17:27:13.865 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" disconnecting. +2017-07-18 17:27:13.873 +05:30 [Information] Connection id ""0HL6DQD51RIDD"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-18 17:27:13.876 +05:30 [Debug] Connection id ""0HL6DQD51RIDD"" stopped. +2017-07-18 17:28:34.469 +05:30 [Debug] Hosting starting +2017-07-18 17:28:34.694 +05:30 [Debug] Hosting started +2017-07-18 17:28:34.868 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" started. +2017-07-18 17:28:34.868 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" started. +2017-07-18 17:28:35.064 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:28:35.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:28:35.211 +05:30 [Information] Request finished in 172.5853ms 200 +2017-07-18 17:28:35.312 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:28:36.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:28:36.126 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1e3d73db-8973-439b-ac77-6aa9400f78e0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:28:36.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:28:36.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:28:36.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:28:36.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:28:36.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:28:36.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:28:36.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 551.8224ms +2017-07-18 17:28:36.925 +05:30 [Information] Request finished in 1916.9128ms 200 application/json; charset=utf-8 +2017-07-18 17:28:36.928 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:28:36.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 17:28:36.963 +05:30 [Debug] Request did not match any routes. +2017-07-18 17:28:36.991 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 17:28:36.995 +05:30 [Information] Request finished in 37.667ms 404 +2017-07-18 17:28:36.996 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:28:44.730 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:28:44.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:28:44.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:28:48.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:28:54.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:28:54.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:28:54.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:28:54.378 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9577.2508ms +2017-07-18 17:28:54.699 +05:30 [Information] Request finished in 9890.2605ms 200 application/json; charset=utf-8 +2017-07-18 17:28:54.700 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:02.342 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:29:02.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:29:02.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:29:03.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:29:03.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:29:03.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:29:05.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:29:05.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:05.812 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:05.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:05.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3529.6613ms +2017-07-18 17:29:05.887 +05:30 [Information] Request finished in 3547.5887ms 200 application/json; charset=utf-8 +2017-07-18 17:29:05.889 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:06.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:06.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:06.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:06.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:06.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3141.4579ms +2017-07-18 17:29:06.860 +05:30 [Information] Request finished in 3150.5841ms 200 application/json; charset=utf-8 +2017-07-18 17:29:06.861 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:06.984 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:29:06.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:29:06.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:29:06.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:29:06.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:29:06.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:29:10.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:10.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:10.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:10.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:10.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:10.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3149.4628ms +2017-07-18 17:29:10.145 +05:30 [Information] Request finished in 3160.9555ms 200 application/json; charset=utf-8 +2017-07-18 17:29:10.146 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:10.154 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:29:10.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:29:10.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:29:10.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:10.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:10.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:10.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3189.4559ms +2017-07-18 17:29:10.189 +05:30 [Information] Request finished in 3199.2168ms 200 application/json; charset=utf-8 +2017-07-18 17:29:10.189 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:10.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:29:10.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:29:10.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:29:13.217 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:29:13.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:29:13.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:13.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:13.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:13.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:13.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:13.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:13.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3057.8295ms +2017-07-18 17:29:13.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3082.6831ms +2017-07-18 17:29:13.256 +05:30 [Information] Request finished in 3064.8292ms 200 application/json; charset=utf-8 +2017-07-18 17:29:13.257 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:13.259 +05:30 [Information] Request finished in 3105.4465ms 200 application/json; charset=utf-8 +2017-07-18 17:29:13.260 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:13.308 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:29:13.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:29:13.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:29:13.367 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:29:13.368 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:29:13.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:29:16.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:16.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:16.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:16.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:16.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3036.4007ms +2017-07-18 17:29:16.354 +05:30 [Information] Request finished in 3047.9782ms 200 application/json; charset=utf-8 +2017-07-18 17:29:16.354 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:16.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:29:16.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:29:16.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:29:16.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:16.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:16.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:16.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:16.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.6523ms +2017-07-18 17:29:16.427 +05:30 [Information] Request finished in 3061.9261ms 200 application/json; charset=utf-8 +2017-07-18 17:29:16.428 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:16.430 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:29:16.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:29:16.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:29:19.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:19.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:29:19.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:19.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:19.585 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:19.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3153.6919ms +2017-07-18 17:29:19.611 +05:30 [Information] Request finished in 3179.9413ms 200 application/json; charset=utf-8 +2017-07-18 17:29:19.612 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:19.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:19.662 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:29:19.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:19.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:29:19.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:29:19.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:19.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3311.6774ms +2017-07-18 17:29:19.684 +05:30 [Information] Request finished in 3319.3506ms 200 application/json; charset=utf-8 +2017-07-18 17:29:19.684 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:19.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:29:19.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:29:19.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:29:22.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:22.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:22.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:22.723 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:22.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.7674ms +2017-07-18 17:29:22.733 +05:30 [Information] Request finished in 3070.4584ms 200 application/json; charset=utf-8 +2017-07-18 17:29:22.733 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:22.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:29:22.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:29:22.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:29:22.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:22.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:22.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:22.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:22.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3123.9215ms +2017-07-18 17:29:22.918 +05:30 [Information] Request finished in 3139.4397ms 200 application/json; charset=utf-8 +2017-07-18 17:29:22.918 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:25.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:25.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:25.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:25.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:25.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3212.2656ms +2017-07-18 17:29:25.975 +05:30 [Information] Request finished in 3218.2586ms 200 application/json; charset=utf-8 +2017-07-18 17:29:25.975 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:25.980 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:29:25.982 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:29:25.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:29:29.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:29.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:29.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:29.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:29.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.3877ms +2017-07-18 17:29:29.125 +05:30 [Information] Request finished in 3143.7912ms 200 application/json; charset=utf-8 +2017-07-18 17:29:29.126 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:30.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:29:30.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:29:30.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:29:30.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:29:30.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:29:30.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:29:31.455 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" started. +2017-07-18 17:29:31.455 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" started. +2017-07-18 17:29:31.458 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" started. +2017-07-18 17:29:31.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:29:31.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:29:31.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:29:31.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:29:31.482 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:29:31.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:29:31.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:29:31.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:29:31.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:29:32.442 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" started. +2017-07-18 17:29:32.456 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:29:32.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:29:32.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:29:33.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:33.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:33.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:29:33.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:34.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:34.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3657.1712ms +2017-07-18 17:29:34.474 +05:30 [Information] Request finished in 3786.3736ms 200 application/json; charset=utf-8 +2017-07-18 17:29:34.476 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:34.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:34.828 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:34.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:34.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:29:34.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:34.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:29:34.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:34.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:35.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4262.8546ms +2017-07-18 17:29:35.048 +05:30 [Information] Request finished in 4356.5816ms 200 application/json; charset=utf-8 +2017-07-18 17:29:35.050 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:29:35.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:35.055 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:29:35.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:35.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:35.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3616.2484ms +2017-07-18 17:29:35.141 +05:30 [Information] Request finished in 3680.1878ms 200 application/json; charset=utf-8 +2017-07-18 17:29:35.142 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" completed keep alive response. +2017-07-18 17:29:35.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:35.314 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:29:35.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:35.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:35.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3911.7376ms +2017-07-18 17:29:35.403 +05:30 [Information] Request finished in 3941.8394ms 200 application/json; charset=utf-8 +2017-07-18 17:29:35.404 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" completed keep alive response. +2017-07-18 17:29:35.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:29:35.683 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:35.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:35.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:35.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3229.9877ms +2017-07-18 17:29:35.698 +05:30 [Information] Request finished in 3254.0571ms 200 application/json; charset=utf-8 +2017-07-18 17:29:35.699 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" completed keep alive response. +2017-07-18 17:29:35.704 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:29:35.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:29:35.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:29:37.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:37.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:29:37.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:37.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:37.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5686.8936ms +2017-07-18 17:29:37.197 +05:30 [Information] Request finished in 5717.6824ms 200 application/json; charset=utf-8 +2017-07-18 17:29:37.198 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" completed keep alive response. +2017-07-18 17:29:38.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:29:38.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:38.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:38.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:38.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3214.4709ms +2017-07-18 17:29:38.925 +05:30 [Information] Request finished in 3221.2965ms 200 application/json; charset=utf-8 +2017-07-18 17:29:38.925 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" completed keep alive response. +2017-07-18 17:29:38.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:29:38.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:29:38.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:29:42.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:29:42.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:29:42.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:29:42.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:29:42.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3201.5856ms +2017-07-18 17:29:42.148 +05:30 [Information] Request finished in 3209.6296ms 200 application/json; charset=utf-8 +2017-07-18 17:29:42.148 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" completed keep alive response. +2017-07-18 17:32:34.847 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" received FIN. +2017-07-18 17:32:34.847 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" received FIN. +2017-07-18 17:32:34.851 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" received FIN. +2017-07-18 17:32:34.852 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" received FIN. +2017-07-18 17:32:34.852 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" disconnecting. +2017-07-18 17:32:34.850 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" received FIN. +2017-07-18 17:32:34.859 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" received FIN. +2017-07-18 17:32:34.860 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" sending FIN. +2017-07-18 17:32:34.851 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" disconnecting. +2017-07-18 17:32:34.872 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" sent FIN with status "0". +2017-07-18 17:32:34.872 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" sending FIN. +2017-07-18 17:32:34.874 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" sent FIN with status "0". +2017-07-18 17:32:34.878 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" disconnecting. +2017-07-18 17:32:34.880 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" disconnecting. +2017-07-18 17:32:34.876 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" disconnecting. +2017-07-18 17:32:34.878 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" disconnecting. +2017-07-18 17:32:34.884 +05:30 [Debug] Connection id ""0HL6DQH8MDSRQ"" stopped. +2017-07-18 17:32:34.884 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" sending FIN. +2017-07-18 17:32:34.884 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" sending FIN. +2017-07-18 17:32:34.885 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" sent FIN with status "0". +2017-07-18 17:32:34.884 +05:30 [Debug] Connection id ""0HL6DQH8MDSRR"" stopped. +2017-07-18 17:32:34.885 +05:30 [Debug] Connection id ""0HL6DQH8MDSRT"" stopped. +2017-07-18 17:32:34.886 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" sending FIN. +2017-07-18 17:32:34.886 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" sent FIN with status "0". +2017-07-18 17:32:34.887 +05:30 [Debug] Connection id ""0HL6DQH8MDSRO"" stopped. +2017-07-18 17:32:34.887 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" sending FIN. +2017-07-18 17:32:34.888 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" sent FIN with status "0". +2017-07-18 17:32:34.889 +05:30 [Debug] Connection id ""0HL6DQH8MDSRS"" stopped. +2017-07-18 17:32:34.889 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" sent FIN with status "0". +2017-07-18 17:32:34.890 +05:30 [Debug] Connection id ""0HL6DQH8MDSRP"" stopped. +2017-07-18 17:40:52.455 +05:30 [Debug] Hosting starting +2017-07-18 17:40:52.727 +05:30 [Debug] Hosting started +2017-07-18 17:40:52.950 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" started. +2017-07-18 17:40:52.950 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" started. +2017-07-18 17:40:53.247 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:40:53.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:40:53.333 +05:30 [Information] Request finished in 180.4343ms 200 +2017-07-18 17:40:53.491 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:40:54.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:40:54.218 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d2694ef9-9236-481e-a9ba-80e009e84075"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:40:54.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:40:54.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:40:54.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:40:54.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:40:54.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:40:54.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:40:59.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5223.0075ms +2017-07-18 17:40:59.619 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:40:59.624 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:40:59.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:40:59.718 +05:30 [Information] Request finished in 6588.4019ms 200 application/json; charset=utf-8 +2017-07-18 17:40:59.746 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:03.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:09.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:09.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:09.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:09.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9771.0557ms +2017-07-18 17:41:09.520 +05:30 [Information] Request finished in 9917.3462ms 200 application/json; charset=utf-8 +2017-07-18 17:41:09.521 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:10.222 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:41:10.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:41:10.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:41:12.632 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:41:12.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:41:12.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:41:13.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:41:13.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:13.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:13.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:13.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3521.0505ms +2017-07-18 17:41:13.758 +05:30 [Information] Request finished in 3572.2824ms 200 application/json; charset=utf-8 +2017-07-18 17:41:13.761 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:15.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:15.708 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:15.709 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:15.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:15.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3060.4297ms +2017-07-18 17:41:15.717 +05:30 [Information] Request finished in 3139.2188ms 200 application/json; charset=utf-8 +2017-07-18 17:41:15.718 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:15.830 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:41:15.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:41:15.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:41:16.006 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:41:16.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:41:16.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:41:17.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:17.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:17.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:17.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:17.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2095.5117ms +2017-07-18 17:41:17.938 +05:30 [Information] Request finished in 2109.7802ms 200 application/json; charset=utf-8 +2017-07-18 17:41:17.939 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:17.943 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:41:17.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:41:17.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:41:19.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:19.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:19.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:19.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:19.080 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.9999ms +2017-07-18 17:41:19.084 +05:30 [Information] Request finished in 3077.7257ms 200 application/json; charset=utf-8 +2017-07-18 17:41:19.085 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:19.091 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:41:19.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:41:19.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:41:20.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:41:20.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:20.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:20.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:20.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.1444ms +2017-07-18 17:41:20.994 +05:30 [Information] Request finished in 3052.5575ms 200 application/json; charset=utf-8 +2017-07-18 17:41:20.995 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:21.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:41:21.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:41:21.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:41:22.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:41:22.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:22.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:22.154 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:22.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.2041ms +2017-07-18 17:41:22.160 +05:30 [Information] Request finished in 3072.4329ms 200 application/json; charset=utf-8 +2017-07-18 17:41:22.162 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:22.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:41:22.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:41:22.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:41:25.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:25.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:25.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:25.295 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:25.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.5493ms +2017-07-18 17:41:25.301 +05:30 [Information] Request finished in 3097.2475ms 200 application/json; charset=utf-8 +2017-07-18 17:41:25.302 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:25.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:41:25.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:41:25.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:41:28.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:28.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:28.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:28.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:28.330 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7212.0815ms +2017-07-18 17:41:28.333 +05:30 [Information] Request finished in 7221.8802ms 200 application/json; charset=utf-8 +2017-07-18 17:41:28.334 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:28.346 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:41:28.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:41:28.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:41:28.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:28.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:28.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:28.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:28.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3194.1588ms +2017-07-18 17:41:28.530 +05:30 [Information] Request finished in 3217.5905ms 200 application/json; charset=utf-8 +2017-07-18 17:41:28.531 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:28.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:41:28.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:41:28.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:41:31.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:41:31.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:31.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:31.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:31.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.4568ms +2017-07-18 17:41:31.447 +05:30 [Information] Request finished in 3111.0727ms 200 application/json; charset=utf-8 +2017-07-18 17:41:31.449 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:31.479 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:41:31.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:41:31.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:41:31.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:31.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:31.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:31.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:31.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3154.6063ms +2017-07-18 17:41:31.747 +05:30 [Information] Request finished in 3160.6602ms 200 application/json; charset=utf-8 +2017-07-18 17:41:31.748 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:34.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:34.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:34.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:34.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:34.546 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.2358ms +2017-07-18 17:41:34.549 +05:30 [Information] Request finished in 3072.6647ms 200 application/json; charset=utf-8 +2017-07-18 17:41:34.550 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:34.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:41:34.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:41:34.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:41:37.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:37.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:37.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:37.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:37.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3127.305ms +2017-07-18 17:41:37.691 +05:30 [Information] Request finished in 3133.632ms 200 application/json; charset=utf-8 +2017-07-18 17:41:37.692 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:37.703 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:41:37.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:41:37.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:41:39.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:39.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:39.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:39.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:39.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2205.7412ms +2017-07-18 17:41:39.917 +05:30 [Information] Request finished in 2212.2543ms 200 application/json; charset=utf-8 +2017-07-18 17:41:39.917 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:41.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:41:41.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:41:41.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:41:41.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:41:41.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:41:41.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:41:42.079 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" started. +2017-07-18 17:41:42.082 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" started. +2017-07-18 17:41:42.097 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" started. +2017-07-18 17:41:42.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:41:42.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:41:42.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:41:42.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:41:42.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:41:42.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:41:42.127 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:41:42.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:41:42.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:41:42.920 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" started. +2017-07-18 17:41:42.924 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:41:42.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:41:42.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:41:43.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:43.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:44.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:44.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:41:44.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:44.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:44.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2439.2354ms +2017-07-18 17:41:44.032 +05:30 [Information] Request finished in 2462.5271ms 200 application/json; charset=utf-8 +2017-07-18 17:41:44.033 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:44.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:44.063 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:41:44.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:44.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:44.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2494.8344ms +2017-07-18 17:41:44.072 +05:30 [Information] Request finished in 2503.422ms 200 application/json; charset=utf-8 +2017-07-18 17:41:44.073 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:41:45.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:41:45.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:45.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:45.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:45.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2149.4863ms +2017-07-18 17:41:45.080 +05:30 [Information] Request finished in 2157.3429ms 200 application/json; charset=utf-8 +2017-07-18 17:41:45.080 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" completed keep alive response. +2017-07-18 17:41:45.087 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:41:45.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:41:45.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:41:45.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:45.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:45.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:41:45.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:45.443 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:41:45.443 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:45.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:45.457 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3322.7927ms +2017-07-18 17:41:45.490 +05:30 [Information] Request finished in 3343.7371ms 200 application/json; charset=utf-8 +2017-07-18 17:41:45.507 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" completed keep alive response. +2017-07-18 17:41:45.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:45.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:41:45.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:45.791 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:45.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3744.6817ms +2017-07-18 17:41:45.859 +05:30 [Information] Request finished in 3776.2866ms 200 application/json; charset=utf-8 +2017-07-18 17:41:45.860 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" completed keep alive response. +2017-07-18 17:41:47.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:47.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:41:47.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:47.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:47.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5691.5647ms +2017-07-18 17:41:47.821 +05:30 [Information] Request finished in 5712.9292ms 200 application/json; charset=utf-8 +2017-07-18 17:41:47.822 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" completed keep alive response. +2017-07-18 17:41:48.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:41:48.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:48.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:48.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:48.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3057.1309ms +2017-07-18 17:41:48.150 +05:30 [Information] Request finished in 3063.6407ms 200 application/json; charset=utf-8 +2017-07-18 17:41:48.151 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" completed keep alive response. +2017-07-18 17:41:48.174 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:41:48.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:41:48.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:41:51.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:41:51.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:41:51.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:41:51.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:41:51.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3173.7868ms +2017-07-18 17:41:51.357 +05:30 [Information] Request finished in 3184.4164ms 200 application/json; charset=utf-8 +2017-07-18 17:41:51.357 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" completed keep alive response. +2017-07-18 17:42:52.919 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" received FIN. +2017-07-18 17:42:52.919 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" received FIN. +2017-07-18 17:42:52.921 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" disconnecting. +2017-07-18 17:42:52.922 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" received FIN. +2017-07-18 17:42:52.924 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" received FIN. +2017-07-18 17:42:52.924 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" disconnecting. +2017-07-18 17:42:52.920 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" received FIN. +2017-07-18 17:42:52.931 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" received FIN. +2017-07-18 17:42:52.932 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" sending FIN. +2017-07-18 17:42:52.929 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" disconnecting. +2017-07-18 17:42:52.935 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" disconnecting. +2017-07-18 17:42:52.935 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" disconnecting. +2017-07-18 17:42:52.925 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" disconnecting. +2017-07-18 17:42:52.930 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" sending FIN. +2017-07-18 17:42:52.937 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" sending FIN. +2017-07-18 17:42:52.938 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" sending FIN. +2017-07-18 17:42:52.942 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" sent FIN with status "0". +2017-07-18 17:42:52.944 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" sent FIN with status "0". +2017-07-18 17:42:52.947 +05:30 [Debug] Connection id ""0HL6DQO4L7V3N"" stopped. +2017-07-18 17:42:52.947 +05:30 [Debug] Connection id ""0HL6DQO4L7V3M"" stopped. +2017-07-18 17:42:52.949 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" sent FIN with status "0". +2017-07-18 17:42:52.948 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" sending FIN. +2017-07-18 17:42:52.950 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" sending FIN. +2017-07-18 17:42:52.949 +05:30 [Debug] Connection id ""0HL6DQO4L7V3J"" stopped. +2017-07-18 17:42:52.951 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" sent FIN with status "0". +2017-07-18 17:42:52.951 +05:30 [Debug] Connection id ""0HL6DQO4L7V3K"" stopped. +2017-07-18 17:42:52.950 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" sent FIN with status "0". +2017-07-18 17:42:52.952 +05:30 [Debug] Connection id ""0HL6DQO4L7V3I"" stopped. +2017-07-18 17:42:52.952 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" sent FIN with status "0". +2017-07-18 17:42:52.953 +05:30 [Debug] Connection id ""0HL6DQO4L7V3L"" stopped. +2017-07-18 17:53:13.731 +05:30 [Debug] Hosting starting +2017-07-18 17:53:13.938 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" started. +2017-07-18 17:53:13.951 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" started. +2017-07-18 17:53:13.976 +05:30 [Debug] Hosting started +2017-07-18 17:53:14.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 17:53:14.107 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 17:53:14.185 +05:30 [Information] Request finished in 112.7515ms 200 +2017-07-18 17:53:14.243 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:14.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 17:53:14.763 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c31e4c54-822f-4b0a-ac04-61d35ee8012e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 17:53:14.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 17:53:15.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 17:53:15.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 17:53:15.309 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:53:15.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:15.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:16.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1238.2651ms +2017-07-18 17:53:16.267 +05:30 [Information] Request finished in 2214.8565ms 200 application/json; charset=utf-8 +2017-07-18 17:53:16.270 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:21.926 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:53:21.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:53:21.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:53:25.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:53:29.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:29.819 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:29.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:30.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8131.5291ms +2017-07-18 17:53:30.136 +05:30 [Information] Request finished in 8220.7893ms 200 application/json; charset=utf-8 +2017-07-18 17:53:30.139 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:30.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:53:30.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:53:30.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:53:32.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:53:32.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:53:32.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:53:33.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:53:33.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:33.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:33.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:34.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3344.392ms +2017-07-18 17:53:34.147 +05:30 [Information] Request finished in 3433.3585ms 200 application/json; charset=utf-8 +2017-07-18 17:53:34.148 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:34.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:53:34.364 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:34.365 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:34.366 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:34.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2335.5226ms +2017-07-18 17:53:34.376 +05:30 [Information] Request finished in 2373.2049ms 200 application/json; charset=utf-8 +2017-07-18 17:53:34.377 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:34.473 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:53:34.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:53:34.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:53:37.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:53:37.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:37.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:37.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:37.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.4961ms +2017-07-18 17:53:37.560 +05:30 [Information] Request finished in 3088.9764ms 200 application/json; charset=utf-8 +2017-07-18 17:53:37.561 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:37.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:53:37.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:53:37.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:53:40.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:53:40.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:40.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:40.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:40.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.8306ms +2017-07-18 17:53:40.662 +05:30 [Information] Request finished in 3092.9665ms 200 application/json; charset=utf-8 +2017-07-18 17:53:40.663 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:40.808 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:53:40.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:53:40.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:53:43.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:53:43.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:43.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:43.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:43.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3036.4868ms +2017-07-18 17:53:43.855 +05:30 [Information] Request finished in 3048.8797ms 200 application/json; charset=utf-8 +2017-07-18 17:53:43.856 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:43.865 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:53:43.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:53:43.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:53:46.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:53:46.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:46.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:46.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:46.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.6525ms +2017-07-18 17:53:46.931 +05:30 [Information] Request finished in 3071.2209ms 200 application/json; charset=utf-8 +2017-07-18 17:53:46.931 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:46.969 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 17:53:46.970 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 17:53:46.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 17:53:49.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:53:50.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:50.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:50.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:50.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3036.982ms +2017-07-18 17:53:50.014 +05:30 [Information] Request finished in 3044.7261ms 200 application/json; charset=utf-8 +2017-07-18 17:53:50.014 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:50.028 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:53:50.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:53:50.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:53:53.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:53:53.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:53.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:53.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:53.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3210.5278ms +2017-07-18 17:53:53.245 +05:30 [Information] Request finished in 3219.8193ms 200 application/json; charset=utf-8 +2017-07-18 17:53:53.246 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:53:53.313 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:53:53.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:53:53.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:53:56.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:53:56.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:53:56.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:53:56.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:53:56.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3130.9007ms +2017-07-18 17:53:56.462 +05:30 [Information] Request finished in 3148.7169ms 200 application/json; charset=utf-8 +2017-07-18 17:53:56.466 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:53:58.843 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:53:58.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:53:58.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:53:58.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:53:58.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:53:58.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:53:59.517 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" started. +2017-07-18 17:53:59.522 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" started. +2017-07-18 17:53:59.523 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" started. +2017-07-18 17:53:59.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:53:59.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:53:59.528 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:53:59.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:53:59.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:53:59.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:53:59.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:53:59.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:53:59.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:54:00.597 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" started. +2017-07-18 17:54:01.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:54:01.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:54:01.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:54:03.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:03.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:03.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:03.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:03.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:03.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:03.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:03.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4999.3421ms +2017-07-18 17:54:03.885 +05:30 [Information] Request finished in 5019.9558ms 200 application/json; charset=utf-8 +2017-07-18 17:54:03.886 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:54:03.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:03.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:03.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:03.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:03.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5093.4492ms +2017-07-18 17:54:03.978 +05:30 [Information] Request finished in 5134.8848ms 200 application/json; charset=utf-8 +2017-07-18 17:54:03.979 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:54:04.093 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:04.094 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:04.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:04.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:04.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4623.8104ms +2017-07-18 17:54:04.165 +05:30 [Information] Request finished in 4638.7502ms 200 application/json; charset=utf-8 +2017-07-18 17:54:04.165 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" completed keep alive response. +2017-07-18 17:54:04.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:04.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:04.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:04.704 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:04.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:04.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:04.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5188.1969ms +2017-07-18 17:54:04.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:54:04.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:04.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:04.774 +05:30 [Information] Request finished in 5240.423ms 200 application/json; charset=utf-8 +2017-07-18 17:54:04.775 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" completed keep alive response. +2017-07-18 17:54:04.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:04.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3270.7526ms +2017-07-18 17:54:04.802 +05:30 [Information] Request finished in 3284.7744ms 200 application/json; charset=utf-8 +2017-07-18 17:54:04.804 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" completed keep alive response. +2017-07-18 17:54:04.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 17:54:04.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 17:54:04.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 17:54:06.896 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:54:06.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:54:06.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:54:08.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:54:08.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:08.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:08.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:08.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:08.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:08.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:08.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:08.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3559.0979ms +2017-07-18 17:54:08.381 +05:30 [Information] Request finished in 3571.1346ms 200 application/json; charset=utf-8 +2017-07-18 17:54:08.382 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:54:08.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8840.5614ms +2017-07-18 17:54:08.404 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 17:54:08.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:54:08.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:54:08.413 +05:30 [Information] Request finished in 8877.5971ms 200 application/json; charset=utf-8 +2017-07-18 17:54:08.415 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" completed keep alive response. +2017-07-18 17:54:09.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-18 17:54:09.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:09.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:09.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:09.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3090.1451ms +2017-07-18 17:54:09.994 +05:30 [Information] Request finished in 3101.9792ms 200 application/json; charset=utf-8 +2017-07-18 17:54:09.995 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:54:10.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:54:10.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:10.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:10.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:11.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2590.5869ms +2017-07-18 17:54:11.008 +05:30 [Information] Request finished in 2606.1194ms 200 application/json; charset=utf-8 +2017-07-18 17:54:11.009 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" completed keep alive response. +2017-07-18 17:54:16.583 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 17:54:16.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 17:54:16.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 17:54:19.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 17:54:20.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:20.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:20.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:20.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3667.4781ms +2017-07-18 17:54:20.258 +05:30 [Information] Request finished in 3675.1211ms 200 application/json; charset=utf-8 +2017-07-18 17:54:20.259 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" completed keep alive response. +2017-07-18 17:54:20.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 17:54:20.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 17:54:20.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 17:54:23.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:23.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:23.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:23.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:23.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3120.5978ms +2017-07-18 17:54:23.472 +05:30 [Information] Request finished in 3127.5599ms 200 application/json; charset=utf-8 +2017-07-18 17:54:23.474 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" completed keep alive response. +2017-07-18 17:54:23.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:54:23.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:54:23.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:54:26.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:26.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:26.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:26.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:26.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3093.6005ms +2017-07-18 17:54:26.589 +05:30 [Information] Request finished in 3102.83ms 200 application/json; charset=utf-8 +2017-07-18 17:54:26.590 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:54:28.330 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 17:54:28.330 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 17:54:28.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 17:54:28.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 17:54:28.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 17:54:28.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 17:54:29.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 17:54:29.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 17:54:29.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 17:54:29.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 17:54:29.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 17:54:29.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 17:54:29.308 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 17:54:29.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 17:54:29.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 17:54:29.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-18 17:54:29.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 17:54:29.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 17:54:31.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:31.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:31.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:31.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:31.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:31.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3353.4759ms +2017-07-18 17:54:31.697 +05:30 [Information] Request finished in 3375.2589ms 200 application/json; charset=utf-8 +2017-07-18 17:54:31.698 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" completed keep alive response. +2017-07-18 17:54:31.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:31.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:31.797 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:31.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:31.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:31.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3461.7934ms +2017-07-18 17:54:31.804 +05:30 [Information] Request finished in 3477.9827ms 200 application/json; charset=utf-8 +2017-07-18 17:54:31.805 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:54:32.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 17:54:32.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:32.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:32.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:32.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2150.2835ms +2017-07-18 17:54:32.136 +05:30 [Information] Request finished in 2186.1091ms 200 application/json; charset=utf-8 +2017-07-18 17:54:32.136 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:54:32.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:32.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:32.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:32.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:32.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:32.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:32.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:32.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3336.1477ms +2017-07-18 17:54:32.716 +05:30 [Information] Request finished in 3494.5693ms 200 application/json; charset=utf-8 +2017-07-18 17:54:32.717 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" completed keep alive response. +2017-07-18 17:54:32.753 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:32.754 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:32.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:32.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:32.758 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3543.9188ms +2017-07-18 17:54:32.760 +05:30 [Information] Request finished in 3571.0274ms 200 application/json; charset=utf-8 +2017-07-18 17:54:32.761 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" completed keep alive response. +2017-07-18 17:54:33.563 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:33.564 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:33.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:33.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:33.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4333.0797ms +2017-07-18 17:54:33.573 +05:30 [Information] Request finished in 4374.7646ms 200 application/json; charset=utf-8 +2017-07-18 17:54:33.573 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" completed keep alive response. +2017-07-18 17:54:36.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-18 17:54:36.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-18 17:54:36.279 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-18 17:54:36.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-18 17:54:36.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-18 17:54:36.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 17:54:36.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 17:54:36.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 17:54:36.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-18 17:54:38.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:38.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:38.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:38.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:38.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:38.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:38.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 2260.6275ms +2017-07-18 17:54:38.557 +05:30 [Information] Request finished in 2303.3239ms 200 application/json; charset=utf-8 +2017-07-18 17:54:38.574 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:54:38.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:38.640 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:38.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:38.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:38.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 2347.7729ms +2017-07-18 17:54:38.653 +05:30 [Information] Request finished in 2401.0899ms 200 application/json; charset=utf-8 +2017-07-18 17:54:38.654 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" completed keep alive response. +2017-07-18 17:54:39.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:39.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:39.494 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:39.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:39.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:39.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3215.2373ms +2017-07-18 17:54:39.501 +05:30 [Information] Request finished in 3250.084ms 200 application/json; charset=utf-8 +2017-07-18 17:54:39.502 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" completed keep alive response. +2017-07-18 17:54:46.893 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession?sessionId=29&systemId=8d4cdd23a912d5b 0 +2017-07-18 17:54:46.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-18 17:54:46.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-18 17:54:49.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["29", "8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:54:50.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-18 17:54:50.186 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-18 17:54:50.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3289.9235ms +2017-07-18 17:54:50.195 +05:30 [Information] Request finished in 3307.4619ms 200 +2017-07-18 17:54:50.196 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" completed keep alive response. +2017-07-18 17:54:50.249 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-18 17:54:50.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-18 17:54:50.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-18 17:54:53.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 17:54:53.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:54:53.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 17:54:53.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:54:53.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:54:53.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3045.3806ms +2017-07-18 17:54:53.302 +05:30 [Information] Request finished in 3055.0869ms 200 application/json; charset=utf-8 +2017-07-18 17:54:53.303 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" completed keep alive response. +2017-07-18 17:55:09.587 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:55:09.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:55:09.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:55:12.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:55:12.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:55:12.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:55:12.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:55:12.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3060.8673ms +2017-07-18 17:55:12.654 +05:30 [Information] Request finished in 3068.4131ms 200 application/json; charset=utf-8 +2017-07-18 17:55:12.655 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" completed keep alive response. +2017-07-18 17:55:19.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 17:55:19.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 17:55:19.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 17:55:22.798 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 17:55:22.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 17:55:22.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 17:55:22.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 17:55:22.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3068.2849ms +2017-07-18 17:55:22.817 +05:30 [Information] Request finished in 3086.6023ms 200 application/json; charset=utf-8 +2017-07-18 17:55:22.818 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" completed keep alive response. +2017-07-18 17:57:13.914 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" received FIN. +2017-07-18 17:57:13.916 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" received FIN. +2017-07-18 17:57:13.917 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" disconnecting. +2017-07-18 17:57:13.914 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" received FIN. +2017-07-18 17:57:13.919 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" sending FIN. +2017-07-18 17:57:13.926 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" sent FIN with status "0". +2017-07-18 17:57:13.935 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" received FIN. +2017-07-18 17:57:13.936 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" received FIN. +2017-07-18 17:57:13.936 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" received FIN. +2017-07-18 17:57:13.936 +05:30 [Debug] Connection id ""0HL6DQV1FSSR4"" stopped. +2017-07-18 17:57:13.936 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" disconnecting. +2017-07-18 17:57:13.937 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" disconnecting. +2017-07-18 17:57:13.939 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" sending FIN. +2017-07-18 17:57:13.939 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" disconnecting. +2017-07-18 17:57:13.939 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" sent FIN with status "0". +2017-07-18 17:57:13.940 +05:30 [Debug] Connection id ""0HL6DQV1FSSR5"" stopped. +2017-07-18 17:57:13.940 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" disconnecting. +2017-07-18 17:57:13.941 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" disconnecting. +2017-07-18 17:57:13.937 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" sending FIN. +2017-07-18 17:57:13.947 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" sending FIN. +2017-07-18 17:57:13.948 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" sending FIN. +2017-07-18 17:57:13.949 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" sending FIN. +2017-07-18 17:57:13.950 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" sent FIN with status "0". +2017-07-18 17:57:13.950 +05:30 [Debug] Connection id ""0HL6DQV1FSSR2"" stopped. +2017-07-18 17:57:13.951 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" sent FIN with status "0". +2017-07-18 17:57:13.951 +05:30 [Debug] Connection id ""0HL6DQV1FSSR6"" stopped. +2017-07-18 17:57:13.952 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" sent FIN with status "0". +2017-07-18 17:57:13.952 +05:30 [Debug] Connection id ""0HL6DQV1FSSR3"" stopped. +2017-07-18 17:57:13.953 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" sent FIN with status "0". +2017-07-18 17:57:13.953 +05:30 [Debug] Connection id ""0HL6DQV1FSSR1"" stopped. +2017-07-18 18:45:06.626 +05:30 [Debug] Hosting starting +2017-07-18 18:45:06.943 +05:30 [Debug] Hosting started +2017-07-18 18:45:07.149 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" started. +2017-07-18 18:45:07.149 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" started. +2017-07-18 18:45:07.329 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 18:45:07.339 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 18:45:07.416 +05:30 [Information] Request finished in 118.0711ms 200 +2017-07-18 18:45:07.476 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" completed keep alive response. +2017-07-18 18:45:08.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 18:45:08.221 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"50c48688-a9c8-44fa-8e64-aeaf23944a74"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 18:45:08.491 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 18:45:08.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 18:45:08.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 18:45:08.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 18:45:08.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 18:45:08.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 18:45:09.200 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 643.6927ms +2017-07-18 18:45:09.323 +05:30 [Information] Request finished in 2040.2004ms 200 application/json; charset=utf-8 +2017-07-18 18:45:09.327 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" completed keep alive response. +2017-07-18 18:46:20.029 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" received FIN. +2017-07-18 18:46:20.029 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" received FIN. +2017-07-18 18:46:20.031 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" disconnecting. +2017-07-18 18:46:20.038 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" sending FIN. +2017-07-18 18:46:20.048 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" sent FIN with status "0". +2017-07-18 18:46:20.063 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" disconnecting. +2017-07-18 18:46:20.066 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" sending FIN. +2017-07-18 18:46:20.070 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" sent FIN with status "0". +2017-07-18 18:46:20.066 +05:30 [Debug] Connection id ""0HL6DRS19PGL1"" stopped. +2017-07-18 18:46:20.073 +05:30 [Debug] Connection id ""0HL6DRS19PGL0"" stopped. +2017-07-18 18:46:20.082 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" started. +2017-07-18 18:46:20.091 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 18:46:20.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 18:46:20.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 18:46:23.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 18:46:27.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 18:46:27.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 18:46:27.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 18:46:27.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7859.571ms +2017-07-18 18:46:28.007 +05:30 [Information] Request finished in 7914.2117ms 200 application/json; charset=utf-8 +2017-07-18 18:46:28.008 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" completed keep alive response. +2017-07-18 18:47:16.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 18:47:16.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 18:47:16.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 18:47:22.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 18:47:22.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 18:47:22.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 18:47:22.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 18:47:22.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6105.1055ms +2017-07-18 18:47:22.196 +05:30 [Information] Request finished in 6114.974ms 200 application/json; charset=utf-8 +2017-07-18 18:47:22.197 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" completed keep alive response. +2017-07-18 18:49:07.120 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" received FIN. +2017-07-18 18:49:07.122 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" disconnecting. +2017-07-18 18:49:07.123 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" sending FIN. +2017-07-18 18:49:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" sent FIN with status "0". +2017-07-18 18:49:07.125 +05:30 [Debug] Connection id ""0HL6DRS19PGL2"" stopped. +2017-07-18 18:56:52.583 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" started. +2017-07-18 18:56:52.593 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 18:56:52.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 18:56:52.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 18:56:55.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 18:56:55.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 18:56:55.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 18:56:55.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 18:56:55.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3175.9791ms +2017-07-18 18:56:55.782 +05:30 [Information] Request finished in 3193.5311ms 200 application/json; charset=utf-8 +2017-07-18 18:56:55.784 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" completed keep alive response. +2017-07-18 18:59:07.120 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" received FIN. +2017-07-18 18:59:07.121 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" disconnecting. +2017-07-18 18:59:07.123 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" sending FIN. +2017-07-18 18:59:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" sent FIN with status "0". +2017-07-18 18:59:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL3"" stopped. +2017-07-18 19:08:53.178 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" started. +2017-07-18 19:08:53.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:08:53.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:08:53.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:08:56.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 19:08:56.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:08:56.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:08:56.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:08:56.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3401.2981ms +2017-07-18 19:08:56.591 +05:30 [Information] Request finished in 3407.6894ms 200 application/json; charset=utf-8 +2017-07-18 19:08:56.592 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" completed keep alive response. +2017-07-18 19:11:07.120 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" received FIN. +2017-07-18 19:11:07.121 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" disconnecting. +2017-07-18 19:11:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" sending FIN. +2017-07-18 19:11:07.125 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" sent FIN with status "0". +2017-07-18 19:11:07.126 +05:30 [Debug] Connection id ""0HL6DRS19PGL4"" stopped. +2017-07-18 19:11:24.303 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" started. +2017-07-18 19:11:24.322 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:11:24.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:11:24.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:11:28.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 19:11:28.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:11:28.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:11:28.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:11:29.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4549.5973ms +2017-07-18 19:11:29.303 +05:30 [Information] Request finished in 4854.7202ms 200 application/json; charset=utf-8 +2017-07-18 19:11:29.304 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" completed keep alive response. +2017-07-18 19:13:07.120 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" received FIN. +2017-07-18 19:13:07.121 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" disconnecting. +2017-07-18 19:13:07.123 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" sending FIN. +2017-07-18 19:13:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" sent FIN with status "0". +2017-07-18 19:13:07.125 +05:30 [Debug] Connection id ""0HL6DRS19PGL5"" stopped. +2017-07-18 19:13:30.541 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" started. +2017-07-18 19:13:30.556 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:13:30.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:13:30.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:13:34.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd23a912d5b"]) - ModelState is Valid +2017-07-18 19:13:34.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:13:34.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:13:34.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:13:34.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3872.3198ms +2017-07-18 19:13:34.445 +05:30 [Information] Request finished in 3887.7708ms 200 application/json; charset=utf-8 +2017-07-18 19:13:34.445 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" completed keep alive response. +2017-07-18 19:15:07.121 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" received FIN. +2017-07-18 19:15:07.121 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" disconnecting. +2017-07-18 19:15:07.122 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" sending FIN. +2017-07-18 19:15:07.123 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" sent FIN with status "0". +2017-07-18 19:15:07.124 +05:30 [Debug] Connection id ""0HL6DRS19PGL6"" stopped. +2017-07-18 19:34:54.874 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" started. +2017-07-18 19:34:54.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 19:34:54.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 19:34:54.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 19:34:57.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:34:57.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:34:57.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:34:57.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:34:57.697 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2809.0677ms +2017-07-18 19:34:57.700 +05:30 [Information] Request finished in 2823.5454ms 200 application/json; charset=utf-8 +2017-07-18 19:34:57.701 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:34:58.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:34:58.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:34:58.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:35:01.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:01.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:01.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:01.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:01.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3204.6513ms +2017-07-18 19:35:01.307 +05:30 [Information] Request finished in 3212.6301ms 200 application/json; charset=utf-8 +2017-07-18 19:35:01.307 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:01.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:01.383 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:01.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:04.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:04.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:04.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:04.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:04.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3127.7549ms +2017-07-18 19:35:04.516 +05:30 [Information] Request finished in 3134.0647ms 200 application/json; charset=utf-8 +2017-07-18 19:35:04.517 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:10.744 +05:30 [Debug] Connection id ""0HL6DRS19PGL8"" started. +2017-07-18 19:35:10.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:35:10.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:35:10.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:35:10.798 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:35:10.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:35:10.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:35:10.990 +05:30 [Debug] Connection id ""0HL6DRS19PGL9"" started. +2017-07-18 19:35:11.000 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:35:11.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:35:11.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:35:11.967 +05:30 [Debug] Connection id ""0HL6DRS19PGLA"" started. +2017-07-18 19:35:11.969 +05:30 [Debug] Connection id ""0HL6DRS19PGLB"" started. +2017-07-18 19:35:11.971 +05:30 [Debug] Connection id ""0HL6DRS19PGLC"" started. +2017-07-18 19:35:11.981 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:11.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:11.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:12.977 +05:30 [Debug] Connection id ""0HL6DRS19PGLD"" started. +2017-07-18 19:35:13.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:35:13.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:35:13.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:35:14.072 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:35:14.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:35:14.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:35:14.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:35:14.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:35:14.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:35:15.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:15.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:15.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:15.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:15.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:15.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4932.385ms +2017-07-18 19:35:15.723 +05:30 [Information] Request finished in 4989.8285ms 200 application/json; charset=utf-8 +2017-07-18 19:35:15.724 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:16.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:16.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:16.549 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:16.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:16.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:16.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3065.5291ms +2017-07-18 19:35:16.652 +05:30 [Information] Request finished in 3096.2004ms 200 application/json; charset=utf-8 +2017-07-18 19:35:16.652 +05:30 [Debug] Connection id ""0HL6DRS19PGLC"" completed keep alive response. +2017-07-18 19:35:16.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:16.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:16.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:16.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:16.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:16.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5808.9178ms +2017-07-18 19:35:16.815 +05:30 [Information] Request finished in 5818.6178ms 200 application/json; charset=utf-8 +2017-07-18 19:35:16.816 +05:30 [Debug] Connection id ""0HL6DRS19PGL9"" completed keep alive response. +2017-07-18 19:35:16.824 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:16.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:16.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:16.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:16.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:16.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:16.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:16.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6040.454ms +2017-07-18 19:35:16.848 +05:30 [Information] Request finished in 6076.5464ms 200 application/json; charset=utf-8 +2017-07-18 19:35:16.849 +05:30 [Debug] Connection id ""0HL6DRS19PGL8"" completed keep alive response. +2017-07-18 19:35:17.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:17.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:17.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:17.292 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:17.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:17.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:17.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5311.9426ms +2017-07-18 19:35:17.313 +05:30 [Information] Request finished in 5334.8456ms 200 application/json; charset=utf-8 +2017-07-18 19:35:17.315 +05:30 [Debug] Connection id ""0HL6DRS19PGLB"" completed keep alive response. +2017-07-18 19:35:17.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:35:17.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:17.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:17.748 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:17.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3146.8033ms +2017-07-18 19:35:17.765 +05:30 [Information] Request finished in 3157.7759ms 200 application/json; charset=utf-8 +2017-07-18 19:35:17.766 +05:30 [Debug] Connection id ""0HL6DRS19PGLD"" completed keep alive response. +2017-07-18 19:35:19.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:19.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:19.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:19.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:19.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5095.7504ms +2017-07-18 19:35:19.175 +05:30 [Information] Request finished in 5103.9527ms 200 application/json; charset=utf-8 +2017-07-18 19:35:19.175 +05:30 [Debug] Connection id ""0HL6DRS19PGLA"" completed keep alive response. +2017-07-18 19:35:19.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:19.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:19.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:19.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:19.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3117.6682ms +2017-07-18 19:35:19.950 +05:30 [Information] Request finished in 3126.2366ms 200 application/json; charset=utf-8 +2017-07-18 19:35:19.951 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:21.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:35:21.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:35:21.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:35:21.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:35:21.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:35:21.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:35:21.579 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:21.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:21.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:21.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:35:21.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:35:21.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:35:21.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:35:21.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:35:21.621 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:35:22.414 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:35:22.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:35:22.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:35:24.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:24.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:24.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:24.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:24.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:24.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3160.54ms +2017-07-18 19:35:24.298 +05:30 [Information] Request finished in 3168.437ms 200 application/json; charset=utf-8 +2017-07-18 19:35:24.298 +05:30 [Debug] Connection id ""0HL6DRS19PGL9"" completed keep alive response. +2017-07-18 19:35:24.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:24.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:24.449 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:24.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:24.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:24.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3314.9666ms +2017-07-18 19:35:24.456 +05:30 [Information] Request finished in 3326.3411ms 200 application/json; charset=utf-8 +2017-07-18 19:35:24.459 +05:30 [Debug] Connection id ""0HL6DRS19PGLC"" completed keep alive response. +2017-07-18 19:35:24.688 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:24.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:24.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:24.792 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:24.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:24.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:24.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3235.3587ms +2017-07-18 19:35:24.898 +05:30 [Information] Request finished in 3345.8308ms 200 application/json; charset=utf-8 +2017-07-18 19:35:24.900 +05:30 [Debug] Connection id ""0HL6DRS19PGLB"" completed keep alive response. +2017-07-18 19:35:24.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:25.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:25.032 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:25.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:25.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:25.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3421.8906ms +2017-07-18 19:35:25.045 +05:30 [Information] Request finished in 3515.0201ms 200 application/json; charset=utf-8 +2017-07-18 19:35:25.048 +05:30 [Debug] Connection id ""0HL6DRS19PGL8"" completed keep alive response. +2017-07-18 19:35:25.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:35:25.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:25.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:25.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:25.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3248.3296ms +2017-07-18 19:35:25.674 +05:30 [Information] Request finished in 3264.2554ms 200 application/json; charset=utf-8 +2017-07-18 19:35:25.675 +05:30 [Debug] Connection id ""0HL6DRS19PGLA"" completed keep alive response. +2017-07-18 19:35:25.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:25.914 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:25.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:25.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:25.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4296.3264ms +2017-07-18 19:35:25.924 +05:30 [Information] Request finished in 4398.2142ms 200 application/json; charset=utf-8 +2017-07-18 19:35:25.925 +05:30 [Debug] Connection id ""0HL6DRS19PGLD"" completed keep alive response. +2017-07-18 19:35:38.659 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:35:38.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:35:38.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:35:41.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:35:41.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:41.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:41.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:41.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3156.5937ms +2017-07-18 19:35:41.824 +05:30 [Information] Request finished in 3164.929ms 200 application/json; charset=utf-8 +2017-07-18 19:35:41.824 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:41.830 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:35:41.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:35:41.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:35:44.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:35:44.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:44.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:44.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:44.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3070.7948ms +2017-07-18 19:35:44.914 +05:30 [Information] Request finished in 3085.9826ms 200 application/json; charset=utf-8 +2017-07-18 19:35:44.914 +05:30 [Debug] Connection id ""0HL6DRS19PGL9"" completed keep alive response. +2017-07-18 19:35:44.927 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-18 19:35:44.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-18 19:35:44.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-18 19:35:48.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:35:48.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:48.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:48.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:48.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3079.725ms +2017-07-18 19:35:48.015 +05:30 [Information] Request finished in 3088.2358ms 200 application/json; charset=utf-8 +2017-07-18 19:35:48.015 +05:30 [Debug] Connection id ""0HL6DRS19PGLC"" completed keep alive response. +2017-07-18 19:35:48.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:35:48.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:35:48.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:35:51.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:51.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:51.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:51.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:51.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3103.6991ms +2017-07-18 19:35:51.135 +05:30 [Information] Request finished in 3110.3009ms 200 application/json; charset=utf-8 +2017-07-18 19:35:51.136 +05:30 [Debug] Connection id ""0HL6DRS19PGLB"" completed keep alive response. +2017-07-18 19:35:51.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:51.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:51.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:54.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:54.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:54.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:54.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:54.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3117.3679ms +2017-07-18 19:35:54.266 +05:30 [Information] Request finished in 3123.2292ms 200 application/json; charset=utf-8 +2017-07-18 19:35:54.266 +05:30 [Debug] Connection id ""0HL6DRS19PGL8"" completed keep alive response. +2017-07-18 19:35:55.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:35:55.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:35:55.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:35:55.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:35:55.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:35:55.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:35:56.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:35:56.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:35:56.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:35:56.113 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:35:56.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:35:56.123 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:35:56.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:35:56.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:35:56.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:35:56.812 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:35:56.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:35:56.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:35:58.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:58.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:58.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:58.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:58.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:58.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3155.334ms +2017-07-18 19:35:58.686 +05:30 [Information] Request finished in 3168.0411ms 200 application/json; charset=utf-8 +2017-07-18 19:35:58.687 +05:30 [Debug] Connection id ""0HL6DRS19PGLA"" completed keep alive response. +2017-07-18 19:35:58.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:58.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:58.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:58.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:58.792 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:58.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3273.1439ms +2017-07-18 19:35:58.796 +05:30 [Information] Request finished in 3279.6991ms 200 application/json; charset=utf-8 +2017-07-18 19:35:58.797 +05:30 [Debug] Connection id ""0HL6DRS19PGLD"" completed keep alive response. +2017-07-18 19:35:59.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:59.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:59.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:35:59.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:59.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:59.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:59.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:59.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3553.5952ms +2017-07-18 19:35:59.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:59.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:35:59.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:59.704 +05:30 [Information] Request finished in 3604.7325ms 200 application/json; charset=utf-8 +2017-07-18 19:35:59.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:59.706 +05:30 [Debug] Connection id ""0HL6DRS19PGL9"" completed keep alive response. +2017-07-18 19:35:59.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3597.588ms +2017-07-18 19:35:59.763 +05:30 [Information] Request finished in 3664.4806ms 200 application/json; charset=utf-8 +2017-07-18 19:35:59.766 +05:30 [Debug] Connection id ""0HL6DRS19PGL7"" completed keep alive response. +2017-07-18 19:35:59.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:35:59.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:35:59.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:35:59.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:35:59.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3059.5325ms +2017-07-18 19:35:59.916 +05:30 [Information] Request finished in 3117.3481ms 200 application/json; charset=utf-8 +2017-07-18 19:35:59.916 +05:30 [Debug] Connection id ""0HL6DRS19PGLB"" completed keep alive response. +2017-07-18 19:35:59.922 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:35:59.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:35:59.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:36:00.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:36:00.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:36:00.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:36:00.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:36:00.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4006.4886ms +2017-07-18 19:36:00.148 +05:30 [Information] Request finished in 4039.9385ms 200 application/json; charset=utf-8 +2017-07-18 19:36:00.149 +05:30 [Debug] Connection id ""0HL6DRS19PGLC"" completed keep alive response. +2017-07-18 19:36:02.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:36:02.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:36:02.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:36:02.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:36:03.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3069.2411ms +2017-07-18 19:36:03.006 +05:30 [Information] Request finished in 3086.5447ms 200 application/json; charset=utf-8 +2017-07-18 19:36:03.008 +05:30 [Debug] Connection id ""0HL6DRS19PGL8"" completed keep alive response. +2017-07-18 19:36:03.021 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:36:03.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:36:03.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:36:06.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:36:06.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:36:06.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:36:06.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:36:06.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3107.4663ms +2017-07-18 19:36:06.138 +05:30 [Information] Request finished in 3117.8328ms 200 application/json; charset=utf-8 +2017-07-18 19:36:06.139 +05:30 [Debug] Connection id ""0HL6DRS19PGLA"" completed keep alive response. +2017-07-18 19:36:28.324 +05:30 [Debug] Hosting starting +2017-07-18 19:36:28.557 +05:30 [Debug] Hosting started +2017-07-18 19:36:28.752 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" started. +2017-07-18 19:36:28.753 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" started. +2017-07-18 19:36:29.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:36:29.027 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:36:29.097 +05:30 [Information] Request finished in 119.303ms 200 +2017-07-18 19:36:29.166 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" completed keep alive response. +2017-07-18 19:36:30.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:36:30.490 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"54470a71-9181-46df-9054-e5f6d5890fb6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:36:30.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:36:30.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:36:30.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:36:31.047 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:36:31.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:36:31.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:36:31.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 788.0266ms +2017-07-18 19:36:31.612 +05:30 [Information] Request finished in 2651.2004ms 200 application/json; charset=utf-8 +2017-07-18 19:36:31.615 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" completed keep alive response. +2017-07-18 19:36:31.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 19:36:31.643 +05:30 [Debug] Request did not match any routes. +2017-07-18 19:36:31.668 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 19:36:31.672 +05:30 [Information] Request finished in 33.2251ms 404 +2017-07-18 19:36:31.673 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" completed keep alive response. +2017-07-18 19:36:35.287 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:36:35.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:36:35.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:36:38.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:36:45.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:36:45.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:36:45.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:36:45.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10182.5028ms +2017-07-18 19:36:45.560 +05:30 [Information] Request finished in 10253.7194ms 200 application/json; charset=utf-8 +2017-07-18 19:36:45.561 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" completed keep alive response. +2017-07-18 19:37:30.108 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:37:30.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:37:30.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:37:34.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:37:34.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:34.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:34.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:34.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3989.1806ms +2017-07-18 19:37:34.105 +05:30 [Information] Request finished in 4023.3526ms 200 application/json; charset=utf-8 +2017-07-18 19:37:34.106 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" completed keep alive response. +2017-07-18 19:37:38.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 19:37:38.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 19:37:38.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 19:37:41.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:37:42.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:42.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:42.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:42.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3460.7635ms +2017-07-18 19:37:42.262 +05:30 [Information] Request finished in 3476.3422ms 200 application/json; charset=utf-8 +2017-07-18 19:37:42.263 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" completed keep alive response. +2017-07-18 19:37:42.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:37:42.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:37:42.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:37:45.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:45.781 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:45.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:45.786 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:45.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3265.089ms +2017-07-18 19:37:45.805 +05:30 [Information] Request finished in 3272.2249ms 200 application/json; charset=utf-8 +2017-07-18 19:37:45.806 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" completed keep alive response. +2017-07-18 19:37:45.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:37:45.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:37:45.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:37:48.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:49.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:49.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:49.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:49.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3147.3774ms +2017-07-18 19:37:49.037 +05:30 [Information] Request finished in 3153.7286ms 200 application/json; charset=utf-8 +2017-07-18 19:37:49.038 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" completed keep alive response. +2017-07-18 19:37:51.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:37:51.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:37:51.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:37:51.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:37:51.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:37:51.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:37:51.968 +05:30 [Debug] Connection id ""0HL6DSONM86F3"" started. +2017-07-18 19:37:51.968 +05:30 [Debug] Connection id ""0HL6DSONM86F4"" started. +2017-07-18 19:37:51.974 +05:30 [Debug] Connection id ""0HL6DSONM86F5"" started. +2017-07-18 19:37:51.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:37:51.988 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:37:51.990 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:37:52.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:37:52.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:37:52.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:37:52.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:37:52.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:37:52.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:37:52.681 +05:30 [Debug] Connection id ""0HL6DSONM86F6"" started. +2017-07-18 19:37:53.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:37:53.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:37:53.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:37:55.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:55.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:55.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:55.398 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:37:55.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:55.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:55.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:55.424 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:37:55.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:55.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:55.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4114.6267ms +2017-07-18 19:37:55.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4143.4284ms +2017-07-18 19:37:55.452 +05:30 [Information] Request finished in 4196.0144ms 200 application/json; charset=utf-8 +2017-07-18 19:37:55.454 +05:30 [Debug] Connection id ""0HL6DSONM86F1"" completed keep alive response. +2017-07-18 19:37:55.459 +05:30 [Information] Request finished in 4200.3488ms 200 application/json; charset=utf-8 +2017-07-18 19:37:55.460 +05:30 [Debug] Connection id ""0HL6DSONM86F2"" completed keep alive response. +2017-07-18 19:37:56.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:56.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:56.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:56.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:37:56.461 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:37:56.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:56.467 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:37:56.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:56.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4463.1587ms +2017-07-18 19:37:56.490 +05:30 [Information] Request finished in 4506.4023ms 200 application/json; charset=utf-8 +2017-07-18 19:37:56.491 +05:30 [Debug] Connection id ""0HL6DSONM86F4"" completed keep alive response. +2017-07-18 19:37:56.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:56.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:56.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:56.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3358.868ms +2017-07-18 19:37:56.593 +05:30 [Information] Request finished in 3410.8104ms 200 application/json; charset=utf-8 +2017-07-18 19:37:56.593 +05:30 [Debug] Connection id ""0HL6DSONM86F6"" completed keep alive response. +2017-07-18 19:37:56.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:56.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:37:56.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:56.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:56.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4855.4085ms +2017-07-18 19:37:56.848 +05:30 [Information] Request finished in 4874.3052ms 200 application/json; charset=utf-8 +2017-07-18 19:37:56.849 +05:30 [Debug] Connection id ""0HL6DSONM86F3"" completed keep alive response. +2017-07-18 19:37:58.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:37:58.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:37:58.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:37:58.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:37:58.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6517.7418ms +2017-07-18 19:37:58.533 +05:30 [Information] Request finished in 6535.4944ms 200 application/json; charset=utf-8 +2017-07-18 19:37:58.534 +05:30 [Debug] Connection id ""0HL6DSONM86F5"" completed keep alive response. +2017-07-18 19:38:11.379 +05:30 [Debug] Hosting starting +2017-07-18 19:38:11.626 +05:30 [Debug] Hosting started +2017-07-18 19:38:11.856 +05:30 [Debug] Connection id ""0HL6DSPMDG35B"" started. +2017-07-18 19:38:11.856 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" started. +2017-07-18 19:38:12.040 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:38:12.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:38:12.116 +05:30 [Information] Request finished in 112.4807ms 200 +2017-07-18 19:38:12.182 +05:30 [Debug] Connection id ""0HL6DSPMDG35B"" completed keep alive response. +2017-07-18 19:38:12.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:38:12.772 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1107e025-51a4-40b0-ae5f-cf2c39baff5e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:38:12.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:38:12.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:38:12.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:38:12.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:38:13.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:38:13.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:38:13.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 634.8535ms +2017-07-18 19:38:13.635 +05:30 [Information] Request finished in 1647.4752ms 200 application/json; charset=utf-8 +2017-07-18 19:38:13.637 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" completed keep alive response. +2017-07-18 19:38:26.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:38:26.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:38:26.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:38:28.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:38:34.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:38:34.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:38:34.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:38:34.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8093.4207ms +2017-07-18 19:38:34.214 +05:30 [Information] Request finished in 8106.8846ms 200 application/json; charset=utf-8 +2017-07-18 19:38:34.214 +05:30 [Debug] Connection id ""0HL6DSPMDG35B"" completed keep alive response. +2017-07-18 19:38:34.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:38:34.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:38:34.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:38:38.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:38:38.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:38:38.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:38:38.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:38:38.427 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3635.0273ms +2017-07-18 19:38:38.465 +05:30 [Information] Request finished in 3735.974ms 200 application/json; charset=utf-8 +2017-07-18 19:38:38.465 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" completed keep alive response. +2017-07-18 19:38:38.869 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:38:38.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:38:38.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:38:41.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:38:41.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:38:41.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:38:41.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:38:42.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.193ms +2017-07-18 19:38:42.009 +05:30 [Information] Request finished in 3154.0633ms 200 application/json; charset=utf-8 +2017-07-18 19:38:42.010 +05:30 [Debug] Connection id ""0HL6DSPMDG35B"" completed keep alive response. +2017-07-18 19:38:55.941 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:38:55.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:38:55.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:39:01.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:39:01.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:39:01.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:39:01.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:39:01.445 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5499.5999ms +2017-07-18 19:39:01.452 +05:30 [Information] Request finished in 5509.5611ms 200 application/json; charset=utf-8 +2017-07-18 19:39:01.453 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" completed keep alive response. +2017-07-18 19:39:12.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:39:12.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:39:12.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:39:13.599 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:39:13.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:39:13.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:39:15.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:39:15.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:39:15.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:39:15.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:39:15.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2142.1448ms +2017-07-18 19:39:15.748 +05:30 [Information] Request finished in 2152.4676ms 200 application/json; charset=utf-8 +2017-07-18 19:39:15.748 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" completed keep alive response. +2017-07-18 19:39:17.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:39:17.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:39:17.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:39:17.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:39:17.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4957.2338ms +2017-07-18 19:39:17.887 +05:30 [Information] Request finished in 4972.3908ms 200 application/json; charset=utf-8 +2017-07-18 19:39:17.888 +05:30 [Debug] Connection id ""0HL6DSPMDG35B"" completed keep alive response. +2017-07-18 19:39:25.154 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:39:25.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:39:25.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:39:28.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:39:28.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:39:28.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:39:28.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:39:28.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.1368ms +2017-07-18 19:39:28.221 +05:30 [Information] Request finished in 3070.6375ms 200 application/json; charset=utf-8 +2017-07-18 19:39:28.222 +05:30 [Debug] Connection id ""0HL6DSPMDG35C"" completed keep alive response. +2017-07-18 19:39:55.601 +05:30 [Debug] Hosting starting +2017-07-18 19:39:55.841 +05:30 [Debug] Hosting started +2017-07-18 19:39:55.926 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" started. +2017-07-18 19:39:55.933 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" started. +2017-07-18 19:39:56.503 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:39:56.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:39:56.726 +05:30 [Information] Request finished in 164.8452ms 200 +2017-07-18 19:39:56.795 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:39:57.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:39:58.016 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3f00c3e8-bc83-44d1-b1e5-ece40857fa18"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:39:58.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:39:58.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:39:58.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:39:58.846 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:39:58.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:39:58.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:39:59.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 590.4671ms +2017-07-18 19:39:59.366 +05:30 [Information] Request finished in 2982.1365ms 200 application/json; charset=utf-8 +2017-07-18 19:39:59.370 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" completed keep alive response. +2017-07-18 19:40:10.288 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:40:10.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:40:10.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:40:13.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:40:19.800 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:40:19.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:40:19.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:40:20.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9944.9865ms +2017-07-18 19:40:20.264 +05:30 [Information] Request finished in 9976.0772ms 200 application/json; charset=utf-8 +2017-07-18 19:40:20.265 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:06.777 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" received FIN. +2017-07-18 19:41:06.789 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" disconnecting. +2017-07-18 19:41:06.789 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:41:06.791 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" sending FIN. +2017-07-18 19:41:06.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:41:06.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:41:06.813 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" sent FIN with status "0". +2017-07-18 19:41:06.888 +05:30 [Debug] Connection id ""0HL6DSQLE0UBI"" stopped. +2017-07-18 19:41:09.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:41:09.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:09.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:09.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:09.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3088.062ms +2017-07-18 19:41:09.913 +05:30 [Information] Request finished in 3137.8111ms 200 application/json; charset=utf-8 +2017-07-18 19:41:09.913 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:34.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 19:41:34.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 19:41:34.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 19:41:36.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:41:37.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:37.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:37.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:37.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2489.2844ms +2017-07-18 19:41:37.262 +05:30 [Information] Request finished in 2495.5939ms 200 application/json; charset=utf-8 +2017-07-18 19:41:37.262 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:37.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:41:37.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:41:37.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:41:40.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:40.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:40.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:40.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:40.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3256.753ms +2017-07-18 19:41:40.740 +05:30 [Information] Request finished in 3273.0095ms 200 application/json; charset=utf-8 +2017-07-18 19:41:40.741 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:40.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:41:40.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:41:40.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:41:43.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:43.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:43.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:43.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:43.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.3265ms +2017-07-18 19:41:43.958 +05:30 [Information] Request finished in 3136.0925ms 200 application/json; charset=utf-8 +2017-07-18 19:41:43.959 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:47.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:41:47.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:41:47.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:41:48.166 +05:30 [Debug] Connection id ""0HL6DSQLE0UBK"" started. +2017-07-18 19:41:48.169 +05:30 [Debug] Connection id ""0HL6DSQLE0UBL"" started. +2017-07-18 19:41:48.279 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:41:48.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:41:48.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:41:48.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:41:48.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:41:48.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:41:48.569 +05:30 [Debug] Connection id ""0HL6DSQLE0UBM"" started. +2017-07-18 19:41:48.571 +05:30 [Debug] Connection id ""0HL6DSQLE0UBN"" started. +2017-07-18 19:41:48.582 +05:30 [Debug] Connection id ""0HL6DSQLE0UBO"" started. +2017-07-18 19:41:48.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:41:48.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:41:48.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:41:48.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:41:48.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:41:48.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:41:49.437 +05:30 [Debug] Connection id ""0HL6DSQLE0UBP"" started. +2017-07-18 19:41:51.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:41:51.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:41:51.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:41:52.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:41:52.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:41:52.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:41:53.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:41:53.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:53.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:53.498 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:53.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1317.147ms +2017-07-18 19:41:53.501 +05:30 [Information] Request finished in 1324.3332ms 200 application/json; charset=utf-8 +2017-07-18 19:41:53.502 +05:30 [Debug] Connection id ""0HL6DSQLE0UBP"" completed keep alive response. +2017-07-18 19:41:54.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:54.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:54.283 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:54.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:54.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:54.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:54.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:54.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:54.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:41:54.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6522.5847ms +2017-07-18 19:41:54.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:54.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:54.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:41:54.538 +05:30 [Information] Request finished in 6602.4488ms 200 application/json; charset=utf-8 +2017-07-18 19:41:54.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:54.547 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:41:54.584 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:41:54.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:41:54.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:41:54.570 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:54.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:54.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:54.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6363.5625ms +2017-07-18 19:41:54.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:41:54.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:54.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6426.4958ms +2017-07-18 19:41:54.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:54.732 +05:30 [Information] Request finished in 6547.4225ms 200 application/json; charset=utf-8 +2017-07-18 19:41:54.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3553.0818ms +2017-07-18 19:41:54.735 +05:30 [Debug] Connection id ""0HL6DSQLE0UBK"" completed keep alive response. +2017-07-18 19:41:54.742 +05:30 [Information] Request finished in 6557.6224ms 200 application/json; charset=utf-8 +2017-07-18 19:41:54.751 +05:30 [Information] Request finished in 3567.9368ms 200 application/json; charset=utf-8 +2017-07-18 19:41:54.755 +05:30 [Debug] Connection id ""0HL6DSQLE0UBL"" completed keep alive response. +2017-07-18 19:41:54.764 +05:30 [Debug] Connection id ""0HL6DSQLE0UBN"" completed keep alive response. +2017-07-18 19:41:55.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:55.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:55.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:55.579 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:41:55.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:55.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:55.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7021.7386ms +2017-07-18 19:41:55.666 +05:30 [Information] Request finished in 7070.6041ms 200 application/json; charset=utf-8 +2017-07-18 19:41:55.666 +05:30 [Debug] Connection id ""0HL6DSQLE0UBO"" completed keep alive response. +2017-07-18 19:41:57.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:57.354 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:41:57.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:57.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:57.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8772.6803ms +2017-07-18 19:41:57.380 +05:30 [Information] Request finished in 8794.7708ms 200 application/json; charset=utf-8 +2017-07-18 19:41:57.381 +05:30 [Debug] Connection id ""0HL6DSQLE0UBM"" completed keep alive response. +2017-07-18 19:41:57.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:41:57.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:41:57.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:41:57.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:41:57.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3164.0417ms +2017-07-18 19:41:57.772 +05:30 [Information] Request finished in 3202.0862ms 200 application/json; charset=utf-8 +2017-07-18 19:41:57.773 +05:30 [Debug] Connection id ""0HL6DSQLE0UBP"" completed keep alive response. +2017-07-18 19:41:58.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:41:58.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:41:58.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:41:58.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:41:58.987 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:41:58.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:41:59.506 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:41:59.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:41:59.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:41:59.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:41:59.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:41:59.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:41:59.522 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:41:59.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:41:59.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:42:00.116 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:42:00.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:42:00.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:42:00.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:42:00.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:00.271 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:00.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:00.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:00.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1283.3677ms +2017-07-18 19:42:00.279 +05:30 [Information] Request finished in 1314.9576ms 200 application/json; charset=utf-8 +2017-07-18 19:42:00.279 +05:30 [Debug] Connection id ""0HL6DSQLE0UBJ"" completed keep alive response. +2017-07-18 19:42:02.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:42:02.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:02.369 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:02.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:02.371 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:02.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3383.4548ms +2017-07-18 19:42:02.376 +05:30 [Information] Request finished in 3412.389ms 200 application/json; charset=utf-8 +2017-07-18 19:42:02.377 +05:30 [Debug] Connection id ""0HL6DSQLE0UBK"" completed keep alive response. +2017-07-18 19:42:02.685 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:42:02.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:42:02.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:42:02.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:02.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:02.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:02.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:02.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3358.385ms +2017-07-18 19:42:02.951 +05:30 [Information] Request finished in 3448.2732ms 200 application/json; charset=utf-8 +2017-07-18 19:42:02.952 +05:30 [Debug] Connection id ""0HL6DSQLE0UBO"" completed keep alive response. +2017-07-18 19:42:03.051 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:03.051 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:03.052 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:03.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:03.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3536.6667ms +2017-07-18 19:42:03.061 +05:30 [Information] Request finished in 3562.8612ms 200 application/json; charset=utf-8 +2017-07-18 19:42:03.062 +05:30 [Debug] Connection id ""0HL6DSQLE0UBN"" completed keep alive response. +2017-07-18 19:42:03.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:42:03.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:03.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:03.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:03.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3129.0047ms +2017-07-18 19:42:03.257 +05:30 [Information] Request finished in 3181.6162ms 200 application/json; charset=utf-8 +2017-07-18 19:42:03.258 +05:30 [Debug] Connection id ""0HL6DSQLE0UBM"" completed keep alive response. +2017-07-18 19:42:03.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:03.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:03.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:03.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:03.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4057.9665ms +2017-07-18 19:42:03.581 +05:30 [Information] Request finished in 4081.3734ms 200 application/json; charset=utf-8 +2017-07-18 19:42:03.581 +05:30 [Debug] Connection id ""0HL6DSQLE0UBL"" completed keep alive response. +2017-07-18 19:42:17.440 +05:30 [Debug] Hosting starting +2017-07-18 19:42:17.653 +05:30 [Debug] Hosting started +2017-07-18 19:42:17.839 +05:30 [Debug] Connection id ""0HL6DSRVNDMD5"" started. +2017-07-18 19:42:17.839 +05:30 [Debug] Connection id ""0HL6DSRVNDMD4"" started. +2017-07-18 19:42:18.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:42:18.034 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:42:18.104 +05:30 [Information] Request finished in 97.7071ms 200 +2017-07-18 19:42:18.178 +05:30 [Debug] Connection id ""0HL6DSRVNDMD5"" completed keep alive response. +2017-07-18 19:42:18.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:42:18.735 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f5b39ba5-0d29-41cc-9098-4a24267b26f8"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:42:18.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:42:19.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:42:19.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:42:19.116 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:42:19.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:19.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:19.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 465.0518ms +2017-07-18 19:42:19.468 +05:30 [Information] Request finished in 1479.0338ms 200 application/json; charset=utf-8 +2017-07-18 19:42:19.470 +05:30 [Debug] Connection id ""0HL6DSRVNDMD4"" completed keep alive response. +2017-07-18 19:42:28.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:42:28.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:42:28.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:42:32.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:42:41.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:42:41.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:42:41.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:42:41.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13077.0037ms +2017-07-18 19:42:42.222 +05:30 [Information] Request finished in 13221.2412ms 200 application/json; charset=utf-8 +2017-07-18 19:42:42.223 +05:30 [Debug] Connection id ""0HL6DSRVNDMD5"" completed keep alive response. +2017-07-18 19:43:56.539 +05:30 [Debug] Hosting starting +2017-07-18 19:43:56.820 +05:30 [Debug] Hosting started +2017-07-18 19:43:57.038 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" started. +2017-07-18 19:43:57.039 +05:30 [Debug] Connection id ""0HL6DSST9E3TM"" started. +2017-07-18 19:43:57.388 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:43:57.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:43:57.480 +05:30 [Information] Request finished in 148.8715ms 200 +2017-07-18 19:43:57.553 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" completed keep alive response. +2017-07-18 19:43:59.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:43:59.163 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e1567004-08d0-405d-84d8-3c15d13399c4"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:43:59.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:43:59.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:43:59.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:44:00.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:44:00.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:44:00.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:44:04.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 3424.3217ms +2017-07-18 19:44:05.803 +05:30 [Information] Request finished in 8456.2685ms 200 application/json; charset=utf-8 +2017-07-18 19:44:05.806 +05:30 [Debug] Connection id ""0HL6DSST9E3TM"" completed keep alive response. +2017-07-18 19:44:06.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-18 19:44:06.388 +05:30 [Debug] Request did not match any routes. +2017-07-18 19:44:06.406 +05:30 [Debug] The request path "" does not match the path filter +2017-07-18 19:44:06.410 +05:30 [Information] Request finished in 24.2173ms 404 +2017-07-18 19:44:06.412 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" completed keep alive response. +2017-07-18 19:44:07.593 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:44:07.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:44:07.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:44:09.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:44:15.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:44:15.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:44:15.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:44:15.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7589.5232ms +2017-07-18 19:44:15.200 +05:30 [Information] Request finished in 7605.93ms 200 application/json; charset=utf-8 +2017-07-18 19:44:15.201 +05:30 [Debug] Connection id ""0HL6DSST9E3TM"" completed keep alive response. +2017-07-18 19:44:34.562 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:44:34.562 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:44:34.564 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:44:37.442 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:44:37.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:44:37.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:44:38.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:44:38.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:44:38.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:44:38.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:44:38.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3558.8884ms +2017-07-18 19:44:38.127 +05:30 [Information] Request finished in 3568.936ms 200 application/json; charset=utf-8 +2017-07-18 19:44:38.128 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" completed keep alive response. +2017-07-18 19:44:40.492 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:44:40.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:44:40.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:44:40.499 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:44:40.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.0765ms +2017-07-18 19:44:40.505 +05:30 [Information] Request finished in 3063.5096ms 200 application/json; charset=utf-8 +2017-07-18 19:44:40.506 +05:30 [Debug] Connection id ""0HL6DSST9E3TM"" completed keep alive response. +2017-07-18 19:44:40.640 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:44:40.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:44:40.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:44:42.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:44:42.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:44:42.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:44:42.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:44:42.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2119.3325ms +2017-07-18 19:44:42.765 +05:30 [Information] Request finished in 2127.1176ms 200 application/json; charset=utf-8 +2017-07-18 19:44:42.765 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" completed keep alive response. +2017-07-18 19:44:58.590 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:44:58.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:44:58.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:45:00.230 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:45:00.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:45:00.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:45:00.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:45:00.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:45:00.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:45:00.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:45:00.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2279.3339ms +2017-07-18 19:45:00.894 +05:30 [Information] Request finished in 2304.6104ms 200 application/json; charset=utf-8 +2017-07-18 19:45:00.895 +05:30 [Debug] Connection id ""0HL6DSST9E3TM"" completed keep alive response. +2017-07-18 19:45:04.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:45:04.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:45:04.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:45:14.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:45:14.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14025.0331ms +2017-07-18 19:45:14.380 +05:30 [Information] Request finished in 14386.0018ms 200 application/json; charset=utf-8 +2017-07-18 19:45:14.385 +05:30 [Debug] Connection id ""0HL6DSST9E3TL"" completed keep alive response. +2017-07-18 19:45:42.238 +05:30 [Debug] Hosting starting +2017-07-18 19:45:42.515 +05:30 [Debug] Hosting started +2017-07-18 19:45:42.617 +05:30 [Debug] Connection id ""0HL6DSTSOA97A"" started. +2017-07-18 19:45:42.617 +05:30 [Debug] Connection id ""0HL6DSTSOA979"" started. +2017-07-18 19:45:42.815 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:45:42.815 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:45:42.969 +05:30 [Information] Request finished in 124.7005ms 200 +2017-07-18 19:45:43.162 +05:30 [Debug] Connection id ""0HL6DSTSOA97A"" completed keep alive response. +2017-07-18 19:45:44.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:45:44.062 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0b4203c5-22a5-408b-bb1b-aba884b21454"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:45:44.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:45:44.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:45:44.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:45:44.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:45:44.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:45:44.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:45:52.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 8271.2562ms +2017-07-18 19:45:52.711 +05:30 [Information] Request finished in 9956.6249ms 200 application/json; charset=utf-8 +2017-07-18 19:45:52.714 +05:30 [Debug] Connection id ""0HL6DSTSOA979"" completed keep alive response. +2017-07-18 19:45:55.873 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:45:55.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:45:55.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:45:59.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:46:05.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:46:05.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:46:05.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:46:05.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9383.1152ms +2017-07-18 19:46:05.315 +05:30 [Information] Request finished in 9450.3523ms 200 application/json; charset=utf-8 +2017-07-18 19:46:05.323 +05:30 [Debug] Connection id ""0HL6DSTSOA97A"" completed keep alive response. +2017-07-18 19:46:23.518 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:46:23.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:46:23.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:46:25.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:46:25.319 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:46:25.323 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:46:26.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:46:26.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:46:26.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:46:26.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:46:27.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3566.154ms +2017-07-18 19:46:27.097 +05:30 [Information] Request finished in 3588.825ms 200 application/json; charset=utf-8 +2017-07-18 19:46:27.098 +05:30 [Debug] Connection id ""0HL6DSTSOA979"" completed keep alive response. +2017-07-18 19:46:28.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:46:28.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:46:28.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:46:28.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:46:28.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3600.6153ms +2017-07-18 19:46:28.929 +05:30 [Information] Request finished in 3622.2812ms 200 application/json; charset=utf-8 +2017-07-18 19:46:28.930 +05:30 [Debug] Connection id ""0HL6DSTSOA97A"" completed keep alive response. +2017-07-18 19:47:31.801 +05:30 [Debug] Hosting starting +2017-07-18 19:47:31.989 +05:30 [Debug] Hosting started +2017-07-18 19:47:32.124 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" started. +2017-07-18 19:47:32.124 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" started. +2017-07-18 19:47:32.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:47:32.366 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:47:32.559 +05:30 [Information] Request finished in 191.9469ms 200 +2017-07-18 19:47:32.624 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" completed keep alive response. +2017-07-18 19:47:33.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:47:33.418 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cea9ae59-1b6b-42f6-a49d-1659ab701696"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:47:33.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:47:33.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:47:33.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:47:33.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:47:33.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:47:33.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:47:34.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 531.0859ms +2017-07-18 19:47:34.273 +05:30 [Information] Request finished in 2014.3631ms 200 application/json; charset=utf-8 +2017-07-18 19:47:34.276 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" completed keep alive response. +2017-07-18 19:47:41.607 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:47:41.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:47:41.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:47:45.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:47:50.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:47:50.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:47:50.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:47:50.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9090.8212ms +2017-07-18 19:47:50.727 +05:30 [Information] Request finished in 9120.8759ms 200 application/json; charset=utf-8 +2017-07-18 19:47:50.728 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" completed keep alive response. +2017-07-18 19:48:02.977 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:48:02.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:48:02.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:48:05.476 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:48:05.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:48:05.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:48:06.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:48:06.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:48:06.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:48:06.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:48:06.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3588.9839ms +2017-07-18 19:48:06.587 +05:30 [Information] Request finished in 3616.649ms 200 application/json; charset=utf-8 +2017-07-18 19:48:06.588 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" completed keep alive response. +2017-07-18 19:48:08.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:48:08.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:48:08.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:48:08.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:48:08.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3491.4817ms +2017-07-18 19:48:08.990 +05:30 [Information] Request finished in 3511.2836ms 200 application/json; charset=utf-8 +2017-07-18 19:48:08.991 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" completed keep alive response. +2017-07-18 19:49:32.100 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" received FIN. +2017-07-18 19:49:32.100 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" received FIN. +2017-07-18 19:49:32.104 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" disconnecting. +2017-07-18 19:49:32.107 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" sending FIN. +2017-07-18 19:49:32.104 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" disconnecting. +2017-07-18 19:49:32.119 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" sending FIN. +2017-07-18 19:49:32.124 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" sent FIN with status "0". +2017-07-18 19:49:32.124 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" sent FIN with status "0". +2017-07-18 19:49:32.127 +05:30 [Debug] Connection id ""0HL6DSUTCL834"" stopped. +2017-07-18 19:49:32.127 +05:30 [Debug] Connection id ""0HL6DSUTCL835"" stopped. +2017-07-18 19:49:58.320 +05:30 [Debug] Hosting starting +2017-07-18 19:49:58.653 +05:30 [Debug] Hosting started +2017-07-18 19:49:58.747 +05:30 [Debug] Connection id ""0HL6DT092VERS"" started. +2017-07-18 19:49:58.749 +05:30 [Debug] Connection id ""0HL6DT092VERT"" started. +2017-07-18 19:49:58.940 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:49:58.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:49:59.024 +05:30 [Information] Request finished in 121.3696ms 200 +2017-07-18 19:49:59.090 +05:30 [Debug] Connection id ""0HL6DT092VERT"" completed keep alive response. +2017-07-18 19:50:00.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:50:00.201 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d0feb53c-2364-4308-a9b6-47c5a38a6154"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:50:00.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:50:00.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:50:00.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:50:00.529 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:50:00.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:50:00.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:50:00.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 662.2833ms +2017-07-18 19:50:01.151 +05:30 [Information] Request finished in 2232.5714ms 200 application/json; charset=utf-8 +2017-07-18 19:50:01.160 +05:30 [Debug] Connection id ""0HL6DT092VERS"" completed keep alive response. +2017-07-18 19:50:07.071 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:50:07.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:50:07.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:50:10.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:50:14.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:50:14.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:50:14.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:50:14.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7659.9658ms +2017-07-18 19:50:14.776 +05:30 [Information] Request finished in 7705.206ms 200 application/json; charset=utf-8 +2017-07-18 19:50:14.777 +05:30 [Debug] Connection id ""0HL6DT092VERT"" completed keep alive response. +2017-07-18 19:50:25.867 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 19:50:25.868 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 19:50:25.871 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 19:50:27.150 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:50:27.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:50:27.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:50:29.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:50:29.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:50:29.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:50:29.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:50:29.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3382.3054ms +2017-07-18 19:50:29.257 +05:30 [Information] Request finished in 3411.5047ms 200 application/json; charset=utf-8 +2017-07-18 19:50:29.257 +05:30 [Debug] Connection id ""0HL6DT092VERS"" completed keep alive response. +2017-07-18 19:50:31.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:50:31.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:50:31.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:50:31.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:50:31.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3974.7788ms +2017-07-18 19:50:31.133 +05:30 [Information] Request finished in 3982.7403ms 200 application/json; charset=utf-8 +2017-07-18 19:50:31.133 +05:30 [Debug] Connection id ""0HL6DT092VERT"" completed keep alive response. +2017-07-18 19:56:18.703 +05:30 [Debug] Hosting starting +2017-07-18 19:56:19.031 +05:30 [Debug] Hosting started +2017-07-18 19:56:19.152 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" started. +2017-07-18 19:56:19.152 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" started. +2017-07-18 19:56:19.413 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:56:19.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:56:19.578 +05:30 [Information] Request finished in 165.948ms 200 +2017-07-18 19:56:19.688 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" completed keep alive response. +2017-07-18 19:56:20.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:56:20.639 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a257129f-8561-407b-9b49-c9e715c0fb72"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:56:21.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:56:21.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:56:21.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:56:21.340 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:56:21.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:56:21.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:56:21.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 599.7287ms +2017-07-18 19:56:21.740 +05:30 [Information] Request finished in 2421.8877ms 200 application/json; charset=utf-8 +2017-07-18 19:56:21.743 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" completed keep alive response. +2017-07-18 19:56:28.641 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:56:28.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:56:28.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:56:32.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:56:37.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:56:37.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:56:37.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:56:37.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8795.574ms +2017-07-18 19:56:37.477 +05:30 [Information] Request finished in 8840.175ms 200 application/json; charset=utf-8 +2017-07-18 19:56:37.477 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" completed keep alive response. +2017-07-18 19:57:39.759 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" received FIN. +2017-07-18 19:57:39.772 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" received FIN. +2017-07-18 19:57:39.775 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" disconnecting. +2017-07-18 19:57:39.797 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" sending FIN. +2017-07-18 19:57:39.798 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" started. +2017-07-18 19:57:39.810 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" disconnecting. +2017-07-18 19:57:39.812 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" sent FIN with status "0". +2017-07-18 19:57:39.812 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" sending FIN. +2017-07-18 19:57:39.835 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" sent FIN with status "0". +2017-07-18 19:57:39.906 +05:30 [Debug] Connection id ""0HL6DT3QEPP2N"" stopped. +2017-07-18 19:57:39.909 +05:30 [Debug] Connection id ""0HL6DT3QEPP2O"" stopped. +2017-07-18 19:57:39.898 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:57:39.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:57:39.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:57:43.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:57:43.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:57:43.300 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:57:43.301 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:57:43.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3388.1325ms +2017-07-18 19:57:43.306 +05:30 [Information] Request finished in 3495.0725ms 200 application/json; charset=utf-8 +2017-07-18 19:57:43.306 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:58:14.553 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:58:14.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:58:14.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:58:17.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:58:17.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:58:17.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:58:17.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:58:17.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.0325ms +2017-07-18 19:58:17.632 +05:30 [Information] Request finished in 3081.1132ms 200 application/json; charset=utf-8 +2017-07-18 19:58:17.632 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:58:53.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 19:58:53.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 19:58:53.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 19:59:03.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 19:59:03.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:03.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:03.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:03.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10609.4757ms +2017-07-18 19:59:03.622 +05:30 [Information] Request finished in 10615.4777ms 200 application/json; charset=utf-8 +2017-07-18 19:59:03.623 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:59:11.395 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-18 19:59:11.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-18 19:59:11.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-18 19:59:14.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 19:59:14.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:14.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:14.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:14.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3465.3835ms +2017-07-18 19:59:14.866 +05:30 [Information] Request finished in 3471.6993ms 200 application/json; charset=utf-8 +2017-07-18 19:59:14.867 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:59:22.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-18 19:59:22.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-18 19:59:22.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-18 19:59:24.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:24.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:24.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:24.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:24.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2356.2184ms +2017-07-18 19:59:24.969 +05:30 [Information] Request finished in 2365.1626ms 200 application/json; charset=utf-8 +2017-07-18 19:59:24.970 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:59:25.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:59:25.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:59:25.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:59:28.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:28.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:28.209 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:28.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:28.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3147.8088ms +2017-07-18 19:59:28.231 +05:30 [Information] Request finished in 3155.9372ms 200 application/json; charset=utf-8 +2017-07-18 19:59:28.232 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:59:30.557 +05:30 [Debug] Connection id ""0HL6DT3QEPP2Q"" started. +2017-07-18 19:59:30.579 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-18 19:59:30.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-18 19:59:30.582 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-18 19:59:30.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-18 19:59:30.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-18 19:59:30.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-18 19:59:31.393 +05:30 [Debug] Connection id ""0HL6DT3QEPP2R"" started. +2017-07-18 19:59:31.401 +05:30 [Debug] Connection id ""0HL6DT3QEPP2S"" started. +2017-07-18 19:59:31.407 +05:30 [Debug] Connection id ""0HL6DT3QEPP2T"" started. +2017-07-18 19:59:31.412 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-18 19:59:31.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-18 19:59:31.413 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-18 19:59:31.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-18 19:59:31.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-18 19:59:31.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-18 19:59:34.342 +05:30 [Debug] Connection id ""0HL6DT3QEPP2U"" started. +2017-07-18 19:59:34.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-18 19:59:34.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-18 19:59:34.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-18 19:59:35.084 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-18 19:59:35.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-18 19:59:35.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-18 19:59:37.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:37.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:37.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:37.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:37.450 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:37.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:37.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:37.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:37.558 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6928.5304ms +2017-07-18 19:59:37.693 +05:30 [Information] Request finished in 7057.8904ms 200 application/json; charset=utf-8 +2017-07-18 19:59:37.693 +05:30 [Debug] Connection id ""0HL6DT3QEPP2P"" completed keep alive response. +2017-07-18 19:59:37.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:37.727 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:37.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:37.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:37.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:37.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:37.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:37.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:37.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6351.0501ms +2017-07-18 19:59:37.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-18 19:59:37.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7229.1601ms +2017-07-18 19:59:37.840 +05:30 [Information] Request finished in 6429.6122ms 200 application/json; charset=utf-8 +2017-07-18 19:59:37.842 +05:30 [Debug] Connection id ""0HL6DT3QEPP2R"" completed keep alive response. +2017-07-18 19:59:37.915 +05:30 [Information] Request finished in 7323.6128ms 200 application/json; charset=utf-8 +2017-07-18 19:59:37.916 +05:30 [Debug] Connection id ""0HL6DT3QEPP2Q"" completed keep alive response. +2017-07-18 19:59:38.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:38.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:38.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:38.051 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:38.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6707.8963ms +2017-07-18 19:59:38.136 +05:30 [Information] Request finished in 6733.3516ms 200 application/json; charset=utf-8 +2017-07-18 19:59:38.136 +05:30 [Debug] Connection id ""0HL6DT3QEPP2S"" completed keep alive response. +2017-07-18 19:59:38.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-18 19:59:38.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:38.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:38.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:38.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3298.7899ms +2017-07-18 19:59:38.391 +05:30 [Information] Request finished in 3313.2331ms 200 application/json; charset=utf-8 +2017-07-18 19:59:38.392 +05:30 [Debug] Connection id ""0HL6DT3QEPP2U"" completed keep alive response. +2017-07-18 19:59:39.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 19:59:39.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:39.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:39.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 19:59:39.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5337.7762ms +2017-07-18 19:59:39.890 +05:30 [Information] Request finished in 5355.5146ms 200 application/json; charset=utf-8 +2017-07-18 19:59:39.890 +05:30 [Debug] Connection id ""0HL6DT3QEPP2T"" completed keep alive response. +2017-07-18 19:59:57.226 +05:30 [Debug] Hosting starting +2017-07-18 19:59:57.537 +05:30 [Debug] Hosting started +2017-07-18 19:59:57.624 +05:30 [Debug] Connection id ""0HL6DT5RIAT2O"" started. +2017-07-18 19:59:57.624 +05:30 [Debug] Connection id ""0HL6DT5RIAT2N"" started. +2017-07-18 19:59:57.814 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-18 19:59:57.814 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-18 19:59:57.910 +05:30 [Information] Request finished in 94.8297ms 200 +2017-07-18 19:59:57.982 +05:30 [Debug] Connection id ""0HL6DT5RIAT2O"" completed keep alive response. +2017-07-18 19:59:58.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-18 19:59:58.665 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f510b101-073e-48ce-b837-f03d15f0c927"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-18 19:59:59.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-18 19:59:59.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-18 19:59:59.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-18 19:59:59.528 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-18 19:59:59.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 19:59:59.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 20:00:04.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 20:00:04.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 20:00:04.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 20:00:04.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5513.6422ms +2017-07-18 20:00:04.956 +05:30 [Information] Request finished in 7205.0241ms 200 application/json; charset=utf-8 +2017-07-18 20:00:04.959 +05:30 [Debug] Connection id ""0HL6DT5RIAT2N"" completed keep alive response. +2017-07-18 20:00:08.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-18 20:00:12.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 20:00:12.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 20:00:12.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 20:00:12.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7619.9547ms +2017-07-18 20:00:12.479 +05:30 [Information] Request finished in 7685.6508ms 200 application/json; charset=utf-8 +2017-07-18 20:00:12.481 +05:30 [Debug] Connection id ""0HL6DT5RIAT2O"" completed keep alive response. +2017-07-18 20:00:23.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-18 20:00:23.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-18 20:00:23.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-18 20:00:29.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-18 20:00:29.222 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-18 20:00:29.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-18 20:00:29.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-18 20:00:29.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-18 20:00:29.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-18 20:00:29.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-18 20:00:29.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6243.2775ms +2017-07-18 20:00:29.318 +05:30 [Information] Request finished in 6251.692ms 200 application/json; charset=utf-8 +2017-07-18 20:00:29.318 +05:30 [Debug] Connection id ""0HL6DT5RIAT2N"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170719.txt b/src/Api.Socioboard/wwwroot/log/log-20170719.txt new file mode 100644 index 000000000..c52ac05cf --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170719.txt @@ -0,0 +1,19663 @@ +2017-07-19 11:29:12.308 +05:30 [Debug] Hosting starting +2017-07-19 11:29:12.754 +05:30 [Debug] Hosting started +2017-07-19 11:29:12.801 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" started. +2017-07-19 11:29:12.801 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" started. +2017-07-19 11:29:13.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 11:29:13.047 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 11:29:13.270 +05:30 [Information] Request finished in 300.6244ms 200 +2017-07-19 11:29:13.375 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" completed keep alive response. +2017-07-19 11:29:14.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 11:29:14.771 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b8008f7c-f821-4d3b-b1b4-a5cb359a6a83"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 11:29:14.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 11:29:15.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 11:29:15.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 11:29:15.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:29:15.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:29:15.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:32:08.873 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" received FIN. +2017-07-19 11:32:08.879 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" received FIN. +2017-07-19 11:32:09.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 173977.2909ms +2017-07-19 11:32:09.132 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" disconnecting. +2017-07-19 11:32:09.150 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" sending FIN. +2017-07-19 11:32:09.159 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" sent FIN with status "0". +2017-07-19 11:32:09.163 +05:30 [Debug] Connection id ""0HL6EDD3T3L1C"" stopped. +2017-07-19 11:32:09.303 +05:30 [Information] Request finished in 176346.0988ms 200 application/json; charset=utf-8 +2017-07-19 11:32:09.311 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" completed keep alive response. +2017-07-19 11:32:09.311 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" disconnecting. +2017-07-19 11:32:09.318 +05:30 [Information] Connection id ""0HL6EDD3T3L1D"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 11:32:09.321 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" sending FIN. +2017-07-19 11:32:09.322 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" sent FIN with status "0". +2017-07-19 11:32:09.327 +05:30 [Debug] Connection id ""0HL6EDD3T3L1D"" stopped. +2017-07-19 11:32:12.830 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" started. +2017-07-19 11:32:12.865 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:32:12.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:32:12.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:32:16.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:32:22.579 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:32:22.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:32:22.709 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:32:23.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10121.5253ms +2017-07-19 11:32:23.297 +05:30 [Information] Request finished in 10422.7728ms 200 application/json; charset=utf-8 +2017-07-19 11:32:23.298 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" completed keep alive response. +2017-07-19 11:32:36.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:32:36.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:32:36.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:32:38.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:32:38.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:32:38.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:32:38.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:32:38.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2349.7217ms +2017-07-19 11:32:38.692 +05:30 [Information] Request finished in 2367.282ms 200 application/json; charset=utf-8 +2017-07-19 11:32:38.692 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" completed keep alive response. +2017-07-19 11:35:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" received FIN. +2017-07-19 11:35:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" disconnecting. +2017-07-19 11:35:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" sending FIN. +2017-07-19 11:35:12.779 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" sent FIN with status "0". +2017-07-19 11:35:12.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1E"" stopped. +2017-07-19 11:40:38.881 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" started. +2017-07-19 11:40:38.907 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:40:38.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:40:38.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:40:42.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:40:42.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:40:42.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:40:42.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:40:42.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3266.5241ms +2017-07-19 11:40:42.185 +05:30 [Information] Request finished in 3291.1063ms 200 application/json; charset=utf-8 +2017-07-19 11:40:42.185 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:20.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 53 +2017-07-19 11:41:20.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:41:20.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:41:22.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:41:22.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:22.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:22.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:22.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2181.6562ms +2017-07-19 11:41:22.796 +05:30 [Information] Request finished in 2193.3908ms 200 application/json; charset=utf-8 +2017-07-19 11:41:22.797 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:39.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:41:39.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:41:39.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:41:42.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:41:42.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:42.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:42.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:42.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3406.886ms +2017-07-19 11:41:42.861 +05:30 [Information] Request finished in 3413.4318ms 200 application/json; charset=utf-8 +2017-07-19 11:41:42.861 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:42.981 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:41:42.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:41:42.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:41:45.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:45.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:45.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:45.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:45.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2335.9298ms +2017-07-19 11:41:45.338 +05:30 [Information] Request finished in 2355.9159ms 200 application/json; charset=utf-8 +2017-07-19 11:41:45.338 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:45.436 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:41:45.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:41:45.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:41:48.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:48.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:48.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:48.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:48.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3138.0606ms +2017-07-19 11:41:48.580 +05:30 [Information] Request finished in 3143.4994ms 200 application/json; charset=utf-8 +2017-07-19 11:41:48.581 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:51.015 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" started. +2017-07-19 11:41:51.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:41:51.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:41:51.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:41:51.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:41:51.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:41:51.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:41:51.491 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" started. +2017-07-19 11:41:51.493 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" started. +2017-07-19 11:41:51.495 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" started. +2017-07-19 11:41:51.524 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:41:51.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:41:51.526 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:41:51.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:41:51.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:41:51.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:41:51.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:41:51.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:41:51.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:41:52.260 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" started. +2017-07-19 11:41:52.266 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:41:52.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:41:52.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:41:53.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:41:53.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:53.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:53.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:53.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1300.6612ms +2017-07-19 11:41:53.573 +05:30 [Information] Request finished in 1308.3329ms 200 application/json; charset=utf-8 +2017-07-19 11:41:53.573 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:41:54.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:54.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:54.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:54.604 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:41:54.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:54.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:54.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:54.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3620.291ms +2017-07-19 11:41:54.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:54.817 +05:30 [Information] Request finished in 3781.3339ms 200 application/json; charset=utf-8 +2017-07-19 11:41:54.902 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" completed keep alive response. +2017-07-19 11:41:54.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:41:54.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:54.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:41:54.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:54.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:54.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3422.1673ms +2017-07-19 11:41:54.994 +05:30 [Information] Request finished in 3478.9681ms 200 application/json; charset=utf-8 +2017-07-19 11:41:54.996 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:41:54.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:55.009 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:41:55.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:55.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:55.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3992.3057ms +2017-07-19 11:41:55.020 +05:30 [Information] Request finished in 4003.5327ms 200 application/json; charset=utf-8 +2017-07-19 11:41:55.021 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:41:55.304 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:55.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:41:55.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:55.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:55.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3806.8203ms +2017-07-19 11:41:55.362 +05:30 [Information] Request finished in 3848.2335ms 200 application/json; charset=utf-8 +2017-07-19 11:41:55.363 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" completed keep alive response. +2017-07-19 11:41:57.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:41:57.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:41:57.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:41:57.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:41:57.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5498.1645ms +2017-07-19 11:41:57.048 +05:30 [Information] Request finished in 5554.5167ms 200 application/json; charset=utf-8 +2017-07-19 11:41:57.049 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" completed keep alive response. +2017-07-19 11:42:42.252 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:42:42.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:42:42.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:42:45.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:42:45.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:42:45.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:42:45.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:42:45.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.7513ms +2017-07-19 11:42:45.339 +05:30 [Information] Request finished in 3086.637ms 200 application/json; charset=utf-8 +2017-07-19 11:42:45.339 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:42:45.363 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:42:45.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:42:45.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:42:48.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:42:48.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:42:48.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:42:48.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:42:48.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.6087ms +2017-07-19 11:42:48.420 +05:30 [Information] Request finished in 3060.6342ms 200 application/json; charset=utf-8 +2017-07-19 11:42:48.421 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" completed keep alive response. +2017-07-19 11:42:48.435 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 11:42:48.436 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 11:42:48.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 11:42:51.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["31", "8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:42:51.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 11:42:51.551 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 11:42:51.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3113.7343ms +2017-07-19 11:42:51.555 +05:30 [Information] Request finished in 3119.7905ms 200 +2017-07-19 11:42:51.555 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:42:54.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:42:54.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:42:54.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:42:57.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:42:57.698 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:42:57.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:42:57.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:42:57.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3121.2379ms +2017-07-19 11:42:57.705 +05:30 [Information] Request finished in 3127.5344ms 200 application/json; charset=utf-8 +2017-07-19 11:42:57.705 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:43:12.772 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" received FIN. +2017-07-19 11:43:12.772 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" received FIN. +2017-07-19 11:43:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" disconnecting. +2017-07-19 11:43:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" sending FIN. +2017-07-19 11:43:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" sent FIN with status "0". +2017-07-19 11:43:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1I"" stopped. +2017-07-19 11:43:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" disconnecting. +2017-07-19 11:43:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" sending FIN. +2017-07-19 11:43:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" sent FIN with status "0". +2017-07-19 11:43:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1H"" stopped. +2017-07-19 11:43:14.831 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:43:14.835 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:43:14.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:43:17.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cde605069a02"]) - ModelState is Valid +2017-07-19 11:43:17.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:43:17.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:43:17.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:43:17.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2302.0705ms +2017-07-19 11:43:17.171 +05:30 [Information] Request finished in 2353.123ms 200 application/json; charset=utf-8 +2017-07-19 11:43:17.173 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:43:48.764 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" received FIN. +2017-07-19 11:43:48.766 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" disconnecting. +2017-07-19 11:43:48.769 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" sending FIN. +2017-07-19 11:43:48.770 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" sent FIN with status "0". +2017-07-19 11:43:48.771 +05:30 [Debug] Connection id ""0HL6EDD3T3L1G"" stopped. +2017-07-19 11:43:48.783 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:43:48.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:43:48.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:43:51.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:43:51.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:43:51.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:43:51.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:43:51.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3139.071ms +2017-07-19 11:43:51.934 +05:30 [Information] Request finished in 3167.1831ms 200 application/json; charset=utf-8 +2017-07-19 11:43:51.934 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:43:52.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:43:52.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:43:52.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:43:55.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:43:55.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:43:55.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:43:55.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:43:55.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3188.646ms +2017-07-19 11:43:55.212 +05:30 [Information] Request finished in 3201.5989ms 200 application/json; charset=utf-8 +2017-07-19 11:43:55.213 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:43:55.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:43:55.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:43:55.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:43:58.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:43:58.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:43:58.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:43:58.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:43:58.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3096.8209ms +2017-07-19 11:43:58.320 +05:30 [Information] Request finished in 3102.9154ms 200 application/json; charset=utf-8 +2017-07-19 11:43:58.320 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:43:59.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:43:59.763 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:43:59.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:43:59.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:43:59.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:43:59.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:43:59.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:43:59.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:43:59.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:44:00.266 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" started. +2017-07-19 11:44:00.268 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" started. +2017-07-19 11:44:00.268 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" started. +2017-07-19 11:44:00.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:44:00.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:44:00.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:44:01.049 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" started. +2017-07-19 11:44:01.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:44:01.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:44:01.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:44:02.291 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:44:02.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:44:02.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:44:03.290 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:44:03.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:44:03.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:44:05.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:05.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:05.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:05.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:05.514 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:05.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:05.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:05.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:05.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:05.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5798.9595ms +2017-07-19 11:44:05.570 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:05.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:05.573 +05:30 [Information] Request finished in 5809.4751ms 200 application/json; charset=utf-8 +2017-07-19 11:44:05.574 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:05.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5642ms +2017-07-19 11:44:05.577 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:44:05.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:05.588 +05:30 [Information] Request finished in 5662.3151ms 200 application/json; charset=utf-8 +2017-07-19 11:44:05.589 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:44:05.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:05.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5824.8123ms +2017-07-19 11:44:05.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:44:05.626 +05:30 [Information] Request finished in 5842.6418ms 200 application/json; charset=utf-8 +2017-07-19 11:44:05.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:44:05.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:44:05.627 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:44:06.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:06.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:06.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:06.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:44:06.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:06.619 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:06.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:06.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:06.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4324.2902ms +2017-07-19 11:44:06.690 +05:30 [Information] Request finished in 4400.8639ms 200 application/json; charset=utf-8 +2017-07-19 11:44:06.691 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" completed keep alive response. +2017-07-19 11:44:06.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:06.732 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:06.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:06.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:06.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6462.5532ms +2017-07-19 11:44:06.740 +05:30 [Information] Request finished in 6469.6545ms 200 application/json; charset=utf-8 +2017-07-19 11:44:06.741 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" completed keep alive response. +2017-07-19 11:44:06.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:06.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:06.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:06.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3539.5476ms +2017-07-19 11:44:06.840 +05:30 [Information] Request finished in 3551.3067ms 200 application/json; charset=utf-8 +2017-07-19 11:44:06.841 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" completed keep alive response. +2017-07-19 11:44:08.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:08.113 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:08.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:08.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:08.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6826.2104ms +2017-07-19 11:44:08.122 +05:30 [Information] Request finished in 6836.4231ms 200 application/json; charset=utf-8 +2017-07-19 11:44:08.123 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" completed keep alive response. +2017-07-19 11:44:08.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:08.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:08.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:08.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:08.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3130.2561ms +2017-07-19 11:44:08.766 +05:30 [Information] Request finished in 3159.5315ms 200 application/json; charset=utf-8 +2017-07-19 11:44:08.767 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:44:09.970 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:44:09.971 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:44:09.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:44:09.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:44:09.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:44:09.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:44:10.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:44:10.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:44:10.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:44:10.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:44:10.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:44:10.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:44:10.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:44:10.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:44:10.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:44:11.041 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:44:11.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:44:11.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:44:13.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:13.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:13.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:13.282 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:13.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:13.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:13.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:13.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3310.9725ms +2017-07-19 11:44:13.286 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:13.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:13.289 +05:30 [Information] Request finished in 3338.3939ms 200 application/json; charset=utf-8 +2017-07-19 11:44:13.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:13.290 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:44:13.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3318.009ms +2017-07-19 11:44:13.297 +05:30 [Information] Request finished in 3346.7414ms 200 application/json; charset=utf-8 +2017-07-19 11:44:13.298 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:44:13.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:13.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:13.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:13.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:13.682 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:13.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:13.685 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3206.9867ms +2017-07-19 11:44:13.688 +05:30 [Information] Request finished in 3228.6102ms 200 application/json; charset=utf-8 +2017-07-19 11:44:13.689 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" completed keep alive response. +2017-07-19 11:44:13.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:44:14.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:14.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:14.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:14.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:14.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3527.6286ms +2017-07-19 11:44:14.014 +05:30 [Information] Request finished in 3552.1268ms 200 application/json; charset=utf-8 +2017-07-19 11:44:14.015 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" completed keep alive response. +2017-07-19 11:44:14.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:44:14.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:14.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:14.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:14.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3147.3347ms +2017-07-19 11:44:14.195 +05:30 [Information] Request finished in 3155.4468ms 200 application/json; charset=utf-8 +2017-07-19 11:44:14.196 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" completed keep alive response. +2017-07-19 11:44:14.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:14.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:44:14.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:14.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:14.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4089.0038ms +2017-07-19 11:44:14.568 +05:30 [Information] Request finished in 4116.0567ms 200 application/json; charset=utf-8 +2017-07-19 11:44:14.569 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" completed keep alive response. +2017-07-19 11:44:53.865 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:44:53.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:44:53.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:44:55.998 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:44:56.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:56.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:56.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:56.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2140.5201ms +2017-07-19 11:44:56.019 +05:30 [Information] Request finished in 2158.1871ms 200 application/json; charset=utf-8 +2017-07-19 11:44:56.019 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:44:56.024 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:44:56.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:44:56.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:44:59.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:44:59.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:44:59.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:44:59.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:44:59.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3032.6797ms +2017-07-19 11:44:59.065 +05:30 [Information] Request finished in 3040.8315ms 200 application/json; charset=utf-8 +2017-07-19 11:44:59.065 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:44:59.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:44:59.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:44:59.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:45:02.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:45:02.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:02.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:02.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:02.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3061.8852ms +2017-07-19 11:45:02.150 +05:30 [Information] Request finished in 3073.8774ms 200 application/json; charset=utf-8 +2017-07-19 11:45:02.151 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:45:02.158 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:45:02.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:45:02.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:45:05.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:05.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:05.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:05.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:05.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3110.3204ms +2017-07-19 11:45:05.278 +05:30 [Information] Request finished in 3121.3041ms 200 application/json; charset=utf-8 +2017-07-19 11:45:05.279 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" completed keep alive response. +2017-07-19 11:45:05.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:45:05.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:45:05.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:45:08.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:08.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:08.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:08.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:08.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3092.3409ms +2017-07-19 11:45:08.388 +05:30 [Information] Request finished in 3102.691ms 200 application/json; charset=utf-8 +2017-07-19 11:45:08.388 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" completed keep alive response. +2017-07-19 11:45:10.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:45:10.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:45:10.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:45:10.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:45:10.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:45:10.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:45:10.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:45:10.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:45:10.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:45:10.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:45:10.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:45:10.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:45:10.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:45:10.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:45:10.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:45:11.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:45:11.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:45:11.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:45:13.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:13.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:13.157 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:45:13.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:13.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:13.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3109.7817ms +2017-07-19 11:45:13.167 +05:30 [Information] Request finished in 3148.5282ms 200 application/json; charset=utf-8 +2017-07-19 11:45:13.168 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" completed keep alive response. +2017-07-19 11:45:13.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:13.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:13.933 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:45:13.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:14.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:14.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4004.8669ms +2017-07-19 11:45:14.205 +05:30 [Information] Request finished in 4143.0597ms 200 application/json; charset=utf-8 +2017-07-19 11:45:14.208 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" completed keep alive response. +2017-07-19 11:45:14.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:45:14.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:14.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:14.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:14.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:14.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:45:14.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:14.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2745.9782ms +2017-07-19 11:45:14.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:14.510 +05:30 [Information] Request finished in 2886.7642ms 200 application/json; charset=utf-8 +2017-07-19 11:45:14.516 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" completed keep alive response. +2017-07-19 11:45:14.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:45:14.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:14.578 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:14.599 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:45:14.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:45:14.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3837.2279ms +2017-07-19 11:45:14.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:45:14.661 +05:30 [Information] Request finished in 3942.6267ms 200 application/json; charset=utf-8 +2017-07-19 11:45:14.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:14.686 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" completed keep alive response. +2017-07-19 11:45:14.688 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:45:14.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:14.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:14.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3967.9751ms +2017-07-19 11:45:14.716 +05:30 [Information] Request finished in 4032.338ms 200 application/json; charset=utf-8 +2017-07-19 11:45:14.717 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" completed keep alive response. +2017-07-19 11:45:15.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:15.164 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:45:15.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:15.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:15.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4419.6575ms +2017-07-19 11:45:15.172 +05:30 [Information] Request finished in 4475.0092ms 200 application/json; charset=utf-8 +2017-07-19 11:45:15.173 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" completed keep alive response. +2017-07-19 11:45:17.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:45:17.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:17.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:17.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:17.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3218.6776ms +2017-07-19 11:45:17.855 +05:30 [Information] Request finished in 3319.5259ms 200 application/json; charset=utf-8 +2017-07-19 11:45:17.856 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" completed keep alive response. +2017-07-19 11:45:17.896 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:45:17.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:45:17.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:45:20.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:45:20.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:45:20.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:45:20.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:45:20.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3097.2089ms +2017-07-19 11:45:21.000 +05:30 [Information] Request finished in 3104.092ms 200 application/json; charset=utf-8 +2017-07-19 11:45:21.000 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" completed keep alive response. +2017-07-19 11:47:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" received FIN. +2017-07-19 11:47:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" received FIN. +2017-07-19 11:47:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" disconnecting. +2017-07-19 11:47:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" received FIN. +2017-07-19 11:47:12.778 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" disconnecting. +2017-07-19 11:47:12.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" received FIN. +2017-07-19 11:47:12.783 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" sending FIN. +2017-07-19 11:47:12.784 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" disconnecting. +2017-07-19 11:47:12.784 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" sent FIN with status "0". +2017-07-19 11:47:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" received FIN. +2017-07-19 11:47:12.791 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" received FIN. +2017-07-19 11:47:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" received FIN. +2017-07-19 11:47:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" sending FIN. +2017-07-19 11:47:12.795 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" sent FIN with status "0". +2017-07-19 11:47:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" disconnecting. +2017-07-19 11:47:12.791 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" disconnecting. +2017-07-19 11:47:12.790 +05:30 [Debug] Connection id ""0HL6EDD3T3L1K"" stopped. +2017-07-19 11:47:12.796 +05:30 [Debug] Connection id ""0HL6EDD3T3L1N"" stopped. +2017-07-19 11:47:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" disconnecting. +2017-07-19 11:47:12.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" disconnecting. +2017-07-19 11:47:12.800 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" sending FIN. +2017-07-19 11:47:12.814 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" sending FIN. +2017-07-19 11:47:12.821 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" sending FIN. +2017-07-19 11:47:12.826 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" sending FIN. +2017-07-19 11:47:12.830 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" sent FIN with status "0". +2017-07-19 11:47:12.834 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" sending FIN. +2017-07-19 11:47:12.840 +05:30 [Debug] Connection id ""0HL6EDD3T3L1O"" stopped. +2017-07-19 11:47:12.844 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" sent FIN with status "0". +2017-07-19 11:47:12.849 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" sent FIN with status "0". +2017-07-19 11:47:12.853 +05:30 [Debug] Connection id ""0HL6EDD3T3L1J"" stopped. +2017-07-19 11:47:12.858 +05:30 [Debug] Connection id ""0HL6EDD3T3L1M"" stopped. +2017-07-19 11:47:12.862 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" sent FIN with status "0". +2017-07-19 11:47:12.868 +05:30 [Debug] Connection id ""0HL6EDD3T3L1L"" stopped. +2017-07-19 11:47:12.869 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" sent FIN with status "0". +2017-07-19 11:47:12.871 +05:30 [Debug] Connection id ""0HL6EDD3T3L1F"" stopped. +2017-07-19 11:47:23.095 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" started. +2017-07-19 11:47:23.097 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:47:23.098 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:47:23.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:47:26.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:47:26.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:26.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:26.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:26.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3134.5719ms +2017-07-19 11:47:26.238 +05:30 [Information] Request finished in 3140.4807ms 200 application/json; charset=utf-8 +2017-07-19 11:47:26.238 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:26.243 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:47:26.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:47:26.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:47:29.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:47:29.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:29.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:29.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:29.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.7992ms +2017-07-19 11:47:29.307 +05:30 [Information] Request finished in 3066.2798ms 200 application/json; charset=utf-8 +2017-07-19 11:47:29.309 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:29.315 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:47:29.316 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:47:29.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:47:32.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:47:32.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:32.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:32.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:32.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3072.6786ms +2017-07-19 11:47:32.392 +05:30 [Information] Request finished in 3077.9843ms 200 application/json; charset=utf-8 +2017-07-19 11:47:32.392 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:32.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:47:32.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:47:32.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:47:35.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:35.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:35.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:35.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:35.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3112.712ms +2017-07-19 11:47:35.516 +05:30 [Information] Request finished in 3120.3636ms 200 application/json; charset=utf-8 +2017-07-19 11:47:35.516 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:35.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:47:35.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:47:35.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:47:38.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:38.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:38.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:38.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:38.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3112.8444ms +2017-07-19 11:47:38.639 +05:30 [Information] Request finished in 3118.3278ms 200 application/json; charset=utf-8 +2017-07-19 11:47:38.640 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:40.463 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" started. +2017-07-19 11:47:40.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:47:40.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:47:40.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:47:40.518 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:47:40.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:47:40.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:47:41.016 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" started. +2017-07-19 11:47:41.017 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" started. +2017-07-19 11:47:41.017 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" started. +2017-07-19 11:47:41.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:47:41.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:47:41.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:47:41.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:47:41.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:47:41.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:47:41.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:47:41.048 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:47:41.049 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:47:41.668 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" started. +2017-07-19 11:47:41.676 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:47:41.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:47:41.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:47:42.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:42.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:42.655 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:47:42.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:42.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:42.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2133.2963ms +2017-07-19 11:47:42.662 +05:30 [Information] Request finished in 2170.8639ms 200 application/json; charset=utf-8 +2017-07-19 11:47:42.663 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:43.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:43.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:47:43.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:43.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:43.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:43.839 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:47:43.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:43.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:43.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:43.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2161.0177ms +2017-07-19 11:47:43.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3337.0064ms +2017-07-19 11:47:43.871 +05:30 [Information] Request finished in 2179.8208ms 200 application/json; charset=utf-8 +2017-07-19 11:47:43.872 +05:30 [Information] Request finished in 3361.5271ms 200 application/json; charset=utf-8 +2017-07-19 11:47:43.873 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:47:43.872 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:47:43.893 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:47:43.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:47:43.895 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:47:44.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:44.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:44.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:47:44.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:44.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:47:44.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:44.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:44.419 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3355.799ms +2017-07-19 11:47:44.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:44.435 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:47:44.436 +05:30 [Information] Request finished in 3404.688ms 200 application/json; charset=utf-8 +2017-07-19 11:47:44.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:44.437 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" completed keep alive response. +2017-07-19 11:47:44.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:44.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3406.3407ms +2017-07-19 11:47:44.446 +05:30 [Information] Request finished in 3425.0985ms 200 application/json; charset=utf-8 +2017-07-19 11:47:44.446 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" completed keep alive response. +2017-07-19 11:47:45.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:45.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:47:45.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:45.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:45.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4725.9451ms +2017-07-19 11:47:45.775 +05:30 [Information] Request finished in 4743.1843ms 200 application/json; charset=utf-8 +2017-07-19 11:47:45.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:47:46.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:47:46.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:46.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:46.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:46.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3087.1276ms +2017-07-19 11:47:46.987 +05:30 [Information] Request finished in 3112.4038ms 200 application/json; charset=utf-8 +2017-07-19 11:47:46.989 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" completed keep alive response. +2017-07-19 11:47:46.998 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:47:46.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:47:46.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:47:50.071 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:47:50.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:47:50.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:47:50.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:47:50.103 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3102.7535ms +2017-07-19 11:47:50.106 +05:30 [Information] Request finished in 3108.0433ms 200 application/json; charset=utf-8 +2017-07-19 11:47:50.106 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:48:41.546 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:48:41.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:48:41.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:48:44.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:48:44.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:44.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:44.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:44.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3138.979ms +2017-07-19 11:48:44.691 +05:30 [Information] Request finished in 3145.2116ms 200 application/json; charset=utf-8 +2017-07-19 11:48:44.691 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:48:44.779 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" received FIN. +2017-07-19 11:48:44.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" disconnecting. +2017-07-19 11:48:44.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" received FIN. +2017-07-19 11:48:44.784 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" sending FIN. +2017-07-19 11:48:44.785 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" disconnecting. +2017-07-19 11:48:44.786 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" sending FIN. +2017-07-19 11:48:44.787 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:48:44.785 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" sent FIN with status "0". +2017-07-19 11:48:44.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:48:44.788 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" sent FIN with status "0". +2017-07-19 11:48:44.790 +05:30 [Debug] Connection id ""0HL6EDD3T3L1R"" stopped. +2017-07-19 11:48:44.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:48:44.796 +05:30 [Debug] Connection id ""0HL6EDD3T3L1T"" stopped. +2017-07-19 11:48:47.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:48:47.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:47.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:47.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:47.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3117.0539ms +2017-07-19 11:48:47.922 +05:30 [Information] Request finished in 3137.1737ms 200 application/json; charset=utf-8 +2017-07-19 11:48:47.922 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:48:47.925 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" received FIN. +2017-07-19 11:48:47.926 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" disconnecting. +2017-07-19 11:48:47.927 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" sending FIN. +2017-07-19 11:48:47.928 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" sent FIN with status "0". +2017-07-19 11:48:47.929 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:48:47.929 +05:30 [Debug] Connection id ""0HL6EDD3T3L1P"" stopped. +2017-07-19 11:48:47.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:48:47.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:48:51.021 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:48:51.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:51.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:51.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:51.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3158.7399ms +2017-07-19 11:48:51.093 +05:30 [Information] Request finished in 3164.6524ms 200 application/json; charset=utf-8 +2017-07-19 11:48:51.094 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:48:54.899 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:48:54.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:48:54.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:48:55.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:48:55.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:48:55.108 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:48:55.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:48:55.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:48:55.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:48:56.757 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" started. +2017-07-19 11:48:56.768 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" started. +2017-07-19 11:48:56.772 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" started. +2017-07-19 11:48:56.776 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:48:56.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:48:56.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:48:56.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:48:56.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:48:56.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:48:56.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:48:56.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:48:56.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:48:58.005 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" started. +2017-07-19 11:48:58.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:48:58.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:48:58.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:48:59.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:48:59.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:48:59.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:59.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:48:59.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:48:59.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:59.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:59.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4770.8296ms +2017-07-19 11:48:59.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:59.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:48:59.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:48:59.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:59.958 +05:30 [Information] Request finished in 4939.7283ms 200 application/json; charset=utf-8 +2017-07-19 11:48:59.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:48:59.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:59.960 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:48:59.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:48:59.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5065.3601ms +2017-07-19 11:48:59.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4843.0537ms +2017-07-19 11:48:59.989 +05:30 [Information] Request finished in 5093.7572ms 200 application/json; charset=utf-8 +2017-07-19 11:48:59.990 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:48:59.993 +05:30 [Information] Request finished in 4969.3003ms 200 application/json; charset=utf-8 +2017-07-19 11:48:59.993 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:48:59.999 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:49:00.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:49:00.004 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:49:00.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:00.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:00.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:01.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:01.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:01.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:01.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:01.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4432.4538ms +2017-07-19 11:49:01.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:01.259 +05:30 [Information] Request finished in 4481.4491ms 200 application/json; charset=utf-8 +2017-07-19 11:49:01.260 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:49:01.259 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:01.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:01.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:01.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4490.0435ms +2017-07-19 11:49:01.276 +05:30 [Information] Request finished in 4507.9217ms 200 application/json; charset=utf-8 +2017-07-19 11:49:01.277 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:49:01.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:01.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:01.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:01.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:01.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4757.336ms +2017-07-19 11:49:01.557 +05:30 [Information] Request finished in 4779.5495ms 200 application/json; charset=utf-8 +2017-07-19 11:49:01.558 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:49:01.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:49:01.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:01.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:01.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:01.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3271.4251ms +2017-07-19 11:49:01.986 +05:30 [Information] Request finished in 3278.4586ms 200 application/json; charset=utf-8 +2017-07-19 11:49:01.986 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:49:03.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:03.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:03.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:03.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:03.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3239.4608ms +2017-07-19 11:49:03.248 +05:30 [Information] Request finished in 3252.381ms 200 application/json; charset=utf-8 +2017-07-19 11:49:03.248 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:49:04.596 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:49:04.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:49:04.614 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:49:04.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:49:04.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:49:04.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:49:05.362 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:49:05.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:49:05.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:49:05.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:49:05.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:49:05.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:49:05.762 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:49:05.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:49:05.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:49:07.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:49:07.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:49:07.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:49:07.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:08.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:08.062 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:08.062 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:08.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:08.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3445.0922ms +2017-07-19 11:49:08.073 +05:30 [Information] Request finished in 3476.2854ms 200 application/json; charset=utf-8 +2017-07-19 11:49:08.108 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:49:08.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:08.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:08.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:08.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:08.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:08.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3512.0818ms +2017-07-19 11:49:08.140 +05:30 [Information] Request finished in 3545.0622ms 200 application/json; charset=utf-8 +2017-07-19 11:49:08.141 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:49:08.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:09.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:09.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:09.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:09.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:09.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:09.282 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:09.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:09.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:09.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:09.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:09.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3856.9309ms +2017-07-19 11:49:09.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3526.121ms +2017-07-19 11:49:09.300 +05:30 [Information] Request finished in 4076.079ms 200 application/json; charset=utf-8 +2017-07-19 11:49:09.301 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:49:09.309 +05:30 [Information] Request finished in 4074.8001ms 200 application/json; charset=utf-8 +2017-07-19 11:49:09.310 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:49:09.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:09.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:49:09.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:09.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:09.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4288.2492ms +2017-07-19 11:49:09.977 +05:30 [Information] Request finished in 4736.1446ms 200 application/json; charset=utf-8 +2017-07-19 11:49:09.978 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:49:10.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:49:10.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:10.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:10.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:10.558 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3231.4448ms +2017-07-19 11:49:10.561 +05:30 [Information] Request finished in 3242.3226ms 200 application/json; charset=utf-8 +2017-07-19 11:49:10.561 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:49:23.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:49:23.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:49:23.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:49:26.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:49:26.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:26.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:26.497 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:26.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.9681ms +2017-07-19 11:49:26.501 +05:30 [Information] Request finished in 3052.9091ms 200 application/json; charset=utf-8 +2017-07-19 11:49:26.501 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:49:26.505 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:49:26.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:49:26.506 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:49:29.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:49:29.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:29.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:29.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:29.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.8687ms +2017-07-19 11:49:29.565 +05:30 [Information] Request finished in 3060.944ms 200 application/json; charset=utf-8 +2017-07-19 11:49:29.565 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:49:29.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 11:49:29.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 11:49:29.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 11:49:31.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["32", "8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:49:31.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 11:49:31.718 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 11:49:31.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 2127.7281ms +2017-07-19 11:49:31.756 +05:30 [Information] Request finished in 2162.5574ms 200 +2017-07-19 11:49:31.757 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:49:42.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:49:42.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:49:42.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:49:46.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6d5c968cd9"]) - ModelState is Valid +2017-07-19 11:49:46.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:46.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:46.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:46.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3365.6505ms +2017-07-19 11:49:46.081 +05:30 [Information] Request finished in 3376.5949ms 200 application/json; charset=utf-8 +2017-07-19 11:49:46.081 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:49:51.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:49:51.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:49:51.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:49:54.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:49:55.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:55.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:55.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:55.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3114.0856ms +2017-07-19 11:49:55.079 +05:30 [Information] Request finished in 3122.145ms 200 application/json; charset=utf-8 +2017-07-19 11:49:55.080 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:49:55.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:49:55.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:49:55.173 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:49:58.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:49:58.309 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:49:58.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:49:58.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:49:58.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3136.4771ms +2017-07-19 11:49:58.314 +05:30 [Information] Request finished in 3141.1319ms 200 application/json; charset=utf-8 +2017-07-19 11:49:58.314 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:49:58.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:49:58.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:49:58.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:01.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:01.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:01.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:01.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:01.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3152.0081ms +2017-07-19 11:50:01.485 +05:30 [Information] Request finished in 3164.9961ms 200 application/json; charset=utf-8 +2017-07-19 11:50:01.487 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:50:02.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:50:02.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:50:02.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:50:02.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:50:02.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:50:02.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:50:03.709 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:50:03.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:50:03.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:50:03.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:50:03.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:50:03.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:50:03.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:50:03.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:50:03.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:04.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:50:04.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:50:04.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:50:06.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:06.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:06.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:06.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:06.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:06.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3978.3053ms +2017-07-19 11:50:06.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:06.926 +05:30 [Information] Request finished in 4013.4657ms 200 application/json; charset=utf-8 +2017-07-19 11:50:06.940 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:50:06.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:06.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:06.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:06.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:06.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4077.1808ms +2017-07-19 11:50:06.986 +05:30 [Information] Request finished in 4085.8914ms 200 application/json; charset=utf-8 +2017-07-19 11:50:06.986 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:07.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:07.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:07.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:07.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:50:08.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:08.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:08.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:08.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:08.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4364.563ms +2017-07-19 11:50:08.158 +05:30 [Information] Request finished in 4472.3004ms 200 application/json; charset=utf-8 +2017-07-19 11:50:08.159 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:50:08.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:08.202 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:08.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:08.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:08.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4486.2214ms +2017-07-19 11:50:08.208 +05:30 [Information] Request finished in 4525.2185ms 200 application/json; charset=utf-8 +2017-07-19 11:50:08.209 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:50:08.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:08.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:08.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:08.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3417.7903ms +2017-07-19 11:50:08.228 +05:30 [Information] Request finished in 3434.8315ms 200 application/json; charset=utf-8 +2017-07-19 11:50:08.229 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:50:08.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:08.729 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:08.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:08.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:08.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5008.7553ms +2017-07-19 11:50:08.735 +05:30 [Information] Request finished in 5047.0555ms 200 application/json; charset=utf-8 +2017-07-19 11:50:08.736 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:50:11.010 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:50:11.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:50:11.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:50:14.057 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:14.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:14.060 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:14.061 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:14.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.7381ms +2017-07-19 11:50:14.066 +05:30 [Information] Request finished in 3055.9973ms 200 application/json; charset=utf-8 +2017-07-19 11:50:14.067 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:50:14.070 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:50:14.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:50:14.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:50:17.131 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:50:17.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:17.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:17.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:17.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3055.9575ms +2017-07-19 11:50:17.141 +05:30 [Information] Request finished in 3071.6672ms 200 application/json; charset=utf-8 +2017-07-19 11:50:17.141 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:50:17.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:50:17.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:50:17.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:50:19.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:19.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:19.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:19.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:19.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2120.7708ms +2017-07-19 11:50:19.277 +05:30 [Information] Request finished in 2126.4167ms 200 application/json; charset=utf-8 +2017-07-19 11:50:19.278 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:19.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:50:19.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:50:19.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:50:22.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:22.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:22.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:22.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:22.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3084.734ms +2017-07-19 11:50:22.372 +05:30 [Information] Request finished in 3090.1383ms 200 application/json; charset=utf-8 +2017-07-19 11:50:22.373 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:50:22.378 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:50:22.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:50:22.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:25.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:25.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:25.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:25.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:25.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3103.0886ms +2017-07-19 11:50:25.487 +05:30 [Information] Request finished in 3109.0782ms 200 application/json; charset=utf-8 +2017-07-19 11:50:25.487 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:50:26.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:50:26.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:50:26.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:50:26.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:50:26.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:50:26.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:50:27.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:50:27.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:50:27.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:27.127 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:50:27.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:50:27.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:50:27.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:50:27.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:50:27.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:50:27.675 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:50:27.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:50:27.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:50:28.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:28.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:28.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:28.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:28.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:29.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2265.9864ms +2017-07-19 11:50:29.003 +05:30 [Information] Request finished in 2319.413ms 200 application/json; charset=utf-8 +2017-07-19 11:50:29.004 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:50:30.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:30.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:30.007 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:30.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:30.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:30.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3258.5749ms +2017-07-19 11:50:30.014 +05:30 [Information] Request finished in 3330.3315ms 200 application/json; charset=utf-8 +2017-07-19 11:50:30.015 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:50:30.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:30.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:30.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:30.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:30.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:30.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:30.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:30.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3319.6865ms +2017-07-19 11:50:30.546 +05:30 [Information] Request finished in 3411.0124ms 200 application/json; charset=utf-8 +2017-07-19 11:50:30.562 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:30.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:30.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:30.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:30.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:30.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3460.5993ms +2017-07-19 11:50:30.607 +05:30 [Information] Request finished in 3501.9248ms 200 application/json; charset=utf-8 +2017-07-19 11:50:30.608 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:50:30.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:30.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:30.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:30.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:30.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.0438ms +2017-07-19 11:50:30.737 +05:30 [Information] Request finished in 3062.1902ms 200 application/json; charset=utf-8 +2017-07-19 11:50:30.738 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:50:30.743 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:50:30.744 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:50:30.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:50:31.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:31.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:31.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:31.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:31.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3947.9867ms +2017-07-19 11:50:31.098 +05:30 [Information] Request finished in 3991.5515ms 200 application/json; charset=utf-8 +2017-07-19 11:50:31.099 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:50:31.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:50:31.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:31.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:31.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:31.911 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1163.7847ms +2017-07-19 11:50:31.914 +05:30 [Information] Request finished in 1172.3123ms 200 application/json; charset=utf-8 +2017-07-19 11:50:31.914 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:50:31.926 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:50:31.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:50:31.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:50:33.378 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:50:33.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:50:33.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:50:34.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:50:35.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:35.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:35.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:35.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3143.9258ms +2017-07-19 11:50:35.081 +05:30 [Information] Request finished in 3154.3752ms 200 application/json; charset=utf-8 +2017-07-19 11:50:35.082 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:50:36.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:36.429 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:36.430 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:36.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:36.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3052.188ms +2017-07-19 11:50:36.435 +05:30 [Information] Request finished in 3057.4592ms 200 application/json; charset=utf-8 +2017-07-19 11:50:36.436 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:50:36.444 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:50:36.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:50:36.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:50:39.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:50:39.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:39.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:39.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:39.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3033.323ms +2017-07-19 11:50:39.483 +05:30 [Information] Request finished in 3045.2178ms 200 application/json; charset=utf-8 +2017-07-19 11:50:39.484 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:39.490 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:50:39.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:50:39.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:50:42.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:42.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:42.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:42.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:42.528 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3034.2635ms +2017-07-19 11:50:42.531 +05:30 [Information] Request finished in 3040.7216ms 200 application/json; charset=utf-8 +2017-07-19 11:50:42.531 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:50:42.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:50:42.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:50:42.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:50:45.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:45.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:45.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:45.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:45.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3097.0384ms +2017-07-19 11:50:45.640 +05:30 [Information] Request finished in 3104.5128ms 200 application/json; charset=utf-8 +2017-07-19 11:50:45.641 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:50:45.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:50:45.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:50:45.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:48.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:48.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:48.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:48.792 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:48.794 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3137.1535ms +2017-07-19 11:50:48.797 +05:30 [Information] Request finished in 3149.2645ms 200 application/json; charset=utf-8 +2017-07-19 11:50:48.797 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:50:50.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:50:50.286 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:50:50.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:50:50.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:50:50.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:50:50.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:50:50.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:50:50.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:50:50.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:50:50.704 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:50:50.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:50:50.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:50:50.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:50:50.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:50:50.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:50:51.324 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:50:51.325 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:50:51.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:50:52.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:52.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:52.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:52.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:52.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:52.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:52.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:52.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:52.593 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:52.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:52.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:52.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1974.9165ms +2017-07-19 11:50:52.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2439.1747ms +2017-07-19 11:50:52.795 +05:30 [Information] Request finished in 2091.1385ms 200 application/json; charset=utf-8 +2017-07-19 11:50:52.796 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:52.827 +05:30 [Information] Request finished in 2541.5678ms 200 application/json; charset=utf-8 +2017-07-19 11:50:52.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:52.863 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:52.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:52.863 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:50:52.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:52.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2167.4075ms +2017-07-19 11:50:52.875 +05:30 [Information] Request finished in 2188.8695ms 200 application/json; charset=utf-8 +2017-07-19 11:50:52.876 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:50:54.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:54.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:50:54.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:54.244 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:54.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:54.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:54.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3956.3699ms +2017-07-19 11:50:54.253 +05:30 [Information] Request finished in 3967.6175ms 200 application/json; charset=utf-8 +2017-07-19 11:50:54.254 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:50:54.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:54.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:54.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:54.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:54.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3140.4579ms +2017-07-19 11:50:54.474 +05:30 [Information] Request finished in 3167.8373ms 200 application/json; charset=utf-8 +2017-07-19 11:50:54.475 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:50:54.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:50:54.479 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:50:54.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:50:55.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:55.074 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:50:55.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:55.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:55.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4367.8256ms +2017-07-19 11:50:55.081 +05:30 [Information] Request finished in 4386.3596ms 200 application/json; charset=utf-8 +2017-07-19 11:50:55.082 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:50:55.499 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:50:55.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:50:55.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:50:57.598 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:50:57.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:50:57.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:57.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:57.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:57.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:50:57.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:50:57.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2135.3535ms +2017-07-19 11:50:57.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:50:57.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3161.2004ms +2017-07-19 11:50:57.650 +05:30 [Information] Request finished in 2144.282ms 200 application/json; charset=utf-8 +2017-07-19 11:50:57.651 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:50:57.661 +05:30 [Information] Request finished in 3171.4826ms 200 application/json; charset=utf-8 +2017-07-19 11:50:57.661 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:50:57.670 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:50:57.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:50:57.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:50:57.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:50:57.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:50:57.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:51:00.780 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:51:00.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:51:00.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:00.788 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:00.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:00.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3117.5373ms +2017-07-19 11:51:00.794 +05:30 [Information] Request finished in 3141.7354ms 200 application/json; charset=utf-8 +2017-07-19 11:51:00.795 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:51:00.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:51:00.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:51:00.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:51:00.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:00.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:00.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:00.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3234.0916ms +2017-07-19 11:51:00.923 +05:30 [Information] Request finished in 3247.5504ms 200 application/json; charset=utf-8 +2017-07-19 11:51:00.923 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:51:03.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:51:03.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:03.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:03.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:03.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3042.3339ms +2017-07-19 11:51:03.853 +05:30 [Information] Request finished in 3051.5302ms 200 application/json; charset=utf-8 +2017-07-19 11:51:03.854 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:51:03.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:51:03.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:51:03.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:51:06.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:07.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:07.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:07.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:07.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3145.155ms +2017-07-19 11:51:07.019 +05:30 [Information] Request finished in 3160.5495ms 200 application/json; charset=utf-8 +2017-07-19 11:51:07.020 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:51:07.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:51:07.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:51:07.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:51:10.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:10.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:10.125 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:10.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:10.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3101.7888ms +2017-07-19 11:51:10.131 +05:30 [Information] Request finished in 3107.2259ms 200 application/json; charset=utf-8 +2017-07-19 11:51:10.131 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:51:11.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:51:11.447 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:51:11.448 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:51:11.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:51:11.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:51:11.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:51:11.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:51:11.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:51:11.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:51:11.835 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:51:11.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:51:11.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:51:11.854 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:51:11.855 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:51:11.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:51:12.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:51:12.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:51:12.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:51:14.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:14.614 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:14.620 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:14.623 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:51:14.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:14.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:14.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3208.1461ms +2017-07-19 11:51:14.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:14.690 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:51:14.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:14.692 +05:30 [Information] Request finished in 3274.7951ms 200 application/json; charset=utf-8 +2017-07-19 11:51:14.694 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:51:14.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:14.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3245.754ms +2017-07-19 11:51:14.720 +05:30 [Information] Request finished in 3280.929ms 200 application/json; charset=utf-8 +2017-07-19 11:51:14.720 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:51:14.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:14.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:15.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:51:15.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:15.169 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:51:15.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:15.228 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:15.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3400.6851ms +2017-07-19 11:51:15.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:15.267 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:51:15.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:15.274 +05:30 [Information] Request finished in 3446.5062ms 200 application/json; charset=utf-8 +2017-07-19 11:51:15.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:15.276 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:51:15.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3440.0818ms +2017-07-19 11:51:15.292 +05:30 [Information] Request finished in 3464.8124ms 200 application/json; charset=utf-8 +2017-07-19 11:51:15.293 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:51:15.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:51:15.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:15.528 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:15.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:15.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3129.7549ms +2017-07-19 11:51:15.536 +05:30 [Information] Request finished in 3137.4568ms 200 application/json; charset=utf-8 +2017-07-19 11:51:15.536 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:51:15.538 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:51:15.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:51:15.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:51:15.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:15.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:51:15.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:15.781 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:15.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3926.3867ms +2017-07-19 11:51:15.786 +05:30 [Information] Request finished in 3960.8287ms 200 application/json; charset=utf-8 +2017-07-19 11:51:15.786 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" completed keep alive response. +2017-07-19 11:51:18.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:51:18.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:18.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:18.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:18.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3056.6117ms +2017-07-19 11:51:18.602 +05:30 [Information] Request finished in 3064.0077ms 200 application/json; charset=utf-8 +2017-07-19 11:51:18.603 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" completed keep alive response. +2017-07-19 11:51:18.612 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:51:18.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:51:18.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:51:21.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:51:21.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:21.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:21.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:21.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3084.8966ms +2017-07-19 11:51:21.702 +05:30 [Information] Request finished in 3090.5826ms 200 application/json; charset=utf-8 +2017-07-19 11:51:21.702 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" completed keep alive response. +2017-07-19 11:51:33.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:51:33.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:51:33.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:51:36.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:51:36.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:36.873 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:36.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:36.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3059.3857ms +2017-07-19 11:51:36.879 +05:30 [Information] Request finished in 3066.1345ms 200 application/json; charset=utf-8 +2017-07-19 11:51:36.880 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" completed keep alive response. +2017-07-19 11:51:36.887 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:51:36.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:51:36.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:51:39.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:51:39.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:39.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:39.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:39.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3037.2865ms +2017-07-19 11:51:39.929 +05:30 [Information] Request finished in 3046.8172ms 200 application/json; charset=utf-8 +2017-07-19 11:51:39.930 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" completed keep alive response. +2017-07-19 11:51:39.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 11:51:39.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 11:51:39.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 11:51:42.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["33", "8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:51:43.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 11:51:43.025 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 11:51:43.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3085.6193ms +2017-07-19 11:51:43.032 +05:30 [Information] Request finished in 3093.3003ms 200 +2017-07-19 11:51:43.033 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" completed keep alive response. +2017-07-19 11:51:44.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:51:44.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:51:44.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:51:47.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:51:47.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:51:47.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:51:47.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:51:47.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.8431ms +2017-07-19 11:51:47.882 +05:30 [Information] Request finished in 3082.7953ms 200 application/json; charset=utf-8 +2017-07-19 11:51:47.882 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" completed keep alive response. +2017-07-19 11:53:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" received FIN. +2017-07-19 11:53:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" received FIN. +2017-07-19 11:53:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" received FIN. +2017-07-19 11:53:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" disconnecting. +2017-07-19 11:53:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" sending FIN. +2017-07-19 11:53:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" disconnecting. +2017-07-19 11:53:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" sent FIN with status "0". +2017-07-19 11:53:12.778 +05:30 [Debug] Connection id ""0HL6EDD3T3L21"" stopped. +2017-07-19 11:53:12.779 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" sending FIN. +2017-07-19 11:53:12.779 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" sent FIN with status "0". +2017-07-19 11:53:12.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L1V"" stopped. +2017-07-19 11:53:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" disconnecting. +2017-07-19 11:53:12.781 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" sending FIN. +2017-07-19 11:53:12.781 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" sent FIN with status "0". +2017-07-19 11:53:12.784 +05:30 [Debug] Connection id ""0HL6EDD3T3L1S"" stopped. +2017-07-19 11:53:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" received FIN. +2017-07-19 11:53:12.789 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" received FIN. +2017-07-19 11:53:12.789 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" disconnecting. +2017-07-19 11:53:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" disconnecting. +2017-07-19 11:53:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" received FIN. +2017-07-19 11:53:12.794 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" received FIN. +2017-07-19 11:53:12.794 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" disconnecting. +2017-07-19 11:53:12.795 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" disconnecting. +2017-07-19 11:53:12.795 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" sending FIN. +2017-07-19 11:53:12.797 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" sending FIN. +2017-07-19 11:53:12.798 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" sending FIN. +2017-07-19 11:53:12.800 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" sending FIN. +2017-07-19 11:53:12.801 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" sent FIN with status "0". +2017-07-19 11:53:12.802 +05:30 [Debug] Connection id ""0HL6EDD3T3L1Q"" stopped. +2017-07-19 11:53:12.803 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" sent FIN with status "0". +2017-07-19 11:53:12.803 +05:30 [Debug] Connection id ""0HL6EDD3T3L20"" stopped. +2017-07-19 11:53:12.804 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" sent FIN with status "0". +2017-07-19 11:53:12.805 +05:30 [Debug] Connection id ""0HL6EDD3T3L22"" stopped. +2017-07-19 11:53:12.807 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" sent FIN with status "0". +2017-07-19 11:53:12.808 +05:30 [Debug] Connection id ""0HL6EDD3T3L1U"" stopped. +2017-07-19 11:55:06.396 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" started. +2017-07-19 11:55:06.401 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:55:06.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:55:06.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:55:09.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6e33fcdd43"]) - ModelState is Valid +2017-07-19 11:55:09.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:09.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:09.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:09.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3254.0333ms +2017-07-19 11:55:09.663 +05:30 [Information] Request finished in 3262.304ms 200 application/json; charset=utf-8 +2017-07-19 11:55:09.664 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:28.665 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:55:28.666 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:55:28.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:55:31.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:55:31.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:31.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:31.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:31.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3169.4628ms +2017-07-19 11:55:31.849 +05:30 [Information] Request finished in 3185.6585ms 200 application/json; charset=utf-8 +2017-07-19 11:55:31.850 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:31.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:55:31.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:55:31.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:55:34.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:35.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:35.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:35.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:35.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3109.0153ms +2017-07-19 11:55:35.033 +05:30 [Information] Request finished in 3117.7938ms 200 application/json; charset=utf-8 +2017-07-19 11:55:35.034 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:35.045 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:55:35.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:55:35.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:55:38.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:38.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:38.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:38.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:38.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3128.5316ms +2017-07-19 11:55:38.180 +05:30 [Information] Request finished in 3134.9148ms 200 application/json; charset=utf-8 +2017-07-19 11:55:38.181 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:41.251 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:55:41.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:55:41.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:55:41.383 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" started. +2017-07-19 11:55:41.416 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" started. +2017-07-19 11:55:41.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:55:41.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:55:41.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:55:41.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:55:41.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:55:41.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:55:42.000 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" started. +2017-07-19 11:55:42.003 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" started. +2017-07-19 11:55:42.017 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" started. +2017-07-19 11:55:42.046 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:55:42.055 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:55:42.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:55:42.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:55:42.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:55:42.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:55:42.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:55:42.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:55:42.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:55:43.369 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" started. +2017-07-19 11:55:43.386 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:55:43.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:55:43.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:55:44.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:44.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:44.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:44.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:44.632 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3376.5194ms +2017-07-19 11:55:44.635 +05:30 [Information] Request finished in 3384.7506ms 200 application/json; charset=utf-8 +2017-07-19 11:55:44.635 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:44.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:55:44.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:55:44.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:55:44.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:44.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:44.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:44.902 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:44.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:44.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:44.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:44.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3425.6368ms +2017-07-19 11:55:44.907 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:44.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:44.909 +05:30 [Information] Request finished in 3489.0308ms 200 application/json; charset=utf-8 +2017-07-19 11:55:44.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:44.910 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" completed keep alive response. +2017-07-19 11:55:44.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3412.7988ms +2017-07-19 11:55:44.923 +05:30 [Information] Request finished in 3500.9074ms 200 application/json; charset=utf-8 +2017-07-19 11:55:44.924 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" completed keep alive response. +2017-07-19 11:55:45.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:45.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:45.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:45.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:45.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:45.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:45.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:45.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:45.523 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:45.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:45.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3464.5889ms +2017-07-19 11:55:45.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:45.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3492.8258ms +2017-07-19 11:55:45.561 +05:30 [Information] Request finished in 3529.8769ms 200 application/json; charset=utf-8 +2017-07-19 11:55:45.565 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" completed keep alive response. +2017-07-19 11:55:45.575 +05:30 [Information] Request finished in 3551.8262ms 200 application/json; charset=utf-8 +2017-07-19 11:55:45.577 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" completed keep alive response. +2017-07-19 11:55:46.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:55:46.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:46.670 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:46.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:46.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3278.3566ms +2017-07-19 11:55:46.676 +05:30 [Information] Request finished in 3292.1174ms 200 application/json; charset=utf-8 +2017-07-19 11:55:46.677 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" completed keep alive response. +2017-07-19 11:55:46.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:46.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:46.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:46.815 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:46.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2173.4962ms +2017-07-19 11:55:46.821 +05:30 [Information] Request finished in 2180.7163ms 200 application/json; charset=utf-8 +2017-07-19 11:55:46.821 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:46.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:46.953 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:46.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:46.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:46.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4888.0027ms +2017-07-19 11:55:46.960 +05:30 [Information] Request finished in 4907.5594ms 200 application/json; charset=utf-8 +2017-07-19 11:55:46.960 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" completed keep alive response. +2017-07-19 11:55:47.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:55:47.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:55:47.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:55:47.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:55:47.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:55:47.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:55:48.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:55:48.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:55:48.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:55:48.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:55:48.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:55:48.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:55:48.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:55:48.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:55:48.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:55:48.769 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:55:48.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:55:48.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:55:50.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:50.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:50.870 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:50.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:50.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:50.878 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3149.4022ms +2017-07-19 11:55:50.883 +05:30 [Information] Request finished in 3162.0989ms 200 application/json; charset=utf-8 +2017-07-19 11:55:50.884 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" completed keep alive response. +2017-07-19 11:55:51.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:51.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:51.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:51.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:51.375 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:51.375 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:51.376 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:51.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3272.7789ms +2017-07-19 11:55:51.438 +05:30 [Information] Request finished in 3336.6499ms 200 application/json; charset=utf-8 +2017-07-19 11:55:51.438 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" completed keep alive response. +2017-07-19 11:55:51.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:51.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:51.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:51.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:51.559 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3463.1786ms +2017-07-19 11:55:51.562 +05:30 [Information] Request finished in 3478.1629ms 200 application/json; charset=utf-8 +2017-07-19 11:55:51.563 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" completed keep alive response. +2017-07-19 11:55:51.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:55:51.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:51.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:51.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:51.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3211.1164ms +2017-07-19 11:55:51.988 +05:30 [Information] Request finished in 3218.6607ms 200 application/json; charset=utf-8 +2017-07-19 11:55:51.988 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:55:52.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:52.128 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:52.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:52.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:52.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4036.3125ms +2017-07-19 11:55:52.136 +05:30 [Information] Request finished in 4051.2842ms 200 application/json; charset=utf-8 +2017-07-19 11:55:52.136 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" completed keep alive response. +2017-07-19 11:55:54.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:55:54.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:54.949 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:55:54.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:54.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:54.958 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:55:54.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:55:54.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:55:54.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7235.8741ms +2017-07-19 11:55:54.971 +05:30 [Information] Request finished in 7250.6217ms 200 application/json; charset=utf-8 +2017-07-19 11:55:54.972 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" completed keep alive response. +2017-07-19 11:55:55.007 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:55:55.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:55:55.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:55:58.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:55:58.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:55:58.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:58.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:58.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:58.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:55:58.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:55:58.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3092.7739ms +2017-07-19 11:55:58.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:55:58.061 +05:30 [Information] Request finished in 3104.0212ms 200 application/json; charset=utf-8 +2017-07-19 11:55:58.062 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" completed keep alive response. +2017-07-19 11:55:58.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3050.5115ms +2017-07-19 11:55:58.066 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:55:58.068 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:55:58.070 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:55:58.070 +05:30 [Information] Request finished in 3062.0567ms 200 application/json; charset=utf-8 +2017-07-19 11:55:58.072 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" completed keep alive response. +2017-07-19 11:55:58.084 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 11:55:58.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 11:55:58.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 11:56:01.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:56:01.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:56:01.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:01.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:01.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:01.155 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:01.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:01.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:01.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3101.3144ms +2017-07-19 11:56:01.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3109.3348ms +2017-07-19 11:56:01.203 +05:30 [Information] Request finished in 3125.8907ms 200 application/json; charset=utf-8 +2017-07-19 11:56:01.204 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" completed keep alive response. +2017-07-19 11:56:01.229 +05:30 [Information] Request finished in 3151.5681ms 200 application/json; charset=utf-8 +2017-07-19 11:56:01.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 11:56:01.244 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" completed keep alive response. +2017-07-19 11:56:01.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 11:56:01.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 11:56:01.257 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 11:56:01.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 11:56:01.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 11:56:04.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["34", "8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:56:04.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:56:04.356 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:04.357 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:04.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 11:56:04.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:04.381 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 11:56:04.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3129.5082ms +2017-07-19 11:56:04.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3122.8916ms +2017-07-19 11:56:04.386 +05:30 [Information] Request finished in 3157.3574ms 200 application/json; charset=utf-8 +2017-07-19 11:56:04.388 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:56:04.422 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:56:04.422 +05:30 [Information] Request finished in 3141.8116ms 200 +2017-07-19 11:56:04.424 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" completed keep alive response. +2017-07-19 11:56:04.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:56:04.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:56:04.483 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:56:04.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:56:04.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:56:07.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:07.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:56:07.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:07.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:07.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:07.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3125.6957ms +2017-07-19 11:56:07.682 +05:30 [Information] Request finished in 3178.8892ms 200 application/json; charset=utf-8 +2017-07-19 11:56:07.682 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:07.683 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" completed keep alive response. +2017-07-19 11:56:07.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:07.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:07.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3273.0298ms +2017-07-19 11:56:07.710 +05:30 [Information] Request finished in 3310.1852ms 200 application/json; charset=utf-8 +2017-07-19 11:56:07.711 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" completed keep alive response. +2017-07-19 11:56:07.729 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:56:07.730 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:56:07.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:56:10.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:10.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:10.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:10.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:10.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3086.4072ms +2017-07-19 11:56:10.822 +05:30 [Information] Request finished in 3091.8489ms 200 application/json; charset=utf-8 +2017-07-19 11:56:10.822 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" completed keep alive response. +2017-07-19 11:56:20.489 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 11:56:20.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 11:56:20.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 11:56:23.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6efdd325c6"]) - ModelState is Valid +2017-07-19 11:56:23.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:23.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:23.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:23.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3059.6516ms +2017-07-19 11:56:23.561 +05:30 [Information] Request finished in 3070.1076ms 200 application/json; charset=utf-8 +2017-07-19 11:56:23.562 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" completed keep alive response. +2017-07-19 11:56:24.500 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 11:56:24.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 11:56:24.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 11:56:27.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 11:56:27.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:27.653 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:27.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:27.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3139.8765ms +2017-07-19 11:56:27.659 +05:30 [Information] Request finished in 3159.7086ms 200 application/json; charset=utf-8 +2017-07-19 11:56:27.660 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" completed keep alive response. +2017-07-19 11:56:27.745 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 11:56:27.747 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 11:56:27.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 11:56:30.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:30.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:30.894 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:30.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:30.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3144.2866ms +2017-07-19 11:56:30.900 +05:30 [Information] Request finished in 3155.2919ms 200 application/json; charset=utf-8 +2017-07-19 11:56:30.901 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:56:30.904 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:56:30.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:56:30.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:56:33.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:33.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:33.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:33.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:34.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3093.5831ms +2017-07-19 11:56:34.012 +05:30 [Information] Request finished in 3107.1302ms 200 application/json; charset=utf-8 +2017-07-19 11:56:34.013 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" completed keep alive response. +2017-07-19 11:56:35.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 11:56:35.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 11:56:35.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 11:56:35.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 11:56:35.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 11:56:35.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 11:56:35.801 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 11:56:35.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 11:56:35.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 11:56:35.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 11:56:35.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 11:56:35.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 11:56:36.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 11:56:36.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 11:56:36.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 11:56:37.785 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 11:56:37.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 11:56:37.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 11:56:39.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:39.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:40.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:40.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:56:40.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:40.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:40.051 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:40.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:56:40.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:40.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4611.1384ms +2017-07-19 11:56:40.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:40.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4694.1086ms +2017-07-19 11:56:40.129 +05:30 [Information] Request finished in 4741.0622ms 200 application/json; charset=utf-8 +2017-07-19 11:56:40.131 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" completed keep alive response. +2017-07-19 11:56:40.178 +05:30 [Information] Request finished in 4765.2405ms 200 application/json; charset=utf-8 +2017-07-19 11:56:40.179 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" completed keep alive response. +2017-07-19 11:56:40.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:40.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:40.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 11:56:41.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 11:56:41.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:41.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:56:41.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:41.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:41.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:41.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:41.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4371.4362ms +2017-07-19 11:56:41.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:41.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3432.4389ms +2017-07-19 11:56:41.258 +05:30 [Information] Request finished in 4441.9245ms 200 application/json; charset=utf-8 +2017-07-19 11:56:41.282 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" completed keep alive response. +2017-07-19 11:56:41.290 +05:30 [Information] Request finished in 3472.9616ms 200 application/json; charset=utf-8 +2017-07-19 11:56:41.290 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" completed keep alive response. +2017-07-19 11:56:41.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:41.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:56:41.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:41.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:41.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5585.6057ms +2017-07-19 11:56:41.401 +05:30 [Information] Request finished in 5600.9688ms 200 application/json; charset=utf-8 +2017-07-19 11:56:41.402 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" completed keep alive response. +2017-07-19 11:56:41.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 11:56:41.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 11:56:41.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 11:56:41.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 11:56:41.806 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5999.2888ms +2017-07-19 11:56:41.808 +05:30 [Information] Request finished in 6008.6798ms 200 application/json; charset=utf-8 +2017-07-19 11:56:41.809 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" completed keep alive response. +2017-07-19 11:59:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" received FIN. +2017-07-19 11:59:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" received FIN. +2017-07-19 11:59:12.780 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" received FIN. +2017-07-19 11:59:12.781 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" received FIN. +2017-07-19 11:59:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" received FIN. +2017-07-19 11:59:12.785 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" received FIN. +2017-07-19 11:59:12.786 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" received FIN. +2017-07-19 11:59:12.781 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" disconnecting. +2017-07-19 11:59:12.778 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" disconnecting. +2017-07-19 11:59:12.789 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" disconnecting. +2017-07-19 11:59:12.788 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" sending FIN. +2017-07-19 11:59:12.797 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" sending FIN. +2017-07-19 11:59:12.790 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" disconnecting. +2017-07-19 11:59:12.799 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" disconnecting. +2017-07-19 11:59:12.798 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" sending FIN. +2017-07-19 11:59:12.801 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" sending FIN. +2017-07-19 11:59:12.799 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" disconnecting. +2017-07-19 11:59:12.805 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" sent FIN with status "0". +2017-07-19 11:59:12.806 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" disconnecting. +2017-07-19 11:59:12.809 +05:30 [Debug] Connection id ""0HL6EDD3T3L27"" stopped. +2017-07-19 11:59:12.799 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" sending FIN. +2017-07-19 11:59:12.812 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" sending FIN. +2017-07-19 11:59:12.813 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" sending FIN. +2017-07-19 11:59:12.811 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" sent FIN with status "0". +2017-07-19 11:59:12.814 +05:30 [Debug] Connection id ""0HL6EDD3T3L25"" stopped. +2017-07-19 11:59:12.815 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" sent FIN with status "0". +2017-07-19 11:59:12.815 +05:30 [Debug] Connection id ""0HL6EDD3T3L29"" stopped. +2017-07-19 11:59:12.813 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" sent FIN with status "0". +2017-07-19 11:59:12.815 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" sent FIN with status "0". +2017-07-19 11:59:12.816 +05:30 [Debug] Connection id ""0HL6EDD3T3L24"" stopped. +2017-07-19 11:59:12.817 +05:30 [Debug] Connection id ""0HL6EDD3T3L23"" stopped. +2017-07-19 11:59:12.817 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" sent FIN with status "0". +2017-07-19 11:59:12.818 +05:30 [Debug] Connection id ""0HL6EDD3T3L26"" stopped. +2017-07-19 11:59:12.819 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" sent FIN with status "0". +2017-07-19 11:59:12.819 +05:30 [Debug] Connection id ""0HL6EDD3T3L28"" stopped. +2017-07-19 12:02:59.007 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" started. +2017-07-19 12:02:59.009 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:02:59.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:02:59.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:03:02.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:03:02.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:02.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:02.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:02.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3290.3475ms +2017-07-19 12:03:02.319 +05:30 [Information] Request finished in 3309.1255ms 200 application/json; charset=utf-8 +2017-07-19 12:03:02.320 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:02.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:03:02.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:03:02.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:03:04.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:04.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:04.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:04.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:04.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2216.3393ms +2017-07-19 12:03:04.632 +05:30 [Information] Request finished in 2224.1458ms 200 application/json; charset=utf-8 +2017-07-19 12:03:04.633 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:04.640 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:03:04.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:03:04.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:03:06.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:06.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:06.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:06.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:06.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2338.2509ms +2017-07-19 12:03:07.023 +05:30 [Information] Request finished in 2366.8423ms 200 application/json; charset=utf-8 +2017-07-19 12:03:07.023 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:10.376 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:03:10.376 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:03:10.377 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:03:10.696 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" started. +2017-07-19 12:03:10.698 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" started. +2017-07-19 12:03:10.706 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:03:10.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:03:10.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:03:10.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:03:10.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:03:10.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:03:11.215 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" started. +2017-07-19 12:03:11.217 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" started. +2017-07-19 12:03:11.217 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" started. +2017-07-19 12:03:11.906 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:03:11.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:03:11.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:03:11.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:03:11.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:03:11.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:03:12.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:03:12.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:03:12.042 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:03:12.467 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" started. +2017-07-19 12:03:12.508 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:03:12.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:03:12.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:03:13.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:13.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:13.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:13.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:13.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2905.2687ms +2017-07-19 12:03:13.315 +05:30 [Information] Request finished in 2940.6897ms 200 application/json; charset=utf-8 +2017-07-19 12:03:13.316 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:13.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:03:13.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:03:13.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:03:13.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:14.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:14.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:14.032 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:14.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:14.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:14.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3283.511ms +2017-07-19 12:03:14.040 +05:30 [Information] Request finished in 3338.8316ms 200 application/json; charset=utf-8 +2017-07-19 12:03:14.043 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:03:14.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:14.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:14.179 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:14.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:14.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:14.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3465.7513ms +2017-07-19 12:03:14.187 +05:30 [Information] Request finished in 3487.2943ms 200 application/json; charset=utf-8 +2017-07-19 12:03:14.190 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:03:14.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:14.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:14.466 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:14.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:14.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:14.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2492.6364ms +2017-07-19 12:03:14.478 +05:30 [Information] Request finished in 2613.4291ms 200 application/json; charset=utf-8 +2017-07-19 12:03:14.479 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:03:15.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:15.264 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:15.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:15.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:15.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3223.6578ms +2017-07-19 12:03:15.275 +05:30 [Information] Request finished in 3377.7304ms 200 application/json; charset=utf-8 +2017-07-19 12:03:15.277 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:03:15.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:15.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:15.687 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:15.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:15.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:15.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3782.3016ms +2017-07-19 12:03:15.696 +05:30 [Information] Request finished in 4431.6529ms 200 application/json; charset=utf-8 +2017-07-19 12:03:15.697 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:03:15.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:03:16.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:16.027 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:16.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:16.031 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3518.1529ms +2017-07-19 12:03:16.034 +05:30 [Information] Request finished in 3557.6642ms 200 application/json; charset=utf-8 +2017-07-19 12:03:16.035 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" completed keep alive response. +2017-07-19 12:03:16.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:16.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:16.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:16.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:16.789 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3264.8701ms +2017-07-19 12:03:16.792 +05:30 [Information] Request finished in 3362.5061ms 200 application/json; charset=utf-8 +2017-07-19 12:03:16.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:17.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:03:17.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:03:17.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:03:17.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:03:17.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:03:17.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:03:18.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:03:18.458 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:03:18.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:03:18.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:03:18.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:03:18.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:03:18.464 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:03:18.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:03:18.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:03:19.001 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:03:19.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:03:19.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:03:21.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:21.368 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:21.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:21.445 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:21.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:21.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:21.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:21.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:21.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:21.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3650.0889ms +2017-07-19 12:03:21.453 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:21.455 +05:30 [Information] Request finished in 3667.7108ms 200 application/json; charset=utf-8 +2017-07-19 12:03:21.456 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:03:21.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3660.2178ms +2017-07-19 12:03:21.465 +05:30 [Information] Request finished in 3682.2492ms 200 application/json; charset=utf-8 +2017-07-19 12:03:21.466 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:03:21.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:21.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:21.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:03:21.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:21.805 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:21.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:21.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:21.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3349.4287ms +2017-07-19 12:03:21.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:21.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:21.843 +05:30 [Information] Request finished in 3391.2908ms 200 application/json; charset=utf-8 +2017-07-19 12:03:21.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:21.844 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:03:21.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:21.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3378.812ms +2017-07-19 12:03:21.857 +05:30 [Information] Request finished in 3403.6905ms 200 application/json; charset=utf-8 +2017-07-19 12:03:21.857 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:03:22.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:03:22.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:22.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:22.406 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:22.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3402.3057ms +2017-07-19 12:03:22.411 +05:30 [Information] Request finished in 3439.3926ms 200 application/json; charset=utf-8 +2017-07-19 12:03:22.412 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" completed keep alive response. +2017-07-19 12:03:22.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:22.631 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:03:22.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:22.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:22.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4174.4903ms +2017-07-19 12:03:22.644 +05:30 [Information] Request finished in 4189.2479ms 200 application/json; charset=utf-8 +2017-07-19 12:03:22.644 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:03:56.850 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:03:56.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:03:56.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:03:59.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:03:59.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:03:59.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:03:59.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:03:59.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3069.2736ms +2017-07-19 12:03:59.926 +05:30 [Information] Request finished in 3076.8484ms 200 application/json; charset=utf-8 +2017-07-19 12:03:59.928 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:03:59.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:03:59.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:03:59.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:04:02.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:04:02.994 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:02.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:02.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:02.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3052.7806ms +2017-07-19 12:04:02.999 +05:30 [Information] Request finished in 3067.1823ms 200 application/json; charset=utf-8 +2017-07-19 12:04:03.000 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:04:03.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:04:03.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:04:03.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:04:06.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:06.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:06.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:06.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:06.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3039.4973ms +2017-07-19 12:04:06.053 +05:30 [Information] Request finished in 3045.0271ms 200 application/json; charset=utf-8 +2017-07-19 12:04:06.053 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:04:06.060 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:04:06.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:04:06.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:04:09.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:09.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:09.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:09.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:09.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3095.3109ms +2017-07-19 12:04:09.167 +05:30 [Information] Request finished in 3106.9902ms 200 application/json; charset=utf-8 +2017-07-19 12:04:09.167 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:04:09.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:04:09.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:04:09.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:04:12.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:12.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:12.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:12.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:12.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3161.5341ms +2017-07-19 12:04:12.343 +05:30 [Information] Request finished in 3169.8862ms 200 application/json; charset=utf-8 +2017-07-19 12:04:12.343 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:04:13.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:04:13.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:04:13.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:04:13.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:04:13.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:04:13.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:04:14.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:04:14.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:04:14.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:04:14.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:04:14.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:04:14.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:04:14.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:04:14.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:04:14.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:04:15.370 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:04:15.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:04:15.372 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:04:16.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:16.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:16.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:16.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:16.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:16.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:16.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:16.935 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:16.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:16.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3152.4619ms +2017-07-19 12:04:16.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:16.943 +05:30 [Information] Request finished in 3163.5834ms 200 application/json; charset=utf-8 +2017-07-19 12:04:16.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3157.9407ms +2017-07-19 12:04:16.944 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:04:16.948 +05:30 [Information] Request finished in 3169.0476ms 200 application/json; charset=utf-8 +2017-07-19 12:04:16.949 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" completed keep alive response. +2017-07-19 12:04:17.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:17.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:17.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:17.560 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:17.561 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:17.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:17.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:17.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3338.1552ms +2017-07-19 12:04:17.598 +05:30 [Information] Request finished in 3377.5394ms 200 application/json; charset=utf-8 +2017-07-19 12:04:17.599 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:04:17.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:17.759 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:17.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:17.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:17.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3521.6536ms +2017-07-19 12:04:17.765 +05:30 [Information] Request finished in 3554.0605ms 200 application/json; charset=utf-8 +2017-07-19 12:04:17.765 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:04:18.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:18.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:18.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:18.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:18.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4075.2801ms +2017-07-19 12:04:18.305 +05:30 [Information] Request finished in 4093.4874ms 200 application/json; charset=utf-8 +2017-07-19 12:04:18.306 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:04:18.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:18.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:18.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:18.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:18.515 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3142.2814ms +2017-07-19 12:04:18.517 +05:30 [Information] Request finished in 3152.6619ms 200 application/json; charset=utf-8 +2017-07-19 12:04:18.518 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:04:19.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:04:19.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:04:19.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:04:22.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:04:22.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:22.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:22.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:22.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3064.839ms +2017-07-19 12:04:22.753 +05:30 [Information] Request finished in 3079.4989ms 200 application/json; charset=utf-8 +2017-07-19 12:04:22.753 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:04:22.760 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:04:22.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:04:22.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:04:24.137 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:04:24.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:04:24.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:04:24.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:04:24.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:04:24.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:04:25.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:04:26.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:26.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:26.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:26.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3321.8463ms +2017-07-19 12:04:26.090 +05:30 [Information] Request finished in 3328.9361ms 200 application/json; charset=utf-8 +2017-07-19 12:04:26.091 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:04:27.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:27.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:27.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:27.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:27.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:27.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3097.1966ms +2017-07-19 12:04:27.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:27.251 +05:30 [Information] Request finished in 3117.6098ms 200 application/json; charset=utf-8 +2017-07-19 12:04:27.253 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" completed keep alive response. +2017-07-19 12:04:27.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:27.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:27.272 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:04:27.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:04:27.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3091.7003ms +2017-07-19 12:04:27.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:04:27.279 +05:30 [Information] Request finished in 3111.2ms 200 application/json; charset=utf-8 +2017-07-19 12:04:27.280 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:04:27.284 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:04:27.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:04:27.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:04:30.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:04:30.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:04:30.371 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:30.371 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:30.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:30.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:30.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:30.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:30.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3097.8816ms +2017-07-19 12:04:30.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3090.1198ms +2017-07-19 12:04:30.403 +05:30 [Information] Request finished in 3125.2729ms 200 application/json; charset=utf-8 +2017-07-19 12:04:30.404 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:04:30.403 +05:30 [Information] Request finished in 3099.1784ms 200 application/json; charset=utf-8 +2017-07-19 12:04:30.406 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:04:30.440 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:04:30.441 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:04:30.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:04:30.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:04:30.444 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:04:30.444 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:04:33.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["35", "8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:33.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:33.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:33.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:33.512 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:33.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3066.0477ms +2017-07-19 12:04:33.517 +05:30 [Information] Request finished in 3093.9621ms 200 application/json; charset=utf-8 +2017-07-19 12:04:33.517 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:04:33.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:04:33.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:04:33.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:04:33.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:04:33.531 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:04:33.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3086.0139ms +2017-07-19 12:04:33.536 +05:30 [Information] Request finished in 3112.7802ms 200 +2017-07-19 12:04:33.537 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:04:36.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:36.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:36.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:36.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:36.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3135.7564ms +2017-07-19 12:04:36.662 +05:30 [Information] Request finished in 3141.0789ms 200 application/json; charset=utf-8 +2017-07-19 12:04:36.663 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:04:36.670 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:04:36.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:04:36.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:04:39.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:39.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:39.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:39.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:39.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3092.6101ms +2017-07-19 12:04:39.769 +05:30 [Information] Request finished in 3099.4075ms 200 application/json; charset=utf-8 +2017-07-19 12:04:39.770 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" completed keep alive response. +2017-07-19 12:04:41.054 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:04:41.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:04:41.056 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:04:41.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:04:41.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:04:41.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:04:41.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:04:41.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:04:41.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:04:41.491 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:04:41.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:04:41.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:04:41.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:04:41.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:04:41.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:04:42.525 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:04:42.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:04:42.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:04:44.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:44.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:44.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:44.277 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:44.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:44.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:44.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:44.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:44.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:44.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3236.7885ms +2017-07-19 12:04:44.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:44.314 +05:30 [Information] Request finished in 3250.0476ms 200 application/json; charset=utf-8 +2017-07-19 12:04:44.315 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" completed keep alive response. +2017-07-19 12:04:44.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3248.441ms +2017-07-19 12:04:44.344 +05:30 [Information] Request finished in 3291.7121ms 200 application/json; charset=utf-8 +2017-07-19 12:04:44.344 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" completed keep alive response. +2017-07-19 12:04:44.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:44.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:44.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:04:44.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:44.791 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:44.792 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:44.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:44.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3319.5726ms +2017-07-19 12:04:44.890 +05:30 [Information] Request finished in 3388.9058ms 200 application/json; charset=utf-8 +2017-07-19 12:04:44.924 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" completed keep alive response. +2017-07-19 12:04:44.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:44.966 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:44.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:44.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:44.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3474.6669ms +2017-07-19 12:04:44.972 +05:30 [Information] Request finished in 3485.694ms 200 application/json; charset=utf-8 +2017-07-19 12:04:44.973 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" completed keep alive response. +2017-07-19 12:04:45.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:45.452 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:04:45.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:45.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:45.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3955.9971ms +2017-07-19 12:04:45.465 +05:30 [Information] Request finished in 3976.739ms 200 application/json; charset=utf-8 +2017-07-19 12:04:45.466 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" completed keep alive response. +2017-07-19 12:04:45.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce6f1e4d5fd4"]) - ModelState is Valid +2017-07-19 12:04:45.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:04:45.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:04:45.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:04:45.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3177.6888ms +2017-07-19 12:04:45.714 +05:30 [Information] Request finished in 3228.8022ms 200 application/json; charset=utf-8 +2017-07-19 12:04:45.715 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" completed keep alive response. +2017-07-19 12:06:17.576 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" received FIN. +2017-07-19 12:06:17.577 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" received FIN. +2017-07-19 12:06:17.579 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" received FIN. +2017-07-19 12:06:17.579 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" disconnecting. +2017-07-19 12:06:17.582 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" disconnecting. +2017-07-19 12:06:17.580 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" received FIN. +2017-07-19 12:06:17.588 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" received FIN. +2017-07-19 12:06:17.587 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" received FIN. +2017-07-19 12:06:17.588 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" disconnecting. +2017-07-19 12:06:17.591 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" received FIN. +2017-07-19 12:06:17.599 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" sending FIN. +2017-07-19 12:06:17.596 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" disconnecting. +2017-07-19 12:06:17.600 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" disconnecting. +2017-07-19 12:06:17.599 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" sending FIN. +2017-07-19 12:06:17.600 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" disconnecting. +2017-07-19 12:06:17.601 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" sending FIN. +2017-07-19 12:06:17.587 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" disconnecting. +2017-07-19 12:06:17.601 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" sending FIN. +2017-07-19 12:06:17.596 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" started. +2017-07-19 12:06:17.604 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" sent FIN with status "0". +2017-07-19 12:06:17.604 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" sending FIN. +2017-07-19 12:06:17.607 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" sending FIN. +2017-07-19 12:06:17.609 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" sending FIN. +2017-07-19 12:06:17.610 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" sent FIN with status "0". +2017-07-19 12:06:17.605 +05:30 [Debug] Connection id ""0HL6EDD3T3L2F"" stopped. +2017-07-19 12:06:17.614 +05:30 [Debug] Connection id ""0HL6EDD3T3L2D"" stopped. +2017-07-19 12:06:17.614 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" sent FIN with status "0". +2017-07-19 12:06:17.614 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" sent FIN with status "0". +2017-07-19 12:06:17.612 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:06:17.615 +05:30 [Debug] Connection id ""0HL6EDD3T3L2C"" stopped. +2017-07-19 12:06:17.615 +05:30 [Debug] Connection id ""0HL6EDD3T3L2E"" stopped. +2017-07-19 12:06:17.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:06:17.617 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" sent FIN with status "0". +2017-07-19 12:06:17.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:06:17.618 +05:30 [Debug] Connection id ""0HL6EDD3T3L2B"" stopped. +2017-07-19 12:06:17.616 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" sent FIN with status "0". +2017-07-19 12:06:17.621 +05:30 [Debug] Connection id ""0HL6EDD3T3L2A"" stopped. +2017-07-19 12:06:17.621 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" sent FIN with status "0". +2017-07-19 12:06:17.622 +05:30 [Debug] Connection id ""0HL6EDD3T3L2G"" stopped. +2017-07-19 12:06:20.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:06:20.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:20.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:20.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:20.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3127.2831ms +2017-07-19 12:06:20.755 +05:30 [Information] Request finished in 3148.659ms 200 application/json; charset=utf-8 +2017-07-19 12:06:20.756 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:06:20.828 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:06:20.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:06:20.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:06:23.867 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:23.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:23.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:23.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:23.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3108.5988ms +2017-07-19 12:06:23.944 +05:30 [Information] Request finished in 3116.3454ms 200 application/json; charset=utf-8 +2017-07-19 12:06:23.944 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:06:23.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:06:23.949 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:06:23.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:06:26.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:27.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:27.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:27.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:27.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3092.1591ms +2017-07-19 12:06:27.056 +05:30 [Information] Request finished in 3106.0887ms 200 application/json; charset=utf-8 +2017-07-19 12:06:27.056 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:06:28.587 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" started. +2017-07-19 12:06:28.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:06:28.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:06:28.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:06:28.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:06:28.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:06:28.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:06:29.068 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" started. +2017-07-19 12:06:29.072 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" started. +2017-07-19 12:06:29.073 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" started. +2017-07-19 12:06:29.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:06:29.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:06:29.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:06:29.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:06:29.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:06:29.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:06:29.087 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:06:29.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:06:29.089 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:06:29.931 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" started. +2017-07-19 12:06:29.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:06:29.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:06:29.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:06:30.459 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:30.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:30.558 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:30.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:30.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:30.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1472.2236ms +2017-07-19 12:06:30.567 +05:30 [Information] Request finished in 1485.6801ms 200 application/json; charset=utf-8 +2017-07-19 12:06:30.567 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:06:31.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:31.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:31.704 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:31.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:31.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:31.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3090.0006ms +2017-07-19 12:06:31.711 +05:30 [Information] Request finished in 3127.1249ms 200 application/json; charset=utf-8 +2017-07-19 12:06:31.711 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:06:31.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:31.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:31.866 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:31.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:31.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:31.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3249.207ms +2017-07-19 12:06:31.872 +05:30 [Information] Request finished in 3277.7928ms 200 application/json; charset=utf-8 +2017-07-19 12:06:31.872 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:06:32.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:32.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:32.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:32.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:32.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:32.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:32.445 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3365.9819ms +2017-07-19 12:06:32.448 +05:30 [Information] Request finished in 3375.2888ms 200 application/json; charset=utf-8 +2017-07-19 12:06:32.448 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:06:33.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:06:33.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:33.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:33.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:33.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3163.3411ms +2017-07-19 12:06:33.108 +05:30 [Information] Request finished in 3172.6678ms 200 application/json; charset=utf-8 +2017-07-19 12:06:33.109 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:06:34.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:34.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:34.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:34.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:34.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4968.5587ms +2017-07-19 12:06:34.059 +05:30 [Information] Request finished in 4982.6359ms 200 application/json; charset=utf-8 +2017-07-19 12:06:34.060 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:06:37.312 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:06:37.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:06:37.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:06:40.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:06:40.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:40.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:40.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:40.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3165.83ms +2017-07-19 12:06:40.486 +05:30 [Information] Request finished in 3173.9424ms 200 application/json; charset=utf-8 +2017-07-19 12:06:40.486 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:06:40.501 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:06:40.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:06:40.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:06:43.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:06:43.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:43.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:43.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:43.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3105.7792ms +2017-07-19 12:06:43.620 +05:30 [Information] Request finished in 3130.3471ms 200 application/json; charset=utf-8 +2017-07-19 12:06:43.621 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:06:43.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:06:43.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:06:43.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:06:46.689 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:06:46.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:46.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:46.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:46.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.7535ms +2017-07-19 12:06:46.701 +05:30 [Information] Request finished in 3073.646ms 200 application/json; charset=utf-8 +2017-07-19 12:06:46.702 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:06:46.707 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:06:46.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:06:46.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:06:49.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:49.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:49.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:49.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:49.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3107.8033ms +2017-07-19 12:06:49.820 +05:30 [Information] Request finished in 3113.7327ms 200 application/json; charset=utf-8 +2017-07-19 12:06:49.821 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:06:49.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:06:49.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:06:49.829 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:06:52.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:52.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:52.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:06:52.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:06:52.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.4721ms +2017-07-19 12:06:52.949 +05:30 [Information] Request finished in 3122.2208ms 200 application/json; charset=utf-8 +2017-07-19 12:06:52.950 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:06:54.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:06:54.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:06:54.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:06:54.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:06:54.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:06:54.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:06:54.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:06:54.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:06:54.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:06:54.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:06:54.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:06:54.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:06:55.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:06:55.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:06:55.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:06:56.785 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:06:56.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:06:56.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:06:59.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:06:59.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:06:59.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:06:59.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:00.009 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:00.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:00.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:00.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:00.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:00.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5867.7518ms +2017-07-19 12:07:00.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:00.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:00.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:00.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:00.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:00.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:00.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:00.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:00.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3372.2195ms +2017-07-19 12:07:00.218 +05:30 [Information] Request finished in 6042.4862ms 200 application/json; charset=utf-8 +2017-07-19 12:07:00.235 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:00.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:00.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:00.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:00.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6052.4522ms +2017-07-19 12:07:00.282 +05:30 [Information] Request finished in 3451.2957ms 200 application/json; charset=utf-8 +2017-07-19 12:07:00.285 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:00.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:00.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:07:00.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:07:00.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:07:00.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4364.6921ms +2017-07-19 12:07:00.354 +05:30 [Information] Request finished in 6196.3522ms 200 application/json; charset=utf-8 +2017-07-19 12:07:00.355 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:00.387 +05:30 [Information] Request finished in 4602.341ms 200 application/json; charset=utf-8 +2017-07-19 12:07:00.388 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:07:00.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:00.421 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:00.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:00.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:00.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5898.5696ms +2017-07-19 12:07:00.428 +05:30 [Information] Request finished in 5910.9067ms 200 application/json; charset=utf-8 +2017-07-19 12:07:00.429 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:07:01.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:01.109 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:01.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:01.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:01.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6579.3115ms +2017-07-19 12:07:01.116 +05:30 [Information] Request finished in 6596.2461ms 200 application/json; charset=utf-8 +2017-07-19 12:07:01.116 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:07:02.355 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:02.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:02.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:02.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:07:02.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:02.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:02.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:02.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2166.5342ms +2017-07-19 12:07:02.489 +05:30 [Information] Request finished in 2200.8799ms 200 application/json; charset=utf-8 +2017-07-19 12:07:02.490 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:02.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:07:02.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:07:02.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:07:05.408 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:05.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:05.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:05.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:05.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.5667ms +2017-07-19 12:07:05.427 +05:30 [Information] Request finished in 3074.9888ms 200 application/json; charset=utf-8 +2017-07-19 12:07:05.427 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:05.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:07:05.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:07:05.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:07:05.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:07:05.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:05.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:05.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:05.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3076.0687ms +2017-07-19 12:07:05.585 +05:30 [Information] Request finished in 3089.8622ms 200 application/json; charset=utf-8 +2017-07-19 12:07:05.586 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:08.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:07:08.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:08.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:08.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:08.487 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.9586ms +2017-07-19 12:07:08.490 +05:30 [Information] Request finished in 3059.6823ms 200 application/json; charset=utf-8 +2017-07-19 12:07:08.491 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:07:08.496 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:07:08.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:07:08.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:07:11.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:11.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:11.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:11.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:11.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3072.7068ms +2017-07-19 12:07:11.583 +05:30 [Information] Request finished in 3085.5203ms 200 application/json; charset=utf-8 +2017-07-19 12:07:11.584 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:07:11.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:07:11.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:07:11.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:07:14.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:14.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:14.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:14.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:14.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3135.8832ms +2017-07-19 12:07:14.752 +05:30 [Information] Request finished in 3157.8298ms 200 application/json; charset=utf-8 +2017-07-19 12:07:14.753 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:07:14.772 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:07:14.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:07:14.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:07:16.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:16.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:16.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:16.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:16.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2197.7433ms +2017-07-19 12:07:16.977 +05:30 [Information] Request finished in 2210.4976ms 200 application/json; charset=utf-8 +2017-07-19 12:07:16.978 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:24.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:07:24.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:07:24.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:07:24.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:07:24.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:07:24.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:07:25.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:07:25.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:07:25.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:07:25.399 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:07:25.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:07:25.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:07:25.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:07:25.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:07:25.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:07:26.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:26.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:26.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:27.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:27.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:27.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:27.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:27.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:27.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3156.0888ms +2017-07-19 12:07:28.001 +05:30 [Information] Request finished in 3182.9358ms 200 application/json; charset=utf-8 +2017-07-19 12:07:28.002 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:28.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:28.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:28.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:28.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:28.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:28.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3205.2403ms +2017-07-19 12:07:28.055 +05:30 [Information] Request finished in 3236.851ms 200 application/json; charset=utf-8 +2017-07-19 12:07:28.056 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:28.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:28.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:28.501 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:28.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:28.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:28.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:28.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3141.4775ms +2017-07-19 12:07:28.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:28.585 +05:30 [Information] Request finished in 3192.3857ms 200 application/json; charset=utf-8 +2017-07-19 12:07:28.602 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:07:28.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:28.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:28.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:28.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:28.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3376.8432ms +2017-07-19 12:07:28.786 +05:30 [Information] Request finished in 3408.4569ms 200 application/json; charset=utf-8 +2017-07-19 12:07:28.786 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:07:29.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:29.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:29.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:29.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:29.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3201.443ms +2017-07-19 12:07:29.220 +05:30 [Information] Request finished in 3214.1771ms 200 application/json; charset=utf-8 +2017-07-19 12:07:29.221 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:29.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:07:29.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:07:29.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:07:29.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:29.389 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:29.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:29.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:29.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3970.896ms +2017-07-19 12:07:29.396 +05:30 [Information] Request finished in 4017.6407ms 200 application/json; charset=utf-8 +2017-07-19 12:07:29.397 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:07:32.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:07:32.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:32.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:32.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:32.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3044.4994ms +2017-07-19 12:07:32.286 +05:30 [Information] Request finished in 3064.0762ms 200 application/json; charset=utf-8 +2017-07-19 12:07:32.287 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:32.294 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:07:32.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:07:32.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:07:32.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:32.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:32.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:35.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:07:35.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:35.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:35.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:35.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3091.1855ms +2017-07-19 12:07:35.393 +05:30 [Information] Request finished in 3098.7973ms 200 application/json; charset=utf-8 +2017-07-19 12:07:35.393 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:35.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:35.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:35.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:35.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:35.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3068.2596ms +2017-07-19 12:07:35.562 +05:30 [Information] Request finished in 3091.0981ms 200 application/json; charset=utf-8 +2017-07-19 12:07:35.563 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:07:35.575 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:07:35.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:07:35.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:07:38.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:07:38.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:38.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:38.632 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:38.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.2305ms +2017-07-19 12:07:38.637 +05:30 [Information] Request finished in 3072.1032ms 200 application/json; charset=utf-8 +2017-07-19 12:07:38.638 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:07:38.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:07:38.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:07:38.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:07:40.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:40.759 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:40.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:40.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:40.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2113.0533ms +2017-07-19 12:07:40.765 +05:30 [Information] Request finished in 2118.3186ms 200 application/json; charset=utf-8 +2017-07-19 12:07:40.765 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:40.773 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:07:40.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:07:40.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:07:43.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:43.904 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:43.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:43.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:43.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3133.0519ms +2017-07-19 12:07:43.926 +05:30 [Information] Request finished in 3154.3378ms 200 application/json; charset=utf-8 +2017-07-19 12:07:43.926 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:07:43.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:07:43.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:07:43.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:07:46.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:47.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:47.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:47.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:47.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3101.8431ms +2017-07-19 12:07:47.049 +05:30 [Information] Request finished in 3115.2771ms 200 application/json; charset=utf-8 +2017-07-19 12:07:47.050 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:48.253 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:07:48.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:07:48.254 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:07:48.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:07:48.256 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:07:48.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:07:48.645 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:07:48.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:07:48.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:07:48.649 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:07:48.649 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:07:48.650 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:07:48.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:07:48.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:07:48.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:07:49.187 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:49.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:49.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:51.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:51.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:51.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:51.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:51.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:51.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:51.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:51.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:51.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:51.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2196.084ms +2017-07-19 12:07:51.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:51.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3153.0277ms +2017-07-19 12:07:51.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:51.452 +05:30 [Information] Request finished in 2243.6124ms 200 application/json; charset=utf-8 +2017-07-19 12:07:51.452 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:51.452 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:51.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:51.474 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:07:51.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:51.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:07:51.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:07:51.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3219.3559ms +2017-07-19 12:07:51.478 +05:30 [Information] Request finished in 3198.0393ms 200 application/json; charset=utf-8 +2017-07-19 12:07:51.485 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:51.495 +05:30 [Information] Request finished in 3240.5821ms 200 application/json; charset=utf-8 +2017-07-19 12:07:51.497 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:07:51.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:51.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:51.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:51.810 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:51.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:51.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:07:51.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:51.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3226.5546ms +2017-07-19 12:07:51.916 +05:30 [Information] Request finished in 3274.0382ms 200 application/json; charset=utf-8 +2017-07-19 12:07:51.917 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:07:52.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:52.007 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:52.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:52.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:52.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3359.9923ms +2017-07-19 12:07:52.012 +05:30 [Information] Request finished in 3372.2711ms 200 application/json; charset=utf-8 +2017-07-19 12:07:52.013 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:07:52.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:52.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:07:52.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:52.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:52.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4015.1448ms +2017-07-19 12:07:52.686 +05:30 [Information] Request finished in 4044.5686ms 200 application/json; charset=utf-8 +2017-07-19 12:07:52.687 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:07:54.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:07:54.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:54.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:54.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:54.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3046.4573ms +2017-07-19 12:07:54.533 +05:30 [Information] Request finished in 3077.0669ms 200 application/json; charset=utf-8 +2017-07-19 12:07:54.534 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:07:54.542 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:07:54.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:07:54.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:07:57.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:07:57.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:57.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:57.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:57.633 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3088.4085ms +2017-07-19 12:07:57.636 +05:30 [Information] Request finished in 3093.7055ms 200 application/json; charset=utf-8 +2017-07-19 12:07:57.636 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:07:57.853 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:57.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:57.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:57.881 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:07:57.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:07:57.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:07:59.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:07:59.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:07:59.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:07:59.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:07:59.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2123.5798ms +2017-07-19 12:07:59.995 +05:30 [Information] Request finished in 2142.8227ms 200 application/json; charset=utf-8 +2017-07-19 12:07:59.996 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:08:00.043 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:08:00.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:08:00.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:08:00.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:08:00.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:00.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:00.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:00.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3038.6845ms +2017-07-19 12:08:00.925 +05:30 [Information] Request finished in 3046.1352ms 200 application/json; charset=utf-8 +2017-07-19 12:08:00.926 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:08:00.930 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:08:00.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:08:00.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:08:02.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:08:02.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:02.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:02.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:02.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2116.3964ms +2017-07-19 12:08:02.166 +05:30 [Information] Request finished in 2151.5313ms 200 application/json; charset=utf-8 +2017-07-19 12:08:02.166 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:08:02.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:08:02.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:08:02.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:08:03.999 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:08:04.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:04.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:04.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:04.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3073.494ms +2017-07-19 12:08:04.010 +05:30 [Information] Request finished in 3080.2958ms 200 application/json; charset=utf-8 +2017-07-19 12:08:04.010 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:08:04.023 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:08:04.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:08:04.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:08:05.232 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["36", "8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:08:05.268 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:08:05.270 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:08:05.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3096.7229ms +2017-07-19 12:08:05.277 +05:30 [Information] Request finished in 3105.0021ms 200 +2017-07-19 12:08:05.277 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:08:06.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce707f20618e"]) - ModelState is Valid +2017-07-19 12:08:06.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:06.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:06.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:06.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2142.4863ms +2017-07-19 12:08:06.181 +05:30 [Information] Request finished in 2159.7ms 200 application/json; charset=utf-8 +2017-07-19 12:08:06.181 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:08:06.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:08:06.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:08:06.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:08:09.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:09.339 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:09.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:09.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:09.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3105.4335ms +2017-07-19 12:08:09.343 +05:30 [Information] Request finished in 3110.1121ms 200 application/json; charset=utf-8 +2017-07-19 12:08:09.344 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:08:09.347 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:08:09.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:08:09.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:08:11.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:11.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:11.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:11.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:11.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2155.2204ms +2017-07-19 12:08:11.508 +05:30 [Information] Request finished in 2160.7078ms 200 application/json; charset=utf-8 +2017-07-19 12:08:11.508 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" completed keep alive response. +2017-07-19 12:08:12.881 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:08:12.883 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:08:12.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:08:12.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:08:12.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:08:12.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:08:13.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:08:13.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:08:13.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:08:13.242 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:08:13.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:08:13.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:08:13.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:08:13.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:08:13.262 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:08:16.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:16.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:16.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:08:16.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:16.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:16.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:16.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3162.0943ms +2017-07-19 12:08:16.134 +05:30 [Information] Request finished in 3239.2499ms 200 application/json; charset=utf-8 +2017-07-19 12:08:16.135 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" completed keep alive response. +2017-07-19 12:08:16.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:16.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:08:16.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:16.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:16.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3254.1018ms +2017-07-19 12:08:16.151 +05:30 [Information] Request finished in 3281.7521ms 200 application/json; charset=utf-8 +2017-07-19 12:08:16.152 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" completed keep alive response. +2017-07-19 12:08:16.346 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:16.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:16.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:08:16.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:16.476 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:08:16.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:16.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:16.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3241.9514ms +2017-07-19 12:08:16.536 +05:30 [Information] Request finished in 3312.6672ms 200 application/json; charset=utf-8 +2017-07-19 12:08:16.551 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" completed keep alive response. +2017-07-19 12:08:16.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:16.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:08:16.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:16.661 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:16.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3399.4771ms +2017-07-19 12:08:16.665 +05:30 [Information] Request finished in 3452.9732ms 200 application/json; charset=utf-8 +2017-07-19 12:08:16.665 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" completed keep alive response. +2017-07-19 12:08:17.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:08:17.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:08:17.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:08:17.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:08:17.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4080.8334ms +2017-07-19 12:08:17.367 +05:30 [Information] Request finished in 4154.1434ms 200 application/json; charset=utf-8 +2017-07-19 12:08:17.368 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" completed keep alive response. +2017-07-19 12:09:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" received FIN. +2017-07-19 12:09:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" disconnecting. +2017-07-19 12:09:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" sending FIN. +2017-07-19 12:09:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" sent FIN with status "0". +2017-07-19 12:09:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L2J"" stopped. +2017-07-19 12:11:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" received FIN. +2017-07-19 12:11:12.773 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" received FIN. +2017-07-19 12:11:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" received FIN. +2017-07-19 12:11:12.775 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" disconnecting. +2017-07-19 12:11:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" disconnecting. +2017-07-19 12:11:12.777 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" disconnecting. +2017-07-19 12:11:12.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" received FIN. +2017-07-19 12:11:12.782 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" sending FIN. +2017-07-19 12:11:12.783 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" sent FIN with status "0". +2017-07-19 12:11:12.784 +05:30 [Debug] Connection id ""0HL6EDD3T3L2K"" stopped. +2017-07-19 12:11:12.776 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" received FIN. +2017-07-19 12:11:12.786 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" sending FIN. +2017-07-19 12:11:12.787 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" sending FIN. +2017-07-19 12:11:12.788 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" sent FIN with status "0". +2017-07-19 12:11:12.788 +05:30 [Debug] Connection id ""0HL6EDD3T3L2L"" stopped. +2017-07-19 12:11:12.791 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" disconnecting. +2017-07-19 12:11:12.793 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" sent FIN with status "0". +2017-07-19 12:11:12.795 +05:30 [Debug] Connection id ""0HL6EDD3T3L2I"" stopped. +2017-07-19 12:11:12.796 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" sending FIN. +2017-07-19 12:11:12.799 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" sent FIN with status "0". +2017-07-19 12:11:12.783 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" disconnecting. +2017-07-19 12:11:12.800 +05:30 [Debug] Connection id ""0HL6EDD3T3L2M"" stopped. +2017-07-19 12:11:12.802 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" sending FIN. +2017-07-19 12:11:12.805 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" sent FIN with status "0". +2017-07-19 12:11:12.806 +05:30 [Debug] Connection id ""0HL6EDD3T3L2H"" stopped. +2017-07-19 12:13:57.136 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" started. +2017-07-19 12:13:57.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:13:57.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:13:57.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:14:00.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:14:00.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:00.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:00.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:00.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3245.8587ms +2017-07-19 12:14:00.415 +05:30 [Information] Request finished in 3274.9569ms 200 application/json; charset=utf-8 +2017-07-19 12:14:00.416 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:00.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:14:00.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:14:00.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:14:03.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:03.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:03.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:03.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:03.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3100.3272ms +2017-07-19 12:14:03.578 +05:30 [Information] Request finished in 3106.4105ms 200 application/json; charset=utf-8 +2017-07-19 12:14:03.578 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:03.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:03.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:03.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:05.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:05.738 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:05.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:05.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:05.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2150.6884ms +2017-07-19 12:14:05.748 +05:30 [Information] Request finished in 2164.7696ms 200 application/json; charset=utf-8 +2017-07-19 12:14:05.749 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:08.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:14:08.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:14:08.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:14:09.037 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" started. +2017-07-19 12:14:09.044 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" started. +2017-07-19 12:14:09.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:14:09.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:14:09.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:14:09.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:14:09.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:14:09.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:14:09.590 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" started. +2017-07-19 12:14:09.590 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" started. +2017-07-19 12:14:09.604 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" started. +2017-07-19 12:14:09.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:14:09.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:14:09.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:14:09.636 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:14:09.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:14:09.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:14:09.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:09.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:09.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:10.859 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" started. +2017-07-19 12:14:10.864 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:14:10.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:14:10.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:14:11.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:12.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:12.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:12.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3208.4149ms +2017-07-19 12:14:12.089 +05:30 [Information] Request finished in 3245.6143ms 200 application/json; charset=utf-8 +2017-07-19 12:14:12.091 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:12.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:12.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:12.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:12.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:12.174 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:12.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:12.176 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:12.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3052.9253ms +2017-07-19 12:14:12.180 +05:30 [Information] Request finished in 3074.8782ms 200 application/json; charset=utf-8 +2017-07-19 12:14:12.181 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" completed keep alive response. +2017-07-19 12:14:12.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:12.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:12.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:12.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:12.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3303.1451ms +2017-07-19 12:14:12.413 +05:30 [Information] Request finished in 3369.4011ms 200 application/json; charset=utf-8 +2017-07-19 12:14:12.413 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" completed keep alive response. +2017-07-19 12:14:12.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:12.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:12.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:12.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:12.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:12.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3285.9556ms +2017-07-19 12:14:12.989 +05:30 [Information] Request finished in 3349.1261ms 200 application/json; charset=utf-8 +2017-07-19 12:14:13.008 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" completed keep alive response. +2017-07-19 12:14:13.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:13.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:13.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:13.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:13.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3493.6329ms +2017-07-19 12:14:13.112 +05:30 [Information] Request finished in 3506.9424ms 200 application/json; charset=utf-8 +2017-07-19 12:14:13.113 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" completed keep alive response. +2017-07-19 12:14:13.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:13.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:13.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:13.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:13.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3888.5195ms +2017-07-19 12:14:13.534 +05:30 [Information] Request finished in 3922.7354ms 200 application/json; charset=utf-8 +2017-07-19 12:14:13.535 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" completed keep alive response. +2017-07-19 12:14:13.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:14:13.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:13.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:13.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:13.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3102.4755ms +2017-07-19 12:14:13.986 +05:30 [Information] Request finished in 3122.3615ms 200 application/json; charset=utf-8 +2017-07-19 12:14:13.986 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" completed keep alive response. +2017-07-19 12:14:15.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:15.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:15.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:15.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:15.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3120.4572ms +2017-07-19 12:14:15.235 +05:30 [Information] Request finished in 3133.435ms 200 application/json; charset=utf-8 +2017-07-19 12:14:15.235 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:16.083 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:14:16.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:14:16.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:14:16.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:14:16.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:14:16.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:14:16.521 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:16.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:16.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:16.525 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:14:16.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:14:16.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:14:16.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:14:16.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:14:16.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:14:17.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:14:17.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:14:17.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:14:19.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:19.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:19.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:19.427 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:19.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:19.430 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:19.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3336.2996ms +2017-07-19 12:14:19.437 +05:30 [Information] Request finished in 3367.4138ms 200 application/json; charset=utf-8 +2017-07-19 12:14:19.437 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" completed keep alive response. +2017-07-19 12:14:19.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:19.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:19.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:19.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:19.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3377.4957ms +2017-07-19 12:14:19.475 +05:30 [Information] Request finished in 3406.0447ms 200 application/json; charset=utf-8 +2017-07-19 12:14:19.475 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" completed keep alive response. +2017-07-19 12:14:19.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:19.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:19.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:19.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:19.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:19.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:19.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3191.3402ms +2017-07-19 12:14:19.718 +05:30 [Information] Request finished in 3201.7698ms 200 application/json; charset=utf-8 +2017-07-19 12:14:19.718 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" completed keep alive response. +2017-07-19 12:14:20.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:20.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:14:20.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:20.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:20.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:20.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:20.541 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:14:20.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:20.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:20.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:20.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4018.2208ms +2017-07-19 12:14:20.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4007.1599ms +2017-07-19 12:14:20.553 +05:30 [Information] Request finished in 4035.9099ms 200 application/json; charset=utf-8 +2017-07-19 12:14:20.554 +05:30 [Information] Request finished in 4034.488ms 200 application/json; charset=utf-8 +2017-07-19 12:14:20.554 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" completed keep alive response. +2017-07-19 12:14:20.559 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" completed keep alive response. +2017-07-19 12:14:20.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:20.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:20.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:20.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3409.1697ms +2017-07-19 12:14:20.617 +05:30 [Information] Request finished in 3445.7934ms 200 application/json; charset=utf-8 +2017-07-19 12:14:20.618 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" completed keep alive response. +2017-07-19 12:14:42.469 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:14:42.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:14:42.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:14:42.492 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:14:42.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:14:42.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:14:44.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7191d91c56"]) - ModelState is Valid +2017-07-19 12:14:44.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:44.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:44.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:44.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2106.9561ms +2017-07-19 12:14:44.584 +05:30 [Information] Request finished in 2117.6064ms 200 application/json; charset=utf-8 +2017-07-19 12:14:44.585 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:44.587 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:14:44.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:14:44.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:14:45.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7191d91c56"]) - ModelState is Valid +2017-07-19 12:14:45.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:45.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:45.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:45.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.1958ms +2017-07-19 12:14:45.570 +05:30 [Information] Request finished in 3078.072ms 200 application/json; charset=utf-8 +2017-07-19 12:14:45.571 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" completed keep alive response. +2017-07-19 12:14:45.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:14:45.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:14:45.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:14:47.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:14:47.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:47.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:47.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:47.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3074.2532ms +2017-07-19 12:14:47.667 +05:30 [Information] Request finished in 3079.9879ms 200 application/json; charset=utf-8 +2017-07-19 12:14:47.667 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" completed keep alive response. +2017-07-19 12:14:47.674 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:14:47.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:14:47.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:14:48.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:14:48.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:48.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:48.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:48.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3120.2997ms +2017-07-19 12:14:48.703 +05:30 [Information] Request finished in 3127.4934ms 200 application/json; charset=utf-8 +2017-07-19 12:14:48.703 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" completed keep alive response. +2017-07-19 12:14:48.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:14:48.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:14:48.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:14:50.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["37", "8d4ce7191d91c56"]) - ModelState is Valid +2017-07-19 12:14:50.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:14:50.884 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:14:50.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3208.6566ms +2017-07-19 12:14:50.887 +05:30 [Information] Request finished in 3214.283ms 200 +2017-07-19 12:14:50.888 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" completed keep alive response. +2017-07-19 12:14:51.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce7191d91c56"]) - ModelState is Valid +2017-07-19 12:14:51.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:51.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:51.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:51.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3136.0868ms +2017-07-19 12:14:51.855 +05:30 [Information] Request finished in 3141.7904ms 200 application/json; charset=utf-8 +2017-07-19 12:14:51.856 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" completed keep alive response. +2017-07-19 12:14:51.894 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:14:51.895 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:14:51.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:14:54.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:55.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:55.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:55.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:55.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3121.2356ms +2017-07-19 12:14:55.021 +05:30 [Information] Request finished in 3126.3042ms 200 application/json; charset=utf-8 +2017-07-19 12:14:55.021 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" completed keep alive response. +2017-07-19 12:14:55.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:55.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:55.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:57.124 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:14:57.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:14:57.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:14:57.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:14:57.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2155.4796ms +2017-07-19 12:14:57.187 +05:30 [Information] Request finished in 2161.1448ms 200 application/json; charset=utf-8 +2017-07-19 12:14:57.187 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" completed keep alive response. +2017-07-19 12:14:58.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:14:58.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:14:58.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:14:58.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:14:58.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:14:58.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:14:59.108 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:14:59.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:14:59.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:14:59.111 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:14:59.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:14:59.113 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:14:59.114 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:14:59.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:14:59.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:15:00.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:15:00.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:00.761 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:15:00.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:00.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:00.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2203.3165ms +2017-07-19 12:15:00.767 +05:30 [Information] Request finished in 2211.9907ms 200 application/json; charset=utf-8 +2017-07-19 12:15:00.767 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" completed keep alive response. +2017-07-19 12:15:01.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:15:01.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:01.758 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:15:01.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:01.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:01.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3199.3215ms +2017-07-19 12:15:01.765 +05:30 [Information] Request finished in 3211.0727ms 200 application/json; charset=utf-8 +2017-07-19 12:15:01.766 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" completed keep alive response. +2017-07-19 12:15:02.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:15:02.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:15:02.311 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:15:02.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:02.331 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:15:02.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:02.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:02.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3250.9832ms +2017-07-19 12:15:02.366 +05:30 [Information] Request finished in 3279.6799ms 200 application/json; charset=utf-8 +2017-07-19 12:15:02.393 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" completed keep alive response. +2017-07-19 12:15:02.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:02.518 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:15:02.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:02.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:02.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3403.8637ms +2017-07-19 12:15:02.525 +05:30 [Information] Request finished in 3436.6633ms 200 application/json; charset=utf-8 +2017-07-19 12:15:02.525 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" completed keep alive response. +2017-07-19 12:15:03.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:03.136 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:15:03.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:03.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:03.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4022.6944ms +2017-07-19 12:15:03.143 +05:30 [Information] Request finished in 4056.2065ms 200 application/json; charset=utf-8 +2017-07-19 12:15:03.143 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" completed keep alive response. +2017-07-19 12:15:09.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:15:09.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:15:09.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:15:12.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7191d91c56"]) - ModelState is Valid +2017-07-19 12:15:12.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:15:12.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:15:12.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:15:12.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2218.4177ms +2017-07-19 12:15:12.157 +05:30 [Information] Request finished in 2225.5376ms 200 application/json; charset=utf-8 +2017-07-19 12:15:12.158 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" completed keep alive response. +2017-07-19 12:16:22.702 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" received FIN. +2017-07-19 12:16:22.702 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" received FIN. +2017-07-19 12:16:22.704 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" received FIN. +2017-07-19 12:16:22.705 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" received FIN. +2017-07-19 12:16:22.705 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" disconnecting. +2017-07-19 12:16:22.706 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" received FIN. +2017-07-19 12:16:22.707 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" received FIN. +2017-07-19 12:16:22.704 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" disconnecting. +2017-07-19 12:16:22.708 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" sending FIN. +2017-07-19 12:16:22.712 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" disconnecting. +2017-07-19 12:16:22.712 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" sent FIN with status "0". +2017-07-19 12:16:22.712 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" disconnecting. +2017-07-19 12:16:22.714 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" disconnecting. +2017-07-19 12:16:22.708 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" received FIN. +2017-07-19 12:16:22.716 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" sending FIN. +2017-07-19 12:16:22.716 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" sending FIN. +2017-07-19 12:16:22.716 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" disconnecting. +2017-07-19 12:16:22.717 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" sent FIN with status "0". +2017-07-19 12:16:22.709 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" disconnecting. +2017-07-19 12:16:22.718 +05:30 [Debug] Connection id ""0HL6EDD3T3L2Q"" stopped. +2017-07-19 12:16:22.713 +05:30 [Debug] Connection id ""0HL6EDD3T3L2P"" stopped. +2017-07-19 12:16:22.721 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" sent FIN with status "0". +2017-07-19 12:16:22.725 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" sending FIN. +2017-07-19 12:16:22.729 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" sending FIN. +2017-07-19 12:16:22.728 +05:30 [Debug] Connection id ""0HL6EDD3T3L2N"" stopped. +2017-07-19 12:16:22.730 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" sending FIN. +2017-07-19 12:16:22.729 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" started. +2017-07-19 12:16:22.731 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" sending FIN. +2017-07-19 12:16:22.732 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" sent FIN with status "0". +2017-07-19 12:16:22.733 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" sent FIN with status "0". +2017-07-19 12:16:22.737 +05:30 [Debug] Connection id ""0HL6EDD3T3L2S"" stopped. +2017-07-19 12:16:22.740 +05:30 [Debug] Connection id ""0HL6EDD3T3L2O"" stopped. +2017-07-19 12:16:22.741 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" sent FIN with status "0". +2017-07-19 12:16:22.741 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" sent FIN with status "0". +2017-07-19 12:16:22.742 +05:30 [Debug] Connection id ""0HL6EDD3T3L2T"" stopped. +2017-07-19 12:16:22.743 +05:30 [Debug] Connection id ""0HL6EDD3T3L2R"" stopped. +2017-07-19 12:16:22.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:16:22.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:16:22.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:16:25.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:16:25.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:25.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:25.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:25.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3203.1351ms +2017-07-19 12:16:25.953 +05:30 [Information] Request finished in 3208.4381ms 200 application/json; charset=utf-8 +2017-07-19 12:16:25.954 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:16:26.009 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:16:26.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:16:26.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:16:29.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:29.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:29.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:29.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:29.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3109.8095ms +2017-07-19 12:16:29.128 +05:30 [Information] Request finished in 3118.0021ms 200 application/json; charset=utf-8 +2017-07-19 12:16:29.129 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:16:29.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:16:29.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:16:29.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:16:32.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:32.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:32.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:32.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:32.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.5469ms +2017-07-19 12:16:32.266 +05:30 [Information] Request finished in 3124.9399ms 200 application/json; charset=utf-8 +2017-07-19 12:16:32.267 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:16:33.696 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" started. +2017-07-19 12:16:33.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:16:33.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:16:33.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:16:33.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:16:33.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:16:33.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:16:34.160 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" started. +2017-07-19 12:16:34.160 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" started. +2017-07-19 12:16:34.163 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:16:34.164 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" started. +2017-07-19 12:16:34.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:16:34.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:16:34.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:16:34.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:16:34.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:16:35.003 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" started. +2017-07-19 12:16:35.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:16:35.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:16:35.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:16:35.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:16:35.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:16:35.793 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:16:38.018 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:38.058 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:38.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:38.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:16:38.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:38.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:38.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:38.117 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:16:38.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:38.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4393.9238ms +2017-07-19 12:16:38.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:38.123 +05:30 [Information] Request finished in 4424.7367ms 200 application/json; charset=utf-8 +2017-07-19 12:16:38.124 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" completed keep alive response. +2017-07-19 12:16:38.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4401.3681ms +2017-07-19 12:16:38.130 +05:30 [Information] Request finished in 4432.3892ms 200 application/json; charset=utf-8 +2017-07-19 12:16:38.131 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:16:38.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:38.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:39.008 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:16:39.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:16:39.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:39.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:16:39.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:39.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:39.251 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5063.4214ms +2017-07-19 12:16:39.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:39.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:39.270 +05:30 [Information] Request finished in 5092.3359ms 200 application/json; charset=utf-8 +2017-07-19 12:16:39.290 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" completed keep alive response. +2017-07-19 12:16:39.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:39.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:16:39.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:39.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:39.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:39.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3506.2726ms +2017-07-19 12:16:39.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5152.498ms +2017-07-19 12:16:39.335 +05:30 [Information] Request finished in 3542.0316ms 200 application/json; charset=utf-8 +2017-07-19 12:16:39.336 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" completed keep alive response. +2017-07-19 12:16:39.339 +05:30 [Information] Request finished in 5172.0626ms 200 application/json; charset=utf-8 +2017-07-19 12:16:39.339 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" completed keep alive response. +2017-07-19 12:16:39.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:16:39.910 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:16:39.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:16:39.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:16:39.922 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4645.8827ms +2017-07-19 12:16:39.928 +05:30 [Information] Request finished in 4662.6561ms 200 application/json; charset=utf-8 +2017-07-19 12:16:39.930 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" completed keep alive response. +2017-07-19 12:17:03.482 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:17:03.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:17:03.484 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:17:03.518 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:17:03.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:17:03.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:17:05.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce71e8675c49"]) - ModelState is Valid +2017-07-19 12:17:05.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:05.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:05.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:05.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2095.4337ms +2017-07-19 12:17:05.585 +05:30 [Information] Request finished in 2103.7474ms 200 application/json; charset=utf-8 +2017-07-19 12:17:05.585 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" completed keep alive response. +2017-07-19 12:17:05.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:17:05.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:17:05.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:17:06.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce71e8675c49"]) - ModelState is Valid +2017-07-19 12:17:06.579 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:06.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:06.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:06.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3059.9293ms +2017-07-19 12:17:06.585 +05:30 [Information] Request finished in 3068.3754ms 200 application/json; charset=utf-8 +2017-07-19 12:17:06.586 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:17:06.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:17:06.589 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:17:06.590 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:17:08.688 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:17:08.692 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:08.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:08.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:08.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3087.171ms +2017-07-19 12:17:08.699 +05:30 [Information] Request finished in 3108.4588ms 200 application/json; charset=utf-8 +2017-07-19 12:17:08.699 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" completed keep alive response. +2017-07-19 12:17:08.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:17:08.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:17:08.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:17:09.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:17:09.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:09.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:09.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:09.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3052.2701ms +2017-07-19 12:17:09.647 +05:30 [Information] Request finished in 3058.2611ms 200 application/json; charset=utf-8 +2017-07-19 12:17:09.648 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" completed keep alive response. +2017-07-19 12:17:09.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:17:09.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:17:09.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:17:11.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["38", "8d4ce71e8675c49"]) - ModelState is Valid +2017-07-19 12:17:11.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:17:11.854 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:17:11.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3145.9721ms +2017-07-19 12:17:11.859 +05:30 [Information] Request finished in 3151.2006ms 200 +2017-07-19 12:17:11.859 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" completed keep alive response. +2017-07-19 12:17:12.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce71e8675c49"]) - ModelState is Valid +2017-07-19 12:17:12.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:12.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:12.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:12.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.4549ms +2017-07-19 12:17:12.735 +05:30 [Information] Request finished in 3078.2461ms 200 application/json; charset=utf-8 +2017-07-19 12:17:12.736 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" completed keep alive response. +2017-07-19 12:17:12.765 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:17:12.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:17:12.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:17:15.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:15.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:15.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:15.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:15.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3085.3256ms +2017-07-19 12:17:15.855 +05:30 [Information] Request finished in 3090.3184ms 200 application/json; charset=utf-8 +2017-07-19 12:17:15.855 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" completed keep alive response. +2017-07-19 12:17:15.863 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:17:15.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:17:15.865 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:17:18.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:18.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:18.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:18.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:18.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3122.6787ms +2017-07-19 12:17:18.998 +05:30 [Information] Request finished in 3137.2124ms 200 application/json; charset=utf-8 +2017-07-19 12:17:19.000 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" completed keep alive response. +2017-07-19 12:17:26.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:17:26.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:17:26.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:17:26.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:17:26.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:17:26.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:17:26.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:17:26.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:17:26.568 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:17:26.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:17:26.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:17:26.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:17:26.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:17:26.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:17:26.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:17:28.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:28.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:28.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:17:28.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:28.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:28.464 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2283.7312ms +2017-07-19 12:17:28.467 +05:30 [Information] Request finished in 2319.6997ms 200 application/json; charset=utf-8 +2017-07-19 12:17:28.468 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" completed keep alive response. +2017-07-19 12:17:29.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:29.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:29.266 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:17:29.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:29.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:29.272 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3097.5956ms +2017-07-19 12:17:29.283 +05:30 [Information] Request finished in 3135.0479ms 200 application/json; charset=utf-8 +2017-07-19 12:17:29.284 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" completed keep alive response. +2017-07-19 12:17:29.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:29.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:29.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:29.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:17:29.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:17:29.742 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:29.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:29.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3197.3633ms +2017-07-19 12:17:29.846 +05:30 [Information] Request finished in 3284.7879ms 200 application/json; charset=utf-8 +2017-07-19 12:17:29.847 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" completed keep alive response. +2017-07-19 12:17:29.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:29.953 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:17:29.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:29.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:29.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3376.3184ms +2017-07-19 12:17:29.958 +05:30 [Information] Request finished in 3396.5663ms 200 application/json; charset=utf-8 +2017-07-19 12:17:29.959 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" completed keep alive response. +2017-07-19 12:17:30.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:17:30.573 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:17:30.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:17:30.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:17:30.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4000.2559ms +2017-07-19 12:17:30.579 +05:30 [Information] Request finished in 4017.4186ms 200 application/json; charset=utf-8 +2017-07-19 12:17:30.579 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" completed keep alive response. +2017-07-19 12:18:38.032 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" received FIN. +2017-07-19 12:18:38.033 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" received FIN. +2017-07-19 12:18:38.035 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" received FIN. +2017-07-19 12:18:38.032 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" received FIN. +2017-07-19 12:18:38.033 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" disconnecting. +2017-07-19 12:18:38.047 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" disconnecting. +2017-07-19 12:18:38.036 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" disconnecting. +2017-07-19 12:18:38.049 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" disconnecting. +2017-07-19 12:18:38.050 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" sending FIN. +2017-07-19 12:18:38.050 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" sending FIN. +2017-07-19 12:18:38.051 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" sending FIN. +2017-07-19 12:18:38.052 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" sent FIN with status "0". +2017-07-19 12:18:38.047 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" received FIN. +2017-07-19 12:18:38.052 +05:30 [Debug] Connection id ""0HL6EDD3T3L2V"" stopped. +2017-07-19 12:18:38.056 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" sent FIN with status "0". +2017-07-19 12:18:38.053 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" received FIN. +2017-07-19 12:18:38.061 +05:30 [Debug] Connection id ""0HL6EDD3T3L30"" stopped. +2017-07-19 12:18:38.062 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" sending FIN. +2017-07-19 12:18:38.062 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" sent FIN with status "0". +2017-07-19 12:18:38.063 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" started. +2017-07-19 12:18:38.063 +05:30 [Debug] Connection id ""0HL6EDD3T3L33"" stopped. +2017-07-19 12:18:38.061 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" disconnecting. +2017-07-19 12:18:38.064 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" disconnecting. +2017-07-19 12:18:38.064 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" sent FIN with status "0". +2017-07-19 12:18:38.067 +05:30 [Debug] Connection id ""0HL6EDD3T3L2U"" stopped. +2017-07-19 12:18:38.068 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" sending FIN. +2017-07-19 12:18:38.068 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" sending FIN. +2017-07-19 12:18:38.069 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" sent FIN with status "0". +2017-07-19 12:18:38.070 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:18:38.071 +05:30 [Debug] Connection id ""0HL6EDD3T3L32"" stopped. +2017-07-19 12:18:38.073 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" sent FIN with status "0". +2017-07-19 12:18:38.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:18:38.075 +05:30 [Debug] Connection id ""0HL6EDD3T3L31"" stopped. +2017-07-19 12:18:38.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:18:40.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce71e8675c49"]) - ModelState is Valid +2017-07-19 12:18:40.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:18:40.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:18:40.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:18:40.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2357.4275ms +2017-07-19 12:18:40.443 +05:30 [Information] Request finished in 2372.7601ms 200 application/json; charset=utf-8 +2017-07-19 12:18:40.443 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:18:46.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:18:46.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:18:46.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:18:49.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:18:49.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:18:49.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:18:49.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:18:49.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3142.3148ms +2017-07-19 12:18:49.848 +05:30 [Information] Request finished in 3153.7912ms 200 application/json; charset=utf-8 +2017-07-19 12:18:49.848 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:18:49.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:18:49.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:18:49.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:18:53.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:18:53.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:18:53.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:18:53.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:18:53.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3140.8661ms +2017-07-19 12:18:53.084 +05:30 [Information] Request finished in 3149.44ms 200 application/json; charset=utf-8 +2017-07-19 12:18:53.084 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:18:53.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:18:53.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:18:53.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:18:56.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:18:56.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:18:56.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:18:56.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:18:56.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3116.2249ms +2017-07-19 12:18:56.229 +05:30 [Information] Request finished in 3129.2821ms 200 application/json; charset=utf-8 +2017-07-19 12:18:56.229 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:18:57.674 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" started. +2017-07-19 12:18:57.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:18:57.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:18:57.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:18:57.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:18:57.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:18:57.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:18:58.015 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" started. +2017-07-19 12:18:58.016 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" started. +2017-07-19 12:18:58.019 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" started. +2017-07-19 12:18:58.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:18:58.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:18:58.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:18:58.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:18:58.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:18:58.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:18:58.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:18:58.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:18:58.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:18:58.711 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" started. +2017-07-19 12:18:58.713 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:18:58.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:18:58.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:19:00.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:00.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:00.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:00.890 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:00.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:00.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:00.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:00.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:00.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:00.895 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:00.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3209.5587ms +2017-07-19 12:19:00.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3208.1792ms +2017-07-19 12:19:00.924 +05:30 [Information] Request finished in 3247.0627ms 200 application/json; charset=utf-8 +2017-07-19 12:19:00.925 +05:30 [Information] Request finished in 3247.0846ms 200 application/json; charset=utf-8 +2017-07-19 12:19:00.925 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:19:00.928 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:19:01.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:01.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:01.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:01.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:01.338 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:01.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:01.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:01.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:01.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:01.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3326.3548ms +2017-07-19 12:19:01.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:01.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:01.394 +05:30 [Information] Request finished in 3355.4819ms 200 application/json; charset=utf-8 +2017-07-19 12:19:01.396 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" completed keep alive response. +2017-07-19 12:19:01.414 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3361.5182ms +2017-07-19 12:19:01.420 +05:30 [Information] Request finished in 3394.9984ms 200 application/json; charset=utf-8 +2017-07-19 12:19:01.421 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" completed keep alive response. +2017-07-19 12:19:01.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:19:01.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:01.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:01.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:01.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3124.6545ms +2017-07-19 12:19:01.843 +05:30 [Information] Request finished in 3129.9287ms 200 application/json; charset=utf-8 +2017-07-19 12:19:01.843 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:19:02.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:02.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:02.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:02.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:02.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4097.2817ms +2017-07-19 12:19:02.144 +05:30 [Information] Request finished in 4124.8862ms 200 application/json; charset=utf-8 +2017-07-19 12:19:02.145 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" completed keep alive response. +2017-07-19 12:19:22.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:19:22.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:19:22.910 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:19:22.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:19:22.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:19:22.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:19:25.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:19:25.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:19:25.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:25.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:25.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:25.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:25.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.3368ms +2017-07-19 12:19:25.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:26.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:26.021 +05:30 [Information] Request finished in 3091.9079ms 200 application/json; charset=utf-8 +2017-07-19 12:19:26.021 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:19:26.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.968ms +2017-07-19 12:19:26.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:19:26.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:19:26.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:19:26.036 +05:30 [Information] Request finished in 3119.329ms 200 application/json; charset=utf-8 +2017-07-19 12:19:26.037 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:19:26.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:19:26.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:19:26.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:19:29.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:19:29.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:29.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:29.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:19:29.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:29.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:29.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:29.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3079.731ms +2017-07-19 12:19:29.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:29.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3069.0952ms +2017-07-19 12:19:29.120 +05:30 [Information] Request finished in 3092.4449ms 200 application/json; charset=utf-8 +2017-07-19 12:19:29.121 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" completed keep alive response. +2017-07-19 12:19:29.135 +05:30 [Information] Request finished in 3078.5709ms 200 application/json; charset=utf-8 +2017-07-19 12:19:29.135 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" completed keep alive response. +2017-07-19 12:19:29.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:19:29.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:19:29.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:19:29.164 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:19:29.165 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:19:29.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:19:32.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["39", "8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:19:32.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:19:32.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:32.248 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:32.249 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:32.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3096.9357ms +2017-07-19 12:19:32.257 +05:30 [Information] Request finished in 3117.6419ms 200 application/json; charset=utf-8 +2017-07-19 12:19:32.258 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:19:32.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:19:32.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:19:32.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:19:32.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:19:32.283 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:19:32.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3118.0295ms +2017-07-19 12:19:32.290 +05:30 [Information] Request finished in 3132.603ms 200 +2017-07-19 12:19:32.291 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" completed keep alive response. +2017-07-19 12:19:35.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:35.380 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:35.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:35.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:35.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3107.7397ms +2017-07-19 12:19:35.394 +05:30 [Information] Request finished in 3125.6434ms 200 application/json; charset=utf-8 +2017-07-19 12:19:35.395 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:19:35.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:19:35.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:19:35.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:19:38.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:38.530 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:38.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:38.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:38.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.2614ms +2017-07-19 12:19:38.536 +05:30 [Information] Request finished in 3133.6412ms 200 application/json; charset=utf-8 +2017-07-19 12:19:38.537 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:19:40.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:19:40.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:19:40.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:19:40.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:19:40.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:19:40.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:19:40.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:19:40.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:19:40.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:19:40.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:19:40.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:19:40.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:19:40.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:19:40.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:19:40.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:19:41.243 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:19:41.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:19:41.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:19:41.750 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:41.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:41.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:41.995 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:41.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:41.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:42.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 1441.0346ms +2017-07-19 12:19:42.006 +05:30 [Information] Request finished in 1454.1902ms 200 application/json; charset=utf-8 +2017-07-19 12:19:42.007 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:19:42.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:42.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:42.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:42.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:42.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:42.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2235.8079ms +2017-07-19 12:19:42.384 +05:30 [Information] Request finished in 2245.2035ms 200 application/json; charset=utf-8 +2017-07-19 12:19:42.385 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" completed keep alive response. +2017-07-19 12:19:42.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:42.692 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:42.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:42.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:42.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2133.1099ms +2017-07-19 12:19:42.701 +05:30 [Information] Request finished in 2149.2539ms 200 application/json; charset=utf-8 +2017-07-19 12:19:42.701 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" completed keep alive response. +2017-07-19 12:19:43.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:43.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:43.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:43.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:43.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:43.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3234.9656ms +2017-07-19 12:19:43.382 +05:30 [Information] Request finished in 3242.9522ms 200 application/json; charset=utf-8 +2017-07-19 12:19:43.382 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" completed keep alive response. +2017-07-19 12:19:43.611 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:19:43.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:43.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:19:43.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:43.673 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:43.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.0512ms +2017-07-19 12:19:43.677 +05:30 [Information] Request finished in 3126.3532ms 200 application/json; charset=utf-8 +2017-07-19 12:19:43.678 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" completed keep alive response. +2017-07-19 12:19:44.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:19:44.481 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:19:44.482 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:19:44.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:19:44.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3237.3301ms +2017-07-19 12:19:44.487 +05:30 [Information] Request finished in 3261.0373ms 200 application/json; charset=utf-8 +2017-07-19 12:19:44.488 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:20:35.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:20:35.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:20:35.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:20:39.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce723d6a89a3"]) - ModelState is Valid +2017-07-19 12:20:39.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:39.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:39.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:39.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3118.2497ms +2017-07-19 12:20:39.109 +05:30 [Information] Request finished in 3142.4211ms 200 application/json; charset=utf-8 +2017-07-19 12:20:39.111 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:20:43.913 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" received FIN. +2017-07-19 12:20:43.913 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" received FIN. +2017-07-19 12:20:43.914 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" disconnecting. +2017-07-19 12:20:43.933 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" disconnecting. +2017-07-19 12:20:43.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:20:43.938 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" sending FIN. +2017-07-19 12:20:43.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:20:43.933 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" received FIN. +2017-07-19 12:20:43.941 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" sent FIN with status "0". +2017-07-19 12:20:43.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:20:43.949 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" disconnecting. +2017-07-19 12:20:43.947 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" received FIN. +2017-07-19 12:20:43.952 +05:30 [Debug] Connection id ""0HL6EDD3T3L37"" stopped. +2017-07-19 12:20:43.954 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" sending FIN. +2017-07-19 12:20:43.954 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" sending FIN. +2017-07-19 12:20:43.955 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" sent FIN with status "0". +2017-07-19 12:20:43.956 +05:30 [Debug] Connection id ""0HL6EDD3T3L36"" stopped. +2017-07-19 12:20:43.958 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" sent FIN with status "0". +2017-07-19 12:20:43.963 +05:30 [Debug] Connection id ""0HL6EDD3T3L38"" stopped. +2017-07-19 12:20:43.959 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" disconnecting. +2017-07-19 12:20:43.963 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" sending FIN. +2017-07-19 12:20:43.964 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" sent FIN with status "0". +2017-07-19 12:20:43.964 +05:30 [Debug] Connection id ""0HL6EDD3T3L34"" stopped. +2017-07-19 12:20:46.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:20:46.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:46.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:46.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:46.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2250.1241ms +2017-07-19 12:20:46.209 +05:30 [Information] Request finished in 2291.8797ms 200 application/json; charset=utf-8 +2017-07-19 12:20:46.210 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:20:46.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:20:46.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:20:46.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:20:49.485 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:49.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:49.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:49.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:49.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3241.2628ms +2017-07-19 12:20:49.570 +05:30 [Information] Request finished in 3247.6236ms 200 application/json; charset=utf-8 +2017-07-19 12:20:49.570 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:20:49.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:20:49.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:20:49.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:20:52.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:52.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:52.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:52.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:52.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3123.4782ms +2017-07-19 12:20:52.707 +05:30 [Information] Request finished in 3130.6895ms 200 application/json; charset=utf-8 +2017-07-19 12:20:52.708 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:20:54.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:20:54.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:20:54.371 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:20:54.383 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:20:54.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:20:54.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:20:54.811 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" started. +2017-07-19 12:20:54.812 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" started. +2017-07-19 12:20:54.817 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" started. +2017-07-19 12:20:54.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:20:54.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:20:54.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:20:54.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:20:54.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:20:54.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:20:54.847 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:20:54.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:20:54.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:20:55.573 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" started. +2017-07-19 12:20:55.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:20:55.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:20:55.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:20:57.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:57.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:57.490 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:20:57.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:57.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:57.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3120.9151ms +2017-07-19 12:20:57.496 +05:30 [Information] Request finished in 3135.2035ms 200 application/json; charset=utf-8 +2017-07-19 12:20:57.497 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:20:57.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:57.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:57.654 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:20:57.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:57.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:57.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3271.5218ms +2017-07-19 12:20:57.661 +05:30 [Information] Request finished in 3299.4799ms 200 application/json; charset=utf-8 +2017-07-19 12:20:57.662 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:20:57.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:58.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:58.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:20:58.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:58.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:20:58.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:58.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:58.248 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:20:58.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:58.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:58.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3431.156ms +2017-07-19 12:20:58.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:58.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3426.5979ms +2017-07-19 12:20:58.268 +05:30 [Information] Request finished in 3450.8822ms 200 application/json; charset=utf-8 +2017-07-19 12:20:58.270 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:20:58.297 +05:30 [Information] Request finished in 3452.1852ms 200 application/json; charset=utf-8 +2017-07-19 12:20:58.304 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:20:58.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:20:58.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:58.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:58.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:58.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3171.861ms +2017-07-19 12:20:58.766 +05:30 [Information] Request finished in 3189.8667ms 200 application/json; charset=utf-8 +2017-07-19 12:20:58.766 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:20:59.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:20:59.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:20:59.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:20:59.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:20:59.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4190.9204ms +2017-07-19 12:20:59.043 +05:30 [Information] Request finished in 4213.2594ms 200 application/json; charset=utf-8 +2017-07-19 12:20:59.044 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" completed keep alive response. +2017-07-19 12:21:05.840 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:21:05.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:21:05.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:21:05.868 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:21:05.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:21:05.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:21:08.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:08.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:08.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:08.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:08.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:08.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:08.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:08.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3088.4294ms +2017-07-19 12:21:08.938 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:08.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3066.8976ms +2017-07-19 12:21:08.942 +05:30 [Information] Request finished in 3099.965ms 200 application/json; charset=utf-8 +2017-07-19 12:21:08.943 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:21:08.948 +05:30 [Information] Request finished in 3076.3829ms 200 application/json; charset=utf-8 +2017-07-19 12:21:08.949 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:21:08.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:21:08.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:21:08.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:21:08.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:21:08.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:21:08.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:21:12.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:21:12.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:21:12.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:12.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:12.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:12.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:12.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:12.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:12.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3067.6958ms +2017-07-19 12:21:12.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3080.0902ms +2017-07-19 12:21:12.064 +05:30 [Information] Request finished in 3084.439ms 200 application/json; charset=utf-8 +2017-07-19 12:21:12.066 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:21:12.068 +05:30 [Information] Request finished in 3120.5148ms 200 application/json; charset=utf-8 +2017-07-19 12:21:12.069 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:21:12.098 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:21:12.098 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:21:12.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:21:12.100 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:21:12.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:21:12.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:21:15.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:15.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["40", "8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:15.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:15.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:15.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:15.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3086.0546ms +2017-07-19 12:21:15.190 +05:30 [Information] Request finished in 3114.9271ms 200 application/json; charset=utf-8 +2017-07-19 12:21:15.191 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:21:15.195 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:21:15.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:21:15.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:21:15.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:21:15.227 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:21:15.228 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3125.5517ms +2017-07-19 12:21:15.230 +05:30 [Information] Request finished in 3151.8866ms 200 +2017-07-19 12:21:15.231 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" completed keep alive response. +2017-07-19 12:21:18.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:18.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:18.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:18.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:18.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3112.362ms +2017-07-19 12:21:18.316 +05:30 [Information] Request finished in 3119.7034ms 200 application/json; charset=utf-8 +2017-07-19 12:21:18.317 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:21:18.325 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:21:18.326 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:21:18.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:21:21.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:21.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:21.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:21.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:21.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.3155ms +2017-07-19 12:21:21.447 +05:30 [Information] Request finished in 3121.3415ms 200 application/json; charset=utf-8 +2017-07-19 12:21:21.448 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:21:22.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:21:22.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:21:22.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:21:22.876 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:21:22.880 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:21:22.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:21:23.374 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:21:23.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:21:23.375 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:21:23.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:21:23.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:21:23.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:21:23.383 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:21:23.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:21:23.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:21:24.114 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:21:24.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:21:24.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:21:26.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:26.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:26.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:26.101 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:21:26.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:26.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:26.102 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:21:26.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:26.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:26.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:26.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3229.8844ms +2017-07-19 12:21:26.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3223.3476ms +2017-07-19 12:21:26.115 +05:30 [Information] Request finished in 3239.9819ms 200 application/json; charset=utf-8 +2017-07-19 12:21:26.116 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:21:26.116 +05:30 [Information] Request finished in 3241.0979ms 200 application/json; charset=utf-8 +2017-07-19 12:21:26.117 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:21:26.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:26.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:26.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:21:26.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:26.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:26.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:26.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3271.5718ms +2017-07-19 12:21:26.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:26.661 +05:30 [Information] Request finished in 3295.5181ms 200 application/json; charset=utf-8 +2017-07-19 12:21:26.662 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" completed keep alive response. +2017-07-19 12:21:26.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:26.890 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:21:26.890 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:26.891 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:26.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3513.7246ms +2017-07-19 12:21:26.898 +05:30 [Information] Request finished in 3531.1906ms 200 application/json; charset=utf-8 +2017-07-19 12:21:26.898 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:21:27.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:27.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:27.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:27.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:27.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3156.0755ms +2017-07-19 12:21:27.277 +05:30 [Information] Request finished in 3175.313ms 200 application/json; charset=utf-8 +2017-07-19 12:21:27.278 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:21:27.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:27.447 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:21:27.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:27.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:27.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4063.3714ms +2017-07-19 12:21:27.452 +05:30 [Information] Request finished in 4084.8019ms 200 application/json; charset=utf-8 +2017-07-19 12:21:27.453 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:21:32.597 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:21:32.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:21:32.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:21:35.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7283193c26"]) - ModelState is Valid +2017-07-19 12:21:35.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:35.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:35.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:35.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3167.5035ms +2017-07-19 12:21:35.773 +05:30 [Information] Request finished in 3177.9523ms 200 application/json; charset=utf-8 +2017-07-19 12:21:35.774 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:21:51.377 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:21:51.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:21:51.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:21:54.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:21:54.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:54.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:54.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:54.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3154.2106ms +2017-07-19 12:21:54.540 +05:30 [Information] Request finished in 3165.4029ms 200 application/json; charset=utf-8 +2017-07-19 12:21:54.541 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:21:54.597 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:21:54.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:21:54.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:21:57.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:21:57.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:21:57.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:21:57.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:21:57.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3113.5526ms +2017-07-19 12:21:57.721 +05:30 [Information] Request finished in 3131.2506ms 200 application/json; charset=utf-8 +2017-07-19 12:21:57.721 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" completed keep alive response. +2017-07-19 12:21:57.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:21:57.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:21:57.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:22:00.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:00.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:00.855 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:00.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:00.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3127.0527ms +2017-07-19 12:22:00.861 +05:30 [Information] Request finished in 3132.8606ms 200 application/json; charset=utf-8 +2017-07-19 12:22:00.861 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:22:02.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:22:02.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:22:02.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:22:02.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:22:02.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:22:02.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:22:02.699 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:22:02.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:22:02.700 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:22:02.703 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:22:02.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:22:02.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:22:02.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:22:02.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:22:02.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:22:03.395 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:22:03.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:22:03.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:22:04.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:04.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:04.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:22:04.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:04.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:04.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2274.2405ms +2017-07-19 12:22:04.979 +05:30 [Information] Request finished in 2286.1834ms 200 application/json; charset=utf-8 +2017-07-19 12:22:04.980 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:22:05.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:05.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:05.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:22:05.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:05.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:05.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3059.981ms +2017-07-19 12:22:05.304 +05:30 [Information] Request finished in 3073.8364ms 200 application/json; charset=utf-8 +2017-07-19 12:22:05.305 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:22:05.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:05.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:05.494 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:22:05.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:05.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:05.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3255.2112ms +2017-07-19 12:22:05.500 +05:30 [Information] Request finished in 3269.5665ms 200 application/json; charset=utf-8 +2017-07-19 12:22:05.500 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:22:05.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:05.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:06.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:06.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:22:06.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:06.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:06.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3437.9528ms +2017-07-19 12:22:06.147 +05:30 [Information] Request finished in 3453.4959ms 200 application/json; charset=utf-8 +2017-07-19 12:22:06.147 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:22:06.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:22:06.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:06.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:06.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:06.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3155.7365ms +2017-07-19 12:22:06.563 +05:30 [Information] Request finished in 3170.9774ms 200 application/json; charset=utf-8 +2017-07-19 12:22:06.564 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:22:06.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:06.646 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:22:06.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:06.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:06.651 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3936.7076ms +2017-07-19 12:22:06.656 +05:30 [Information] Request finished in 3954.9827ms 200 application/json; charset=utf-8 +2017-07-19 12:22:06.656 +05:30 [Debug] Connection id ""0HL6EDD3T3L3C"" completed keep alive response. +2017-07-19 12:22:20.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:22:20.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:22:20.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:22:24.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:22:24.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:24.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:24.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:24.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.1363ms +2017-07-19 12:22:24.014 +05:30 [Information] Request finished in 3081.6819ms 200 application/json; charset=utf-8 +2017-07-19 12:22:24.014 +05:30 [Debug] Connection id ""0HL6EDD3T3L3A"" completed keep alive response. +2017-07-19 12:22:24.031 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:22:24.031 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:22:24.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:22:27.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:22:27.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:27.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:27.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:27.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3035.9288ms +2017-07-19 12:22:27.074 +05:30 [Information] Request finished in 3057.0659ms 200 application/json; charset=utf-8 +2017-07-19 12:22:27.074 +05:30 [Debug] Connection id ""0HL6EDD3T3L35"" completed keep alive response. +2017-07-19 12:22:27.085 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:22:27.085 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:22:27.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:22:30.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:22:30.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:30.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:30.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:30.150 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.3975ms +2017-07-19 12:22:30.153 +05:30 [Information] Request finished in 3068.3705ms 200 application/json; charset=utf-8 +2017-07-19 12:22:30.153 +05:30 [Debug] Connection id ""0HL6EDD3T3L39"" completed keep alive response. +2017-07-19 12:22:30.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:22:30.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:22:30.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:22:33.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:33.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:33.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:33.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:33.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3117.9577ms +2017-07-19 12:22:33.284 +05:30 [Information] Request finished in 3125.461ms 200 application/json; charset=utf-8 +2017-07-19 12:22:33.285 +05:30 [Debug] Connection id ""0HL6EDD3T3L3B"" completed keep alive response. +2017-07-19 12:22:33.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:22:33.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:22:33.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:22:35.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:22:35.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:22:35.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:22:35.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:22:35.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2254.7312ms +2017-07-19 12:22:35.555 +05:30 [Information] Request finished in 2260.98ms 200 application/json; charset=utf-8 +2017-07-19 12:22:35.555 +05:30 [Debug] Connection id ""0HL6EDD3T3L3D"" completed keep alive response. +2017-07-19 12:22:36.930 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:22:36.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:22:36.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:22:36.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:22:36.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:22:36.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:22:37.424 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:22:37.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:22:37.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:22:37.432 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:22:37.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:22:37.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:22:37.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:22:37.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:22:37.438 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:23:28.464 +05:30 [Debug] Hosting starting +2017-07-19 12:23:28.760 +05:30 [Debug] Hosting started +2017-07-19 12:23:28.834 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" started. +2017-07-19 12:23:28.834 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" started. +2017-07-19 12:23:28.985 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:23:28.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:23:29.058 +05:30 [Information] Request finished in 111.1378ms 200 +2017-07-19 12:23:29.125 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:23:30.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:23:30.741 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"90adb245-daca-4b28-897f-d77ab331b018"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:23:30.901 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:23:31.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:23:31.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:23:31.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:23:31.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:23:31.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:23:31.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 650.9006ms +2017-07-19 12:23:33.662 +05:30 [Information] Request finished in 4727.1714ms 200 application/json; charset=utf-8 +2017-07-19 12:23:33.664 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:23:36.127 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:23:36.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:23:36.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:23:41.065 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:23:46.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:23:46.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:23:46.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:23:46.238 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10100.1113ms +2017-07-19 12:23:46.241 +05:30 [Information] Request finished in 10153.4326ms 200 application/json; charset=utf-8 +2017-07-19 12:23:46.242 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:23:46.810 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:23:46.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:23:46.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:23:50.924 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:23:50.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:23:50.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:23:50.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:23:51.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:23:51.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:23:51.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:23:51.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4269.1282ms +2017-07-19 12:23:51.096 +05:30 [Information] Request finished in 4285.5732ms 200 application/json; charset=utf-8 +2017-07-19 12:23:51.097 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:23:54.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:23:54.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:23:54.007 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:23:54.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:23:54.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3079.9839ms +2017-07-19 12:23:54.017 +05:30 [Information] Request finished in 3105.5732ms 200 application/json; charset=utf-8 +2017-07-19 12:23:54.018 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:23:55.763 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:23:55.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:23:55.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:23:58.837 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:23:58.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:23:58.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:23:58.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:23:58.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3078.0783ms +2017-07-19 12:23:58.850 +05:30 [Information] Request finished in 3088.6459ms 200 application/json; charset=utf-8 +2017-07-19 12:23:58.851 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:23:59.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:23:59.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:23:59.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:24:02.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:24:02.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:02.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:02.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:02.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3293.1466ms +2017-07-19 12:24:02.349 +05:30 [Information] Request finished in 3312.7308ms 200 application/json; charset=utf-8 +2017-07-19 12:24:02.350 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:03.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:24:03.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:24:03.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:24:06.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:06.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:06.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:06.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:06.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.1274ms +2017-07-19 12:24:06.862 +05:30 [Information] Request finished in 3062.4722ms 200 application/json; charset=utf-8 +2017-07-19 12:24:06.863 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:06.870 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:24:06.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:24:06.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:24:08.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:24:08.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:08.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:08.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:08.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2110.6031ms +2017-07-19 12:24:08.989 +05:30 [Information] Request finished in 2121.3011ms 200 application/json; charset=utf-8 +2017-07-19 12:24:08.990 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:09.074 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:24:09.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:24:09.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:24:09.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:24:09.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:24:09.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:24:11.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:11.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:11.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:11.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:11.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2118.8906ms +2017-07-19 12:24:11.212 +05:30 [Information] Request finished in 2165.8287ms 200 application/json; charset=utf-8 +2017-07-19 12:24:11.212 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:12.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:12.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:12.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:12.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:12.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3216.4495ms +2017-07-19 12:24:12.301 +05:30 [Information] Request finished in 3247.4739ms 200 application/json; charset=utf-8 +2017-07-19 12:24:12.302 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:12.375 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:24:12.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:24:12.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:24:14.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:14.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:14.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:14.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:14.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2175.6352ms +2017-07-19 12:24:14.557 +05:30 [Information] Request finished in 2182.6246ms 200 application/json; charset=utf-8 +2017-07-19 12:24:14.558 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:16.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:24:16.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:24:16.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:24:16.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:24:16.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:24:16.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:24:17.130 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" started. +2017-07-19 12:24:17.130 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" started. +2017-07-19 12:24:17.134 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" started. +2017-07-19 12:24:17.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:24:17.139 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:24:17.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:24:17.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:24:17.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:24:17.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:24:18.784 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" started. +2017-07-19 12:24:18.800 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:24:18.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:24:18.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:24:19.795 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:24:19.796 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:24:19.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:24:21.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:21.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:22.108 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:22.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:22.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:22.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:22.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:22.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:22.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:22.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5469.3831ms +2017-07-19 12:24:22.217 +05:30 [Information] Request finished in 5505.5052ms 200 application/json; charset=utf-8 +2017-07-19 12:24:22.217 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:22.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:22.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:22.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:22.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:22.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:22.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:22.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:22.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:22.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5130.2021ms +2017-07-19 12:24:22.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5586.3076ms +2017-07-19 12:24:22.288 +05:30 [Information] Request finished in 5151.3095ms 200 application/json; charset=utf-8 +2017-07-19 12:24:22.291 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" completed keep alive response. +2017-07-19 12:24:22.291 +05:30 [Information] Request finished in 5596.6431ms 200 application/json; charset=utf-8 +2017-07-19 12:24:22.293 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:22.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:22.612 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:22.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:22.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:22.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5528.2573ms +2017-07-19 12:24:22.680 +05:30 [Information] Request finished in 5541.0166ms 200 application/json; charset=utf-8 +2017-07-19 12:24:22.681 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" completed keep alive response. +2017-07-19 12:24:23.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:23.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:23.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:23.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:23.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3247.4329ms +2017-07-19 12:24:23.047 +05:30 [Information] Request finished in 3254.2915ms 200 application/json; charset=utf-8 +2017-07-19 12:24:23.048 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" completed keep alive response. +2017-07-19 12:24:23.050 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:24:23.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:24:23.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:24:24.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:24.409 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:24.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:24.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:24.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5607.6421ms +2017-07-19 12:24:24.426 +05:30 [Information] Request finished in 5642.9157ms 200 application/json; charset=utf-8 +2017-07-19 12:24:24.427 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" completed keep alive response. +2017-07-19 12:24:26.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:24:26.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:26.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:26.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:26.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.5286ms +2017-07-19 12:24:26.107 +05:30 [Information] Request finished in 3056.9034ms 200 application/json; charset=utf-8 +2017-07-19 12:24:26.107 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:26.122 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:24:26.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:24:26.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:24:29.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:24:29.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:29.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:29.244 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:29.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3121.6229ms +2017-07-19 12:24:29.249 +05:30 [Information] Request finished in 3128.1813ms 200 application/json; charset=utf-8 +2017-07-19 12:24:29.249 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" completed keep alive response. +2017-07-19 12:24:32.882 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:24:32.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:24:32.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:24:36.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:24:36.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:24:36.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:24:36.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:36.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:36.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:36.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:36.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3444.0907ms +2017-07-19 12:24:36.335 +05:30 [Information] Request finished in 3460.5297ms 200 application/json; charset=utf-8 +2017-07-19 12:24:36.336 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:36.339 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:24:36.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:24:36.341 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:24:38.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:38.420 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:38.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:38.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:38.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2159.7636ms +2017-07-19 12:24:38.496 +05:30 [Information] Request finished in 2208.8645ms 200 application/json; charset=utf-8 +2017-07-19 12:24:38.497 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" completed keep alive response. +2017-07-19 12:24:38.503 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:24:38.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:24:38.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:24:39.375 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:24:39.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:39.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:39.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:39.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.0808ms +2017-07-19 12:24:39.384 +05:30 [Information] Request finished in 3044.6242ms 200 application/json; charset=utf-8 +2017-07-19 12:24:39.385 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" completed keep alive response. +2017-07-19 12:24:42.622 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:24:42.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:24:42.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:24:44.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:24:44.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:44.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:44.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:44.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6150.8255ms +2017-07-19 12:24:44.660 +05:30 [Information] Request finished in 6159.1124ms 200 application/json; charset=utf-8 +2017-07-19 12:24:44.661 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" completed keep alive response. +2017-07-19 12:24:44.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:24:44.673 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:24:44.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:24:44.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:24:44.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:24:44.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:24:45.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["41", "8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:45.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:24:45.723 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:24:45.726 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3098.5672ms +2017-07-19 12:24:45.728 +05:30 [Information] Request finished in 3123.5537ms 200 +2017-07-19 12:24:45.729 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:46.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:46.895 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:46.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:46.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:46.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2221.4764ms +2017-07-19 12:24:46.902 +05:30 [Information] Request finished in 2230.7518ms 200 application/json; charset=utf-8 +2017-07-19 12:24:46.903 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" completed keep alive response. +2017-07-19 12:24:46.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:24:46.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:24:46.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:24:47.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:24:47.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:47.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:47.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:47.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3078.8003ms +2017-07-19 12:24:47.760 +05:30 [Information] Request finished in 3088.2569ms 200 application/json; charset=utf-8 +2017-07-19 12:24:47.760 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:49.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:50.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:50.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:50.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:50.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3098.8222ms +2017-07-19 12:24:50.030 +05:30 [Information] Request finished in 3104.5953ms 200 application/json; charset=utf-8 +2017-07-19 12:24:50.030 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" completed keep alive response. +2017-07-19 12:24:51.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:24:51.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:24:51.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:24:51.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:24:51.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:24:51.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:24:52.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:24:52.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:24:52.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:24:52.032 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:24:52.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:24:52.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:24:52.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:24:52.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:24:52.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:24:57.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:57.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:57.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:57.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:57.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:57.171 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:57.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:57.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:57.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:57.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:57.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5681.1196ms +2017-07-19 12:24:57.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5686.3584ms +2017-07-19 12:24:57.208 +05:30 [Information] Request finished in 5719.8406ms 200 application/json; charset=utf-8 +2017-07-19 12:24:57.209 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" completed keep alive response. +2017-07-19 12:24:57.209 +05:30 [Information] Request finished in 5723.0125ms 200 application/json; charset=utf-8 +2017-07-19 12:24:57.220 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" completed keep alive response. +2017-07-19 12:24:57.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:58.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:58.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:58.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:58.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:58.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:58.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6151.5575ms +2017-07-19 12:24:58.227 +05:30 [Information] Request finished in 6217.1848ms 200 application/json; charset=utf-8 +2017-07-19 12:24:58.228 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" completed keep alive response. +2017-07-19 12:24:58.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:24:58.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:58.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:58.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:58.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:58.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:24:58.954 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:24:58.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:24:58.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6915.2043ms +2017-07-19 12:24:58.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:24:58.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6921.0615ms +2017-07-19 12:24:58.964 +05:30 [Information] Request finished in 6952.0733ms 200 application/json; charset=utf-8 +2017-07-19 12:24:58.970 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" completed keep alive response. +2017-07-19 12:24:58.970 +05:30 [Information] Request finished in 6955.7223ms 200 application/json; charset=utf-8 +2017-07-19 12:24:58.975 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" completed keep alive response. +2017-07-19 12:26:47.388 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" received FIN. +2017-07-19 12:26:47.389 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" received FIN. +2017-07-19 12:26:47.389 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" received FIN. +2017-07-19 12:26:47.392 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" started. +2017-07-19 12:26:47.421 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" received FIN. +2017-07-19 12:26:47.425 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" received FIN. +2017-07-19 12:26:47.425 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" received FIN. +2017-07-19 12:26:47.437 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" disconnecting. +2017-07-19 12:26:47.438 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" sending FIN. +2017-07-19 12:26:47.444 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" sent FIN with status "0". +2017-07-19 12:26:47.459 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" disconnecting. +2017-07-19 12:26:47.459 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" disconnecting. +2017-07-19 12:26:47.463 +05:30 [Debug] Connection id ""0HL6EEBE9179O"" stopped. +2017-07-19 12:26:47.464 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" sending FIN. +2017-07-19 12:26:47.464 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" sending FIN. +2017-07-19 12:26:47.464 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" sent FIN with status "0". +2017-07-19 12:26:47.465 +05:30 [Debug] Connection id ""0HL6EEBE9179J"" stopped. +2017-07-19 12:26:47.465 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" sent FIN with status "0". +2017-07-19 12:26:47.466 +05:30 [Debug] Connection id ""0HL6EEBE9179L"" stopped. +2017-07-19 12:26:47.480 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" disconnecting. +2017-07-19 12:26:47.485 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" disconnecting. +2017-07-19 12:26:47.485 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" sending FIN. +2017-07-19 12:26:47.481 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" disconnecting. +2017-07-19 12:26:47.487 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" sending FIN. +2017-07-19 12:26:47.488 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" sending FIN. +2017-07-19 12:26:47.489 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" sent FIN with status "0". +2017-07-19 12:26:47.489 +05:30 [Debug] Connection id ""0HL6EEBE9179M"" stopped. +2017-07-19 12:26:47.490 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" sent FIN with status "0". +2017-07-19 12:26:47.491 +05:30 [Debug] Connection id ""0HL6EEBE9179K"" stopped. +2017-07-19 12:26:47.491 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" sent FIN with status "0". +2017-07-19 12:26:47.493 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:26:47.493 +05:30 [Debug] Connection id ""0HL6EEBE9179N"" stopped. +2017-07-19 12:26:47.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:26:47.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:26:51.270 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce72ab7d7cae"]) - ModelState is Valid +2017-07-19 12:26:51.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:26:51.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:26:51.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:26:51.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3781.321ms +2017-07-19 12:26:51.279 +05:30 [Information] Request finished in 3819.3455ms 200 application/json; charset=utf-8 +2017-07-19 12:26:51.279 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:26:57.858 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:26:57.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:26:57.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:27:01.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:27:01.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:01.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:01.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:01.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3260.551ms +2017-07-19 12:27:01.130 +05:30 [Information] Request finished in 3295.6339ms 200 application/json; charset=utf-8 +2017-07-19 12:27:01.132 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:27:04.715 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:27:04.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:27:04.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:27:07.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:07.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:07.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:07.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:07.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3209.0916ms +2017-07-19 12:27:07.930 +05:30 [Information] Request finished in 3215.0888ms 200 application/json; charset=utf-8 +2017-07-19 12:27:07.931 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:27:07.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:27:07.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:27:07.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:27:11.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:11.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:11.201 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:11.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:11.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3262.207ms +2017-07-19 12:27:11.206 +05:30 [Information] Request finished in 3271.3166ms 200 application/json; charset=utf-8 +2017-07-19 12:27:11.207 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:27:13.134 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" started. +2017-07-19 12:27:13.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:27:13.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:27:13.162 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:27:13.200 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:27:13.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:27:13.202 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:27:13.703 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" started. +2017-07-19 12:27:13.703 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" started. +2017-07-19 12:27:13.707 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" started. +2017-07-19 12:27:13.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:27:13.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:27:13.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:27:13.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:27:13.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:27:13.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:27:13.719 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:27:13.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:27:13.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:27:15.062 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" started. +2017-07-19 12:27:15.146 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:27:15.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:27:15.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:27:16.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:16.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:16.102 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:27:16.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:16.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:16.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:16.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2917.6906ms +2017-07-19 12:27:16.129 +05:30 [Information] Request finished in 2989.1258ms 200 application/json; charset=utf-8 +2017-07-19 12:27:16.130 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:27:16.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:16.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:16.568 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:27:16.568 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:16.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:16.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3406.3513ms +2017-07-19 12:27:16.573 +05:30 [Information] Request finished in 3437.0622ms 200 application/json; charset=utf-8 +2017-07-19 12:27:16.574 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:27:16.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:17.214 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:17.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:17.498 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:27:17.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:17.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:17.502 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:27:17.505 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:17.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:17.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3767.6252ms +2017-07-19 12:27:17.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:17.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3777.0907ms +2017-07-19 12:27:17.531 +05:30 [Information] Request finished in 3820.9346ms 200 application/json; charset=utf-8 +2017-07-19 12:27:17.539 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:27:17.542 +05:30 [Information] Request finished in 3830.9092ms 200 application/json; charset=utf-8 +2017-07-19 12:27:17.543 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:27:17.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:17.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:27:17.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:17.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:17.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4161.5119ms +2017-07-19 12:27:17.912 +05:30 [Information] Request finished in 4195.5348ms 200 application/json; charset=utf-8 +2017-07-19 12:27:17.913 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:27:18.398 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:27:18.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:18.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:18.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:18.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3275.9124ms +2017-07-19 12:27:18.450 +05:30 [Information] Request finished in 3382.2501ms 200 application/json; charset=utf-8 +2017-07-19 12:27:18.451 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:27:38.452 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:27:38.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:27:38.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:27:41.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce736568fb97"]) - ModelState is Valid +2017-07-19 12:27:41.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:41.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:41.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:41.537 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.1126ms +2017-07-19 12:27:41.539 +05:30 [Information] Request finished in 3089.0173ms 200 application/json; charset=utf-8 +2017-07-19 12:27:41.540 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:27:41.542 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:27:41.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:27:41.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:27:45.153 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:27:45.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:27:45.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:27:47.151 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:27:47.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:47.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:47.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:47.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5615.8879ms +2017-07-19 12:27:47.164 +05:30 [Information] Request finished in 5622.0712ms 200 application/json; charset=utf-8 +2017-07-19 12:27:47.165 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:27:49.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce736568fb97"]) - ModelState is Valid +2017-07-19 12:27:49.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:27:49.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:27:49.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:27:49.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:49.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:49.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:49.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4789.0719ms +2017-07-19 12:27:49.983 +05:30 [Information] Request finished in 4817.957ms 200 application/json; charset=utf-8 +2017-07-19 12:27:49.984 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:27:49.994 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:27:49.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:27:49.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:27:52.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["42", "8d4ce736568fb97"]) - ModelState is Valid +2017-07-19 12:27:53.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:27:53.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:27:53.037 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:27:53.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3102.5317ms +2017-07-19 12:27:53.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:53.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:53.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:53.057 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3049.0538ms +2017-07-19 12:27:53.059 +05:30 [Information] Request finished in 3126.6405ms 200 +2017-07-19 12:27:53.060 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:27:53.072 +05:30 [Information] Request finished in 3070.4572ms 200 application/json; charset=utf-8 +2017-07-19 12:27:53.073 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:27:53.113 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:27:53.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:27:53.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:27:53.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:27:53.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:27:53.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:27:56.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce736568fb97"]) - ModelState is Valid +2017-07-19 12:27:56.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:56.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:56.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:56.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:56.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3152.0534ms +2017-07-19 12:27:56.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:56.299 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:56.299 +05:30 [Information] Request finished in 3188.5156ms 200 application/json; charset=utf-8 +2017-07-19 12:27:56.301 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:56.301 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:27:56.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3169.4648ms +2017-07-19 12:27:56.313 +05:30 [Information] Request finished in 3180.3346ms 200 application/json; charset=utf-8 +2017-07-19 12:27:56.314 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:27:56.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:27:56.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:27:56.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:27:59.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:27:59.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:27:59.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:27:59.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:27:59.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.7764ms +2017-07-19 12:27:59.453 +05:30 [Information] Request finished in 3106.5456ms 200 application/json; charset=utf-8 +2017-07-19 12:27:59.454 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:28:03.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:28:03.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:28:03.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:28:03.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:28:03.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:28:03.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:28:04.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:28:04.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:28:04.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:28:04.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:28:04.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:28:04.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:28:04.179 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:28:04.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:28:04.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:28:06.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:06.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:06.744 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:06.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:06.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:06.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2553.1412ms +2017-07-19 12:28:06.754 +05:30 [Information] Request finished in 2582.4146ms 200 application/json; charset=utf-8 +2017-07-19 12:28:06.755 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:28:06.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:06.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:06.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:06.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:06.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:06.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3267.8639ms +2017-07-19 12:28:06.957 +05:30 [Information] Request finished in 3300.0738ms 200 application/json; charset=utf-8 +2017-07-19 12:28:06.957 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:28:07.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:07.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:07.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:07.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:07.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:07.015 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3321.2872ms +2017-07-19 12:28:07.018 +05:30 [Information] Request finished in 3354.828ms 200 application/json; charset=utf-8 +2017-07-19 12:28:07.018 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:28:07.231 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:07.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:07.295 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:07.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:07.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:07.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3122.3688ms +2017-07-19 12:28:07.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:07.335 +05:30 [Information] Request finished in 3163.2722ms 200 application/json; charset=utf-8 +2017-07-19 12:28:07.336 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:28:08.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:08.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:08.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:08.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:08.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3966.5419ms +2017-07-19 12:28:08.149 +05:30 [Information] Request finished in 3976.2146ms 200 application/json; charset=utf-8 +2017-07-19 12:28:08.149 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:28:16.612 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:28:16.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:28:16.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:28:19.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce736568fb97"]) - ModelState is Valid +2017-07-19 12:28:19.006 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:19.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:19.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:19.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2420.3732ms +2017-07-19 12:28:19.041 +05:30 [Information] Request finished in 2431.6344ms 200 application/json; charset=utf-8 +2017-07-19 12:28:19.042 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:28:23.905 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:28:23.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:28:23.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:28:26.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:28:27.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:27.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:27.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:27.077 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3160.6164ms +2017-07-19 12:28:27.081 +05:30 [Information] Request finished in 3177.0412ms 200 application/json; charset=utf-8 +2017-07-19 12:28:27.082 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:28:27.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:28:27.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:28:27.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:28:30.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:30.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:30.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:30.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:30.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3116.9691ms +2017-07-19 12:28:30.308 +05:30 [Information] Request finished in 3135.6018ms 200 application/json; charset=utf-8 +2017-07-19 12:28:30.308 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:28:30.314 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:28:30.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:28:30.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:28:33.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:33.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:33.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:33.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:33.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.7578ms +2017-07-19 12:28:33.425 +05:30 [Information] Request finished in 3111.8115ms 200 application/json; charset=utf-8 +2017-07-19 12:28:33.425 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:28:42.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:28:42.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:28:42.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:28:42.121 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:28:42.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:28:42.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:28:42.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:28:42.601 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:28:42.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:28:42.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:28:42.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:28:42.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:28:42.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:28:42.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:28:42.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:28:43.272 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:28:43.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:28:43.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:28:45.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:45.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:45.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:45.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:45.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:45.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:45.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:45.408 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:45.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:45.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:45.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3289.4692ms +2017-07-19 12:28:45.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3288.661ms +2017-07-19 12:28:45.420 +05:30 [Information] Request finished in 3320.8843ms 200 application/json; charset=utf-8 +2017-07-19 12:28:45.420 +05:30 [Information] Request finished in 3322.2952ms 200 application/json; charset=utf-8 +2017-07-19 12:28:45.421 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:28:45.421 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:28:45.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:45.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:46.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:46.023 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:46.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:46.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:28:46.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:46.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:46.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:46.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:46.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3522.6203ms +2017-07-19 12:28:46.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:46.157 +05:30 [Information] Request finished in 3538.329ms 200 application/json; charset=utf-8 +2017-07-19 12:28:46.159 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:28:46.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3556.1476ms +2017-07-19 12:28:46.170 +05:30 [Information] Request finished in 3571.46ms 200 application/json; charset=utf-8 +2017-07-19 12:28:46.171 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:28:46.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:28:46.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:46.539 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:46.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:46.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3267.5927ms +2017-07-19 12:28:46.546 +05:30 [Information] Request finished in 3282.25ms 200 application/json; charset=utf-8 +2017-07-19 12:28:46.547 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:28:46.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:28:46.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:28:46.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:28:46.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:28:46.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4355.269ms +2017-07-19 12:28:46.986 +05:30 [Information] Request finished in 4380.4597ms 200 application/json; charset=utf-8 +2017-07-19 12:28:46.986 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:29:15.284 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:29:15.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:29:15.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:29:18.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:18.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:18.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:18.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:18.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3107.2656ms +2017-07-19 12:29:18.398 +05:30 [Information] Request finished in 3113.193ms 200 application/json; charset=utf-8 +2017-07-19 12:29:18.398 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:29:18.401 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:29:18.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:29:18.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:29:21.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:29:21.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:21.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:21.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:21.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.5587ms +2017-07-19 12:29:21.475 +05:30 [Information] Request finished in 3072.0417ms 200 application/json; charset=utf-8 +2017-07-19 12:29:21.476 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:29:21.490 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:29:21.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:29:21.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:29:21.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:29:21.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:29:21.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:29:24.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:24.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:24.567 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:24.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:24.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:24.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3104.7118ms +2017-07-19 12:29:24.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:24.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:24.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:24.664 +05:30 [Information] Request finished in 3152.7778ms 200 application/json; charset=utf-8 +2017-07-19 12:29:24.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3138.5761ms +2017-07-19 12:29:24.665 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:29:24.685 +05:30 [Information] Request finished in 3190.9764ms 200 application/json; charset=utf-8 +2017-07-19 12:29:24.686 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:29:24.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:29:24.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:29:24.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:29:27.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:27.805 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:27.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:27.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:27.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.6616ms +2017-07-19 12:29:27.813 +05:30 [Information] Request finished in 3121.0595ms 200 application/json; charset=utf-8 +2017-07-19 12:29:27.813 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:29:33.127 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:29:33.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:29:33.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:29:33.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:29:33.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:29:33.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:29:33.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:29:33.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:29:33.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:29:33.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:29:33.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:29:33.659 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:29:33.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:29:33.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:29:33.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:29:34.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:29:34.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:29:34.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:29:35.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:35.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:35.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:35.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:35.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:35.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2309.9525ms +2017-07-19 12:29:35.977 +05:30 [Information] Request finished in 2347.2168ms 200 application/json; charset=utf-8 +2017-07-19 12:29:35.978 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:29:36.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:36.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:36.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:36.443 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:36.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:36.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:36.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:36.484 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3336.7631ms +2017-07-19 12:29:36.489 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:36.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:36.513 +05:30 [Information] Request finished in 3367.3615ms 200 application/json; charset=utf-8 +2017-07-19 12:29:36.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:36.515 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:29:36.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3396.1691ms +2017-07-19 12:29:36.538 +05:30 [Information] Request finished in 3444.2288ms 200 application/json; charset=utf-8 +2017-07-19 12:29:36.540 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:29:36.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:36.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:36.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:36.974 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:36.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:36.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:36.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3335.7136ms +2017-07-19 12:29:36.979 +05:30 [Information] Request finished in 3359.4109ms 200 application/json; charset=utf-8 +2017-07-19 12:29:36.980 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:29:37.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:37.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:37.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:37.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:37.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3135.52ms +2017-07-19 12:29:37.508 +05:30 [Information] Request finished in 3176.5943ms 200 application/json; charset=utf-8 +2017-07-19 12:29:37.509 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:29:37.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:29:37.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:29:37.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:29:37.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:37.610 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:37.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:37.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:37.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3951.2493ms +2017-07-19 12:29:37.618 +05:30 [Information] Request finished in 3993.1562ms 200 application/json; charset=utf-8 +2017-07-19 12:29:37.619 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:29:38.208 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:29:38.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:29:38.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:29:38.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:29:38.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:38.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:38.677 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:38.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1161.3775ms +2017-07-19 12:29:38.682 +05:30 [Information] Request finished in 1171.4108ms 200 application/json; charset=utf-8 +2017-07-19 12:29:38.683 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:29:38.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:29:38.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:29:38.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:29:42.175 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:42.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:42.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:42.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:42.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3983.2603ms +2017-07-19 12:29:42.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:29:42.222 +05:30 [Information] Request finished in 3993.5607ms 200 application/json; charset=utf-8 +2017-07-19 12:29:42.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:29:42.223 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:29:42.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:29:42.232 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:29:42.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:29:42.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:29:43.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:29:43.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:43.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:43.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:43.205 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4507.1298ms +2017-07-19 12:29:43.208 +05:30 [Information] Request finished in 4512.9231ms 200 application/json; charset=utf-8 +2017-07-19 12:29:43.208 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:29:45.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:29:45.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:45.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:45.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:45.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:45.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:45.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:45.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:45.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3091.408ms +2017-07-19 12:29:45.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3080.8043ms +2017-07-19 12:29:45.325 +05:30 [Information] Request finished in 3125.6056ms 200 application/json; charset=utf-8 +2017-07-19 12:29:45.327 +05:30 [Information] Request finished in 3101.1919ms 200 application/json; charset=utf-8 +2017-07-19 12:29:45.328 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:29:45.327 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:29:45.336 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:29:45.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:29:45.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:29:48.007 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:29:48.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:29:48.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:29:48.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:29:48.082 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:48.083 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:48.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:48.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2740.9837ms +2017-07-19 12:29:48.090 +05:30 [Information] Request finished in 2756.3696ms 200 application/json; charset=utf-8 +2017-07-19 12:29:48.090 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:29:48.110 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:29:48.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:29:48.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:29:48.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:29:48.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:29:48.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:29:51.085 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["43", "8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:51.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:29:51.117 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:29:51.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3108.5346ms +2017-07-19 12:29:51.121 +05:30 [Information] Request finished in 3119.0502ms 200 +2017-07-19 12:29:51.121 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:29:51.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce7399e4f663"]) - ModelState is Valid +2017-07-19 12:29:51.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:51.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:51.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:51.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:51.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:51.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3161.8811ms +2017-07-19 12:29:51.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:51.296 +05:30 [Information] Request finished in 3195.023ms 200 application/json; charset=utf-8 +2017-07-19 12:29:51.297 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:29:51.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:51.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3182.9153ms +2017-07-19 12:29:51.311 +05:30 [Information] Request finished in 3209.5389ms 200 application/json; charset=utf-8 +2017-07-19 12:29:51.312 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:29:51.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:29:51.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:29:51.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:29:53.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:53.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:53.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:53.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:53.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2163.6751ms +2017-07-19 12:29:53.509 +05:30 [Information] Request finished in 2168.9106ms 200 application/json; charset=utf-8 +2017-07-19 12:29:53.509 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" completed keep alive response. +2017-07-19 12:29:55.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:29:55.071 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:29:55.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:29:55.073 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:29:55.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:29:55.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:29:55.597 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:29:55.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:29:55.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:29:55.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:29:55.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:29:55.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:29:55.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:29:55.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:29:55.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:29:58.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:58.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:58.254 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:58.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:58.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:58.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:58.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:58.285 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:58.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3206.2057ms +2017-07-19 12:29:58.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:58.309 +05:30 [Information] Request finished in 3219.2434ms 200 application/json; charset=utf-8 +2017-07-19 12:29:58.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:58.310 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" completed keep alive response. +2017-07-19 12:29:58.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3238.805ms +2017-07-19 12:29:58.324 +05:30 [Information] Request finished in 3251.4537ms 200 application/json; charset=utf-8 +2017-07-19 12:29:58.325 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" completed keep alive response. +2017-07-19 12:29:58.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:58.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:58.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:29:58.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:58.839 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:58.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:58.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:58.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3277.5439ms +2017-07-19 12:29:58.921 +05:30 [Information] Request finished in 3327.5046ms 200 application/json; charset=utf-8 +2017-07-19 12:29:58.921 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" completed keep alive response. +2017-07-19 12:29:59.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:59.013 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:59.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:59.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:59.017 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3416.998ms +2017-07-19 12:29:59.020 +05:30 [Information] Request finished in 3433.547ms 200 application/json; charset=utf-8 +2017-07-19 12:29:59.021 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" completed keep alive response. +2017-07-19 12:29:59.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:29:59.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:29:59.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:29:59.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:29:59.544 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3939.7008ms +2017-07-19 12:29:59.547 +05:30 [Information] Request finished in 3954.2488ms 200 application/json; charset=utf-8 +2017-07-19 12:29:59.548 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" completed keep alive response. +2017-07-19 12:31:28.800 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" received FIN. +2017-07-19 12:31:28.800 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" received FIN. +2017-07-19 12:31:28.802 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" disconnecting. +2017-07-19 12:31:28.810 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" received FIN. +2017-07-19 12:31:28.801 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" received FIN. +2017-07-19 12:31:28.811 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" disconnecting. +2017-07-19 12:31:28.825 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" received FIN. +2017-07-19 12:31:28.825 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" received FIN. +2017-07-19 12:31:28.839 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" sending FIN. +2017-07-19 12:31:28.838 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" disconnecting. +2017-07-19 12:31:28.840 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" sent FIN with status "0". +2017-07-19 12:31:28.838 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" disconnecting. +2017-07-19 12:31:28.839 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" sending FIN. +2017-07-19 12:31:28.841 +05:30 [Debug] Connection id ""0HL6EEBE9179U"" stopped. +2017-07-19 12:31:28.840 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" disconnecting. +2017-07-19 12:31:28.839 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" disconnecting. +2017-07-19 12:31:28.843 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" sending FIN. +2017-07-19 12:31:28.843 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" sending FIN. +2017-07-19 12:31:28.845 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" sending FIN. +2017-07-19 12:31:28.844 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" sending FIN. +2017-07-19 12:31:28.845 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" sent FIN with status "0". +2017-07-19 12:31:28.848 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" sent FIN with status "0". +2017-07-19 12:31:28.851 +05:30 [Debug] Connection id ""0HL6EEBE9179P"" stopped. +2017-07-19 12:31:28.852 +05:30 [Debug] Connection id ""0HL6EEBE9179R"" stopped. +2017-07-19 12:31:28.852 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" sent FIN with status "0". +2017-07-19 12:31:28.854 +05:30 [Debug] Connection id ""0HL6EEBE9179T"" stopped. +2017-07-19 12:31:28.853 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" sent FIN with status "0". +2017-07-19 12:31:28.854 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" sent FIN with status "0". +2017-07-19 12:31:28.856 +05:30 [Debug] Connection id ""0HL6EEBE9179S"" stopped. +2017-07-19 12:31:28.855 +05:30 [Debug] Connection id ""0HL6EEBE9179Q"" stopped. +2017-07-19 12:31:29.497 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" started. +2017-07-19 12:31:29.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:31:29.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:31:29.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:31:32.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:31:32.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:32.642 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:32.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:32.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3144.4916ms +2017-07-19 12:31:32.650 +05:30 [Information] Request finished in 3151.9733ms 200 application/json; charset=utf-8 +2017-07-19 12:31:32.651 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:31:32.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:31:32.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:31:32.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:31:35.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:35.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:35.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:35.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:35.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3125.1239ms +2017-07-19 12:31:35.861 +05:30 [Information] Request finished in 3129.2407ms 200 application/json; charset=utf-8 +2017-07-19 12:31:35.862 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:31:35.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:31:35.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:31:35.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:31:38.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:38.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:38.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:38.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:38.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.1175ms +2017-07-19 12:31:38.995 +05:30 [Information] Request finished in 3122.1516ms 200 application/json; charset=utf-8 +2017-07-19 12:31:38.995 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:31:40.434 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" started. +2017-07-19 12:31:40.437 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:31:40.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:31:40.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:31:40.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:31:40.439 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:31:40.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:31:40.948 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" started. +2017-07-19 12:31:40.948 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" started. +2017-07-19 12:31:40.950 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" started. +2017-07-19 12:31:40.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:31:40.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:31:40.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:31:40.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:31:40.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:31:40.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:31:40.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:31:40.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:31:40.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:31:41.809 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" started. +2017-07-19 12:31:41.810 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:31:41.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:31:41.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:31:43.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:43.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:43.511 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:31:43.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:43.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:43.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3070.8849ms +2017-07-19 12:31:43.520 +05:30 [Information] Request finished in 3083.2965ms 200 application/json; charset=utf-8 +2017-07-19 12:31:43.521 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:31:43.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:43.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:43.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:31:43.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:43.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:43.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3321.948ms +2017-07-19 12:31:43.771 +05:30 [Information] Request finished in 3334.6158ms 200 application/json; charset=utf-8 +2017-07-19 12:31:43.772 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:31:44.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:44.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:44.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:44.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:31:44.243 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:31:44.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:44.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:44.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3310.1001ms +2017-07-19 12:31:44.283 +05:30 [Information] Request finished in 3331.9196ms 200 application/json; charset=utf-8 +2017-07-19 12:31:44.284 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" completed keep alive response. +2017-07-19 12:31:44.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:44.446 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:31:44.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:44.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:44.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3483.5662ms +2017-07-19 12:31:44.451 +05:30 [Information] Request finished in 3496.7923ms 200 application/json; charset=utf-8 +2017-07-19 12:31:44.452 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:31:44.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:31:44.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:44.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:44.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:44.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3116.6325ms +2017-07-19 12:31:44.934 +05:30 [Information] Request finished in 3123.3915ms 200 application/json; charset=utf-8 +2017-07-19 12:31:44.934 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" completed keep alive response. +2017-07-19 12:31:45.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:45.963 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:31:45.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:45.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:45.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4981.6431ms +2017-07-19 12:31:45.973 +05:30 [Information] Request finished in 5001.0345ms 200 application/json; charset=utf-8 +2017-07-19 12:31:45.974 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" completed keep alive response. +2017-07-19 12:31:48.528 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:31:48.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:31:48.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:31:51.557 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:31:51.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:31:51.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74043cf653"]) - ModelState is Valid +2017-07-19 12:31:51.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:31:51.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:51.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:51.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:51.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.736ms +2017-07-19 12:31:51.571 +05:30 [Information] Request finished in 3043.0672ms 200 application/json; charset=utf-8 +2017-07-19 12:31:51.571 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:31:51.573 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:31:51.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:31:51.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:31:54.622 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74043cf653"]) - ModelState is Valid +2017-07-19 12:31:54.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:54.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:54.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:31:54.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:54.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3089.7291ms +2017-07-19 12:31:54.656 +05:30 [Information] Request finished in 3099.5512ms 200 application/json; charset=utf-8 +2017-07-19 12:31:54.657 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:31:54.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:54.664 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:31:54.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:54.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:31:54.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:54.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:31:54.670 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3091.254ms +2017-07-19 12:31:54.677 +05:30 [Information] Request finished in 3100.4576ms 200 application/json; charset=utf-8 +2017-07-19 12:31:54.678 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" completed keep alive response. +2017-07-19 12:31:54.687 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:31:54.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:31:54.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:31:57.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:31:57.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:31:57.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:31:57.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:31:57.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3108.6766ms +2017-07-19 12:31:57.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["44", "8d4ce74043cf653"]) - ModelState is Valid +2017-07-19 12:31:57.812 +05:30 [Information] Request finished in 3129.203ms 200 application/json; charset=utf-8 +2017-07-19 12:31:57.813 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:31:57.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:31:57.852 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:31:57.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3162.0959ms +2017-07-19 12:31:57.859 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:31:57.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:31:57.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:31:57.866 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:31:57.866 +05:30 [Information] Request finished in 3173.2243ms 200 +2017-07-19 12:31:57.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:31:57.868 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" completed keep alive response. +2017-07-19 12:31:57.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:32:00.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:00.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce74043cf653"]) - ModelState is Valid +2017-07-19 12:32:01.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:01.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:01.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:01.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3199.0391ms +2017-07-19 12:32:01.063 +05:30 [Information] Request finished in 3204.6848ms 200 application/json; charset=utf-8 +2017-07-19 12:32:01.064 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" completed keep alive response. +2017-07-19 12:32:01.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:01.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:01.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:01.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3251.4884ms +2017-07-19 12:32:01.124 +05:30 [Information] Request finished in 3264.6317ms 200 application/json; charset=utf-8 +2017-07-19 12:32:01.125 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:32:01.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:32:01.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:32:01.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:32:04.172 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:04.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:04.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:04.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:04.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.877ms +2017-07-19 12:32:04.257 +05:30 [Information] Request finished in 3127.2474ms 200 application/json; charset=utf-8 +2017-07-19 12:32:04.258 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:32:05.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:32:05.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:32:05.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:32:05.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:32:05.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:32:05.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:32:06.095 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:32:06.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:32:06.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:32:06.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:32:06.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:32:06.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:32:06.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:32:06.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:32:06.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:32:07.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:07.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:07.594 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:32:07.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:07.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:07.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 1482.864ms +2017-07-19 12:32:07.683 +05:30 [Information] Request finished in 1513.5243ms 200 application/json; charset=utf-8 +2017-07-19 12:32:07.692 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:32:07.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:07.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:07.792 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:32:07.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:07.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:07.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2323.937ms +2017-07-19 12:32:07.811 +05:30 [Information] Request finished in 2359.8112ms 200 application/json; charset=utf-8 +2017-07-19 12:32:07.812 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" completed keep alive response. +2017-07-19 12:32:08.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:08.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:08.595 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:32:08.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:08.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:08.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3121.0343ms +2017-07-19 12:32:08.600 +05:30 [Information] Request finished in 3148.8265ms 200 application/json; charset=utf-8 +2017-07-19 12:32:08.600 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:32:09.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:09.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:32:09.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:09.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:32:09.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:09.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:09.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3377.646ms +2017-07-19 12:32:09.479 +05:30 [Information] Request finished in 3384.0316ms 200 application/json; charset=utf-8 +2017-07-19 12:32:09.480 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" completed keep alive response. +2017-07-19 12:32:10.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:32:10.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:32:10.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:32:10.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:32:10.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4078.1617ms +2017-07-19 12:32:10.203 +05:30 [Information] Request finished in 4105.8917ms 200 application/json; charset=utf-8 +2017-07-19 12:32:10.203 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" completed keep alive response. +2017-07-19 12:33:03.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:33:03.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:33:03.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:33:04.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:33:05.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:05.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:05.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:05.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 1335.9563ms +2017-07-19 12:33:05.040 +05:30 [Information] Request finished in 1373.3607ms 200 application/json; charset=utf-8 +2017-07-19 12:33:05.041 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:33:05.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:33:05.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:33:05.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:33:08.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:08.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:08.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:08.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:08.255 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3117.6074ms +2017-07-19 12:33:08.258 +05:30 [Information] Request finished in 3131.0947ms 200 application/json; charset=utf-8 +2017-07-19 12:33:08.259 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:33:08.265 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" received FIN. +2017-07-19 12:33:08.270 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" disconnecting. +2017-07-19 12:33:08.272 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" sending FIN. +2017-07-19 12:33:08.273 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" sent FIN with status "0". +2017-07-19 12:33:08.275 +05:30 [Debug] Connection id ""0HL6EEBE917A1"" stopped. +2017-07-19 12:33:08.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:33:08.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:33:08.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:33:10.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:10.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:10.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:10.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:10.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2169.1595ms +2017-07-19 12:33:10.451 +05:30 [Information] Request finished in 2180.2284ms 200 application/json; charset=utf-8 +2017-07-19 12:33:10.452 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:33:11.830 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" received FIN. +2017-07-19 12:33:11.830 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" received FIN. +2017-07-19 12:33:11.831 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" disconnecting. +2017-07-19 12:33:11.833 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" sending FIN. +2017-07-19 12:33:11.831 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" disconnecting. +2017-07-19 12:33:11.833 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" sent FIN with status "0". +2017-07-19 12:33:11.834 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" sending FIN. +2017-07-19 12:33:11.835 +05:30 [Debug] Connection id ""0HL6EEBE917A3"" stopped. +2017-07-19 12:33:11.835 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" sent FIN with status "0". +2017-07-19 12:33:11.836 +05:30 [Debug] Connection id ""0HL6EEBE917A4"" stopped. +2017-07-19 12:33:11.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:33:11.838 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:33:11.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:33:11.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:33:11.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:33:11.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:33:12.473 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" started. +2017-07-19 12:33:12.473 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" started. +2017-07-19 12:33:12.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:33:12.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:33:12.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:33:12.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:33:12.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:33:12.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:33:12.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:33:12.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:33:12.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:33:13.146 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" started. +2017-07-19 12:33:13.148 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:33:13.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:33:13.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:33:14.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:14.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:14.902 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:14.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:14.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:14.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2407.2326ms +2017-07-19 12:33:14.909 +05:30 [Information] Request finished in 2416.1243ms 200 application/json; charset=utf-8 +2017-07-19 12:33:14.909 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" completed keep alive response. +2017-07-19 12:33:15.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:15.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:15.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:15.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:15.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:15.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:15.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3277.9448ms +2017-07-19 12:33:15.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:15.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:15.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:15.186 +05:30 [Information] Request finished in 3327.8568ms 200 application/json; charset=utf-8 +2017-07-19 12:33:15.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:15.187 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:33:15.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3346.7742ms +2017-07-19 12:33:15.197 +05:30 [Information] Request finished in 3362.3942ms 200 application/json; charset=utf-8 +2017-07-19 12:33:15.197 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:33:15.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:15.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:15.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:15.652 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:15.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:15.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:15.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3167.7562ms +2017-07-19 12:33:15.661 +05:30 [Information] Request finished in 3185.5535ms 200 application/json; charset=utf-8 +2017-07-19 12:33:15.662 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:33:16.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:33:16.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:16.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:16.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:16.248 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3095.6999ms +2017-07-19 12:33:16.250 +05:30 [Information] Request finished in 3102.6532ms 200 application/json; charset=utf-8 +2017-07-19 12:33:16.251 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" completed keep alive response. +2017-07-19 12:33:16.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:16.448 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:16.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:16.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:16.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3954.799ms +2017-07-19 12:33:16.457 +05:30 [Information] Request finished in 3970.9474ms 200 application/json; charset=utf-8 +2017-07-19 12:33:16.458 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" completed keep alive response. +2017-07-19 12:33:28.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:33:28.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:33:28.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:33:31.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce743aac63ff"]) - ModelState is Valid +2017-07-19 12:33:31.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:31.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:31.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:31.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.3158ms +2017-07-19 12:33:31.729 +05:30 [Information] Request finished in 3073.2527ms 200 application/json; charset=utf-8 +2017-07-19 12:33:31.729 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" completed keep alive response. +2017-07-19 12:33:31.762 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:33:31.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:33:31.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:33:31.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:33:31.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:33:31.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:33:34.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:33:34.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce743aac63ff"]) - ModelState is Valid +2017-07-19 12:33:34.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:34.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:34.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:34.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:34.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:34.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3086.5777ms +2017-07-19 12:33:34.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:34.863 +05:30 [Information] Request finished in 3123.8109ms 200 application/json; charset=utf-8 +2017-07-19 12:33:34.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3089.3189ms +2017-07-19 12:33:34.864 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:33:34.884 +05:30 [Information] Request finished in 3137.3048ms 200 application/json; charset=utf-8 +2017-07-19 12:33:34.886 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:33:34.905 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:33:34.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:33:34.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:33:34.940 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:33:34.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:33:34.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:33:38.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["45", "8d4ce743aac63ff"]) - ModelState is Valid +2017-07-19 12:33:38.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:33:38.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:38.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:38.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:38.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3097.4727ms +2017-07-19 12:33:38.051 +05:30 [Information] Request finished in 3161.259ms 200 application/json; charset=utf-8 +2017-07-19 12:33:38.051 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" completed keep alive response. +2017-07-19 12:33:38.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:33:38.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:33:38.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:33:38.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:33:38.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:33:38.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:33:38.091 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:33:38.092 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:33:38.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3177.1021ms +2017-07-19 12:33:38.096 +05:30 [Information] Request finished in 3211.5315ms 200 +2017-07-19 12:33:38.096 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:33:41.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:41.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce743aac63ff"]) - ModelState is Valid +2017-07-19 12:33:41.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:41.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:41.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:41.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:41.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:41.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3188.9009ms +2017-07-19 12:33:41.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:41.265 +05:30 [Information] Request finished in 3201.4897ms 200 application/json; charset=utf-8 +2017-07-19 12:33:41.266 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" completed keep alive response. +2017-07-19 12:33:41.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3199.9284ms +2017-07-19 12:33:41.279 +05:30 [Information] Request finished in 3213.9887ms 200 application/json; charset=utf-8 +2017-07-19 12:33:41.282 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" completed keep alive response. +2017-07-19 12:33:41.293 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:33:41.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:33:41.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:33:44.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:44.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:44.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:44.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:44.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3112.3663ms +2017-07-19 12:33:44.414 +05:30 [Information] Request finished in 3123.0551ms 200 application/json; charset=utf-8 +2017-07-19 12:33:44.414 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" completed keep alive response. +2017-07-19 12:33:45.540 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:33:45.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:33:45.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:33:45.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:33:45.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:33:45.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:33:45.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:33:45.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:33:45.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:33:45.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:33:45.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:33:45.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:33:46.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:33:46.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:33:46.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:33:48.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:48.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:48.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:48.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:48.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:48.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2406.2281ms +2017-07-19 12:33:48.359 +05:30 [Information] Request finished in 2441.5607ms 200 application/json; charset=utf-8 +2017-07-19 12:33:48.360 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" completed keep alive response. +2017-07-19 12:33:48.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:48.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:48.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:48.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:48.736 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:48.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:48.736 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:48.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:48.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:48.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3194.1039ms +2017-07-19 12:33:48.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:48.748 +05:30 [Information] Request finished in 3205.9779ms 200 application/json; charset=utf-8 +2017-07-19 12:33:48.751 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" completed keep alive response. +2017-07-19 12:33:48.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3205.6853ms +2017-07-19 12:33:48.774 +05:30 [Information] Request finished in 3234.8368ms 200 application/json; charset=utf-8 +2017-07-19 12:33:48.776 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" completed keep alive response. +2017-07-19 12:33:49.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:49.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:33:49.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:49.202 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:49.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:49.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:49.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3267.4805ms +2017-07-19 12:33:49.226 +05:30 [Information] Request finished in 3306.3985ms 200 application/json; charset=utf-8 +2017-07-19 12:33:49.229 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" completed keep alive response. +2017-07-19 12:33:49.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:33:49.610 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:33:49.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:33:49.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:33:49.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3596.2157ms +2017-07-19 12:33:49.627 +05:30 [Information] Request finished in 3706.057ms 200 application/json; charset=utf-8 +2017-07-19 12:33:49.628 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" completed keep alive response. +2017-07-19 12:35:07.297 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" received FIN. +2017-07-19 12:35:07.298 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" received FIN. +2017-07-19 12:35:07.299 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" disconnecting. +2017-07-19 12:35:07.300 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" disconnecting. +2017-07-19 12:35:07.300 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" received FIN. +2017-07-19 12:35:07.302 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" received FIN. +2017-07-19 12:35:07.303 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" received FIN. +2017-07-19 12:35:07.299 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" received FIN. +2017-07-19 12:35:07.304 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" started. +2017-07-19 12:35:07.303 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" disconnecting. +2017-07-19 12:35:07.308 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" sending FIN. +2017-07-19 12:35:07.314 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" sent FIN with status "0". +2017-07-19 12:35:07.321 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" disconnecting. +2017-07-19 12:35:07.324 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" sending FIN. +2017-07-19 12:35:07.329 +05:30 [Debug] Connection id ""0HL6EEBE917A0"" stopped. +2017-07-19 12:35:07.329 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" sending FIN. +2017-07-19 12:35:07.336 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" disconnecting. +2017-07-19 12:35:07.336 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" sending FIN. +2017-07-19 12:35:07.339 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" sent FIN with status "0". +2017-07-19 12:35:07.337 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" disconnecting. +2017-07-19 12:35:07.337 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" sending FIN. +2017-07-19 12:35:07.340 +05:30 [Debug] Connection id ""0HL6EEBE917A2"" stopped. +2017-07-19 12:35:07.346 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" sent FIN with status "0". +2017-07-19 12:35:07.347 +05:30 [Debug] Connection id ""0HL6EEBE9179V"" stopped. +2017-07-19 12:35:07.346 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" sent FIN with status "0". +2017-07-19 12:35:07.348 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" sent FIN with status "0". +2017-07-19 12:35:07.350 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:35:07.356 +05:30 [Debug] Connection id ""0HL6EEBE917A7"" stopped. +2017-07-19 12:35:07.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:35:07.355 +05:30 [Debug] Connection id ""0HL6EEBE917A5"" stopped. +2017-07-19 12:35:07.358 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" sending FIN. +2017-07-19 12:35:07.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:35:07.365 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" sent FIN with status "0". +2017-07-19 12:35:07.366 +05:30 [Debug] Connection id ""0HL6EEBE917A6"" stopped. +2017-07-19 12:35:10.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:35:10.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:10.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:10.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:10.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3271.8009ms +2017-07-19 12:35:10.640 +05:30 [Information] Request finished in 3301.7828ms 200 application/json; charset=utf-8 +2017-07-19 12:35:10.640 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:35:10.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:35:10.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:35:10.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:35:13.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:13.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:13.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:13.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:13.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3129.985ms +2017-07-19 12:35:13.925 +05:30 [Information] Request finished in 3153.1876ms 200 application/json; charset=utf-8 +2017-07-19 12:35:13.926 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:35:13.932 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:35:13.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:35:13.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:35:17.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:17.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:17.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:17.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:17.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3170.2319ms +2017-07-19 12:35:17.111 +05:30 [Information] Request finished in 3177.1173ms 200 application/json; charset=utf-8 +2017-07-19 12:35:17.112 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:35:18.894 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" started. +2017-07-19 12:35:18.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:35:18.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:35:18.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:35:18.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:35:18.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:35:18.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:35:19.341 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" started. +2017-07-19 12:35:19.343 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" started. +2017-07-19 12:35:19.343 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" started. +2017-07-19 12:35:19.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:35:19.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:35:19.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:35:19.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:35:19.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:35:19.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:35:20.191 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" started. +2017-07-19 12:35:20.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:35:20.834 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:35:20.835 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:35:21.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:35:21.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:35:21.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:35:23.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:23.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:23.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:35:23.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:23.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:23.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:23.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5017.6599ms +2017-07-19 12:35:23.993 +05:30 [Information] Request finished in 5071.8053ms 200 application/json; charset=utf-8 +2017-07-19 12:35:24.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:24.019 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:35:24.019 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:24.018 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:35:24.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:24.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5141.115ms +2017-07-19 12:35:24.049 +05:30 [Information] Request finished in 5150.7189ms 200 application/json; charset=utf-8 +2017-07-19 12:35:24.050 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:35:24.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:24.904 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:35:24.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:24.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:35:25.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:25.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:25.059 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:35:25.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:25.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:25.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:25.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:25.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5829.9021ms +2017-07-19 12:35:25.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3399.2841ms +2017-07-19 12:35:25.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:25.265 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:35:25.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:25.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:25.290 +05:30 [Information] Request finished in 3481.3726ms 200 application/json; charset=utf-8 +2017-07-19 12:35:25.290 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:35:25.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5940.4818ms +2017-07-19 12:35:25.323 +05:30 [Information] Request finished in 5974.8162ms 200 application/json; charset=utf-8 +2017-07-19 12:35:25.324 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:35:25.363 +05:30 [Information] Request finished in 5911.8582ms 200 application/json; charset=utf-8 +2017-07-19 12:35:25.363 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:35:25.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:25.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:35:25.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:25.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:25.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4823.3398ms +2017-07-19 12:35:25.665 +05:30 [Information] Request finished in 4879.0987ms 200 application/json; charset=utf-8 +2017-07-19 12:35:25.666 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:35:28.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:35:28.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:35:28.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:35:30.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74876e68e8"]) - ModelState is Valid +2017-07-19 12:35:30.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:30.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:30.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:30.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2124.1877ms +2017-07-19 12:35:30.428 +05:30 [Information] Request finished in 2132.6312ms 200 application/json; charset=utf-8 +2017-07-19 12:35:30.428 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:35:30.449 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:35:30.450 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:35:30.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:35:31.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:35:31.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:31.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:31.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:31.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1161.1739ms +2017-07-19 12:35:31.617 +05:30 [Information] Request finished in 1167.8492ms 200 application/json; charset=utf-8 +2017-07-19 12:35:31.617 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:35:34.299 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:35:34.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:35:34.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:35:38.412 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:35:38.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:35:38.413 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:35:39.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["46", "8d4ce74876e68e8"]) - ModelState is Valid +2017-07-19 12:35:39.503 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:35:39.507 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:35:39.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 5208.302ms +2017-07-19 12:35:39.532 +05:30 [Information] Request finished in 5234.23ms 200 +2017-07-19 12:35:39.536 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:35:40.726 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74876e68e8"]) - ModelState is Valid +2017-07-19 12:35:40.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:40.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:40.735 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:40.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2324.479ms +2017-07-19 12:35:40.753 +05:30 [Information] Request finished in 2337.1061ms 200 application/json; charset=utf-8 +2017-07-19 12:35:40.754 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:35:55.270 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:35:55.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:35:55.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:35:58.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:35:58.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:35:58.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:35:58.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:35:58.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3200.5799ms +2017-07-19 12:35:58.478 +05:30 [Information] Request finished in 3207.4224ms 200 application/json; charset=utf-8 +2017-07-19 12:35:58.478 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:35:58.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:35:58.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:35:58.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:36:01.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:01.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:01.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:01.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:01.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3115.578ms +2017-07-19 12:36:01.723 +05:30 [Information] Request finished in 3143.11ms 200 application/json; charset=utf-8 +2017-07-19 12:36:01.724 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:36:01.728 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:36:01.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:36:01.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:36:04.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:04.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:04.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:04.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:04.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3154.544ms +2017-07-19 12:36:04.890 +05:30 [Information] Request finished in 3161.1935ms 200 application/json; charset=utf-8 +2017-07-19 12:36:04.891 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:36:07.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:36:07.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:36:07.151 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:36:07.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:36:07.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:36:07.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:36:07.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:36:07.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:36:07.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:36:07.906 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:36:07.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:36:07.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:36:07.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:36:07.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:36:07.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:36:08.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:36:08.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:36:08.710 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:36:10.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:10.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:10.409 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:10.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:10.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:10.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:10.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3259.8263ms +2017-07-19 12:36:10.464 +05:30 [Information] Request finished in 3314.5977ms 200 application/json; charset=utf-8 +2017-07-19 12:36:10.466 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:36:10.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:10.521 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:10.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:10.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:10.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3362.3322ms +2017-07-19 12:36:10.527 +05:30 [Information] Request finished in 3377.541ms 200 application/json; charset=utf-8 +2017-07-19 12:36:10.528 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:36:11.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:11.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:11.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:11.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:11.175 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:11.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:11.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:11.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3315.3561ms +2017-07-19 12:36:11.245 +05:30 [Information] Request finished in 3343.3894ms 200 application/json; charset=utf-8 +2017-07-19 12:36:11.261 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:36:11.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:11.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:11.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:11.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:11.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3444.3446ms +2017-07-19 12:36:11.352 +05:30 [Information] Request finished in 3452.3498ms 200 application/json; charset=utf-8 +2017-07-19 12:36:11.352 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:36:11.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:36:11.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:11.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:11.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:11.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:11.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3129.7876ms +2017-07-19 12:36:11.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:11.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:12.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:12.006 +05:30 [Information] Request finished in 3296.7231ms 200 application/json; charset=utf-8 +2017-07-19 12:36:12.008 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:36:12.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4085.9411ms +2017-07-19 12:36:12.022 +05:30 [Information] Request finished in 4114.8215ms 200 application/json; charset=utf-8 +2017-07-19 12:36:12.022 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:36:36.956 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:36:36.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:36:36.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:36:40.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:36:40.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:40.017 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:40.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:40.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.4989ms +2017-07-19 12:36:40.024 +05:30 [Information] Request finished in 3069.7583ms 200 application/json; charset=utf-8 +2017-07-19 12:36:40.024 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:36:40.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:36:40.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:36:40.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:36:43.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:36:43.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:43.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:43.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:43.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.1977ms +2017-07-19 12:36:43.072 +05:30 [Information] Request finished in 3045.3194ms 200 application/json; charset=utf-8 +2017-07-19 12:36:43.072 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:36:43.103 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:36:43.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:36:43.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:36:43.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:36:43.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:36:43.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:36:45.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:45.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:45.251 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:45.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:45.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2147.4175ms +2017-07-19 12:36:45.257 +05:30 [Information] Request finished in 2153.4674ms 200 application/json; charset=utf-8 +2017-07-19 12:36:45.257 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:36:45.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:36:45.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:36:45.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:36:46.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:36:46.177 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:46.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:46.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:46.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3073.4805ms +2017-07-19 12:36:46.185 +05:30 [Information] Request finished in 3083.2932ms 200 application/json; charset=utf-8 +2017-07-19 12:36:46.186 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:36:48.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:48.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:48.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:48.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:48.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3125.302ms +2017-07-19 12:36:48.395 +05:30 [Information] Request finished in 3131.9548ms 200 application/json; charset=utf-8 +2017-07-19 12:36:48.395 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:36:49.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:36:49.785 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:36:49.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:36:49.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:36:49.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:36:49.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:36:50.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:36:50.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:36:50.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:36:50.190 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:36:50.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:36:50.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:36:50.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:36:50.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:36:50.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:36:50.995 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:36:50.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:36:50.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:36:52.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:52.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:52.452 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:52.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:52.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:52.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2261.8335ms +2017-07-19 12:36:52.460 +05:30 [Information] Request finished in 2271.9403ms 200 application/json; charset=utf-8 +2017-07-19 12:36:52.461 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:36:53.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:53.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:53.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:53.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:53.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:53.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:53.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:53.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:53.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:53.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:53.181 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3360.0297ms +2017-07-19 12:36:53.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3359.2298ms +2017-07-19 12:36:53.191 +05:30 [Information] Request finished in 3413.015ms 200 application/json; charset=utf-8 +2017-07-19 12:36:53.193 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:36:53.195 +05:30 [Information] Request finished in 3412.7885ms 200 application/json; charset=utf-8 +2017-07-19 12:36:53.197 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:36:53.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:53.418 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:36:53.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:53.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:53.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:53.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:53.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3407.8057ms +2017-07-19 12:36:53.603 +05:30 [Information] Request finished in 3416.2925ms 200 application/json; charset=utf-8 +2017-07-19 12:36:53.604 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:36:54.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:54.095 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:36:54.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:54.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:54.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3896.4551ms +2017-07-19 12:36:54.101 +05:30 [Information] Request finished in 3913.9671ms 200 application/json; charset=utf-8 +2017-07-19 12:36:54.101 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:36:54.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:36:54.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:54.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:54.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:54.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3186.6348ms +2017-07-19 12:36:54.191 +05:30 [Information] Request finished in 3224.0666ms 200 application/json; charset=utf-8 +2017-07-19 12:36:54.191 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:36:54.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:36:54.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:36:54.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:36:57.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:36:57.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:36:57.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:36:57.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:36:57.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3042.508ms +2017-07-19 12:36:57.244 +05:30 [Information] Request finished in 3050.3205ms 200 application/json; charset=utf-8 +2017-07-19 12:36:57.245 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:36:57.253 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:36:57.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:36:57.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:36:59.922 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:36:59.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:36:59.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:37:00.306 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:37:00.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:00.346 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:00.347 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:00.349 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3085.8454ms +2017-07-19 12:37:00.353 +05:30 [Information] Request finished in 3100.7936ms 200 application/json; charset=utf-8 +2017-07-19 12:37:00.353 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:37:02.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:37:02.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:02.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:02.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:03.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.8914ms +2017-07-19 12:37:03.014 +05:30 [Information] Request finished in 3094.3882ms 200 application/json; charset=utf-8 +2017-07-19 12:37:03.015 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:37:03.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:37:03.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:37:03.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:37:06.066 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:37:06.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:06.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:06.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:06.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3048.548ms +2017-07-19 12:37:06.076 +05:30 [Information] Request finished in 3058.2475ms 200 application/json; charset=utf-8 +2017-07-19 12:37:06.077 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:37:06.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:37:06.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:37:06.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:37:06.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:37:06.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:37:06.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:37:09.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:37:09.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:09.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:09.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:09.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:09.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3096.553ms +2017-07-19 12:37:09.212 +05:30 [Information] Request finished in 3126.7822ms 200 application/json; charset=utf-8 +2017-07-19 12:37:09.213 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:37:09.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:09.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:09.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:09.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.4603ms +2017-07-19 12:37:09.253 +05:30 [Information] Request finished in 3167.4469ms 200 application/json; charset=utf-8 +2017-07-19 12:37:09.253 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:37:09.258 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:37:09.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:37:09.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:37:11.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:11.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:11.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:11.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:11.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2174.7817ms +2017-07-19 12:37:11.439 +05:30 [Information] Request finished in 2180.6697ms 200 application/json; charset=utf-8 +2017-07-19 12:37:11.440 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:37:12.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:37:12.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:37:12.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:37:12.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:37:12.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:37:12.668 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:37:12.976 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:37:12.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:37:12.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:37:12.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:37:12.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:37:12.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:37:12.988 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:37:12.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:37:12.991 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:37:13.478 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:37:13.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:37:13.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:37:15.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:15.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:15.751 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:37:15.751 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:15.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:15.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3096.3481ms +2017-07-19 12:37:15.756 +05:30 [Information] Request finished in 3124.7992ms 200 application/json; charset=utf-8 +2017-07-19 12:37:15.757 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:37:15.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:15.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:15.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:37:15.861 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:15.863 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:15.866 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3195.9602ms +2017-07-19 12:37:15.869 +05:30 [Information] Request finished in 3226.2811ms 200 application/json; charset=utf-8 +2017-07-19 12:37:15.869 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:37:16.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:16.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:16.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:37:16.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:16.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:37:16.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:16.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:16.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3368.5006ms +2017-07-19 12:37:16.420 +05:30 [Information] Request finished in 3465.4782ms 200 application/json; charset=utf-8 +2017-07-19 12:37:16.420 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:37:16.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:16.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:37:16.471 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:16.472 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:16.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3492.8334ms +2017-07-19 12:37:16.479 +05:30 [Information] Request finished in 3524.8351ms 200 application/json; charset=utf-8 +2017-07-19 12:37:16.479 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:37:16.540 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:37:16.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:16.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:16.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:16.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.9907ms +2017-07-19 12:37:16.551 +05:30 [Information] Request finished in 3073.8248ms 200 application/json; charset=utf-8 +2017-07-19 12:37:16.552 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:37:16.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:37:16.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:37:16.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:37:16.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:16.939 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:37:16.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:16.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:16.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3962.0437ms +2017-07-19 12:37:16.946 +05:30 [Information] Request finished in 3992.0819ms 200 application/json; charset=utf-8 +2017-07-19 12:37:16.947 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:37:18.659 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:37:18.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:18.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:18.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:18.669 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2110.2465ms +2017-07-19 12:37:18.673 +05:30 [Information] Request finished in 2117.9713ms 200 application/json; charset=utf-8 +2017-07-19 12:37:18.674 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" completed keep alive response. +2017-07-19 12:37:18.683 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:37:18.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:37:18.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:37:21.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:37:21.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:37:21.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:37:21.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:37:21.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3095.0752ms +2017-07-19 12:37:21.788 +05:30 [Information] Request finished in 3106.6015ms 200 application/json; charset=utf-8 +2017-07-19 12:37:21.789 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:38:10.238 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:38:10.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:38:10.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:38:13.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:38:13.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:13.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:13.287 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:13.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.4717ms +2017-07-19 12:38:13.292 +05:30 [Information] Request finished in 3055.6437ms 200 application/json; charset=utf-8 +2017-07-19 12:38:13.293 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:38:13.306 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:38:13.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:38:13.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:38:16.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:38:16.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:16.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:16.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:16.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3116.6053ms +2017-07-19 12:38:16.450 +05:30 [Information] Request finished in 3149.4218ms 200 application/json; charset=utf-8 +2017-07-19 12:38:16.450 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:38:16.487 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:38:16.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:38:16.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:38:16.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:38:16.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:38:16.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:38:19.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:19.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:38:19.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:19.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:19.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:19.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:19.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:19.654 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:19.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3160.5807ms +2017-07-19 12:38:19.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3161.0213ms +2017-07-19 12:38:19.662 +05:30 [Information] Request finished in 3184.7269ms 200 application/json; charset=utf-8 +2017-07-19 12:38:19.664 +05:30 [Information] Request finished in 3180.9004ms 200 application/json; charset=utf-8 +2017-07-19 12:38:19.666 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:38:19.665 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:38:19.670 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" received FIN. +2017-07-19 12:38:19.677 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:38:19.686 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" disconnecting. +2017-07-19 12:38:19.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:38:19.692 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" sending FIN. +2017-07-19 12:38:19.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:38:19.694 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" sent FIN with status "0". +2017-07-19 12:38:19.695 +05:30 [Debug] Connection id ""0HL6EEBE917AB"" stopped. +2017-07-19 12:38:22.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:22.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:22.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:22.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:22.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.4515ms +2017-07-19 12:38:22.823 +05:30 [Information] Request finished in 3148.8669ms 200 application/json; charset=utf-8 +2017-07-19 12:38:22.824 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:38:24.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:38:24.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:38:24.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:38:24.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:38:24.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:38:24.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:38:24.929 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:38:24.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:38:24.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:38:24.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:38:24.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:38:24.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:38:25.962 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" started. +2017-07-19 12:38:26.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:38:26.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:38:26.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:38:27.788 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:38:27.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:38:27.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:38:29.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:29.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:30.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:30.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:30.025 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:38:30.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:30.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:30.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:30.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:30.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:38:30.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:30.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:38:30.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5959.327ms +2017-07-19 12:38:30.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:30.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:30.152 +05:30 [Information] Request finished in 5997.8494ms 200 application/json; charset=utf-8 +2017-07-19 12:38:30.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5988.1806ms +2017-07-19 12:38:30.159 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:38:30.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:30.190 +05:30 [Information] Request finished in 6020.0956ms 200 application/json; charset=utf-8 +2017-07-19 12:38:30.191 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:38:30.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5252.6034ms +2017-07-19 12:38:30.234 +05:30 [Information] Request finished in 5319.7917ms 200 application/json; charset=utf-8 +2017-07-19 12:38:30.235 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:38:30.861 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:30.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:38:30.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:38:30.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:30.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:30.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:30.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3173.9692ms +2017-07-19 12:38:31.060 +05:30 [Information] Request finished in 3243.525ms 200 application/json; charset=utf-8 +2017-07-19 12:38:31.061 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:38:31.109 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:38:31.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:38:31.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:38:31.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:31.276 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:38:31.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:31.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:31.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6352.3338ms +2017-07-19 12:38:31.325 +05:30 [Information] Request finished in 6403.7216ms 200 application/json; charset=utf-8 +2017-07-19 12:38:31.325 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:38:31.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:31.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:38:31.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:31.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:31.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4966.7389ms +2017-07-19 12:38:31.774 +05:30 [Information] Request finished in 4986.0082ms 200 application/json; charset=utf-8 +2017-07-19 12:38:31.774 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:38:32.581 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:38:32.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:38:32.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:38:34.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:38:34.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:34.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:34.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:34.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3089.7238ms +2017-07-19 12:38:34.206 +05:30 [Information] Request finished in 3139.8477ms 200 application/json; charset=utf-8 +2017-07-19 12:38:34.206 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:38:34.217 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:38:34.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:38:34.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:38:35.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:38:35.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:35.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:35.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:35.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3061.6032ms +2017-07-19 12:38:35.653 +05:30 [Information] Request finished in 3071.8255ms 200 application/json; charset=utf-8 +2017-07-19 12:38:35.654 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:38:35.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:38:35.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:38:35.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:38:37.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:38:37.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:37.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:37.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:37.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3100.1848ms +2017-07-19 12:38:37.326 +05:30 [Information] Request finished in 3108.5985ms 200 application/json; charset=utf-8 +2017-07-19 12:38:37.327 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:38:38.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:38:38.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:38.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:38.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:38.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.017ms +2017-07-19 12:38:38.727 +05:30 [Information] Request finished in 3070.5909ms 200 application/json; charset=utf-8 +2017-07-19 12:38:38.728 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:38:38.737 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:38:38.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:38:38.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:38:41.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["47", "8d4ce74a355ea51"]) - ModelState is Valid +2017-07-19 12:38:41.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:38:42.003 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:38:42.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3262.0107ms +2017-07-19 12:38:42.008 +05:30 [Information] Request finished in 3271.6228ms 200 +2017-07-19 12:38:42.009 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:38:56.129 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:38:56.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:38:56.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:38:59.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:38:59.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:38:59.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:38:59.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:38:59.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3205.2158ms +2017-07-19 12:38:59.345 +05:30 [Information] Request finished in 3215.6401ms 200 application/json; charset=utf-8 +2017-07-19 12:38:59.346 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:38:59.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:38:59.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:38:59.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:39:02.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:02.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:02.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:02.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:02.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.4441ms +2017-07-19 12:39:02.573 +05:30 [Information] Request finished in 3157.3567ms 200 application/json; charset=utf-8 +2017-07-19 12:39:02.573 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:39:02.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:02.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:02.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:05.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:05.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:05.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:05.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:05.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3121.0595ms +2017-07-19 12:39:05.707 +05:30 [Information] Request finished in 3129.8605ms 200 application/json; charset=utf-8 +2017-07-19 12:39:05.707 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:06.918 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:39:06.919 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:39:06.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:39:06.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:39:06.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:39:06.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:39:07.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:39:07.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:39:07.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:39:07.474 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:39:07.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:39:07.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:39:09.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:09.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:09.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:10.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:39:10.289 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:39:10.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:39:12.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:12.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:12.429 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:12.457 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:12.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:12.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:12.459 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:12.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:12.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:12.464 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5526.8685ms +2017-07-19 12:39:12.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:12.491 +05:30 [Information] Request finished in 5550.5493ms 200 application/json; charset=utf-8 +2017-07-19 12:39:12.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5529.7806ms +2017-07-19 12:39:12.493 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:12.507 +05:30 [Information] Request finished in 5589.5225ms 200 application/json; charset=utf-8 +2017-07-19 12:39:12.509 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:39:13.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:13.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:13.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:13.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:39:13.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:13.745 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:13.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:13.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:13.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4480.235ms +2017-07-19 12:39:13.836 +05:30 [Information] Request finished in 4531.2392ms 200 application/json; charset=utf-8 +2017-07-19 12:39:13.839 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:39:13.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:13.885 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:13.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:13.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:13.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6416.2488ms +2017-07-19 12:39:13.891 +05:30 [Information] Request finished in 6431.8277ms 200 application/json; charset=utf-8 +2017-07-19 12:39:13.892 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:39:13.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:13.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:13.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:13.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3657.0541ms +2017-07-19 12:39:13.953 +05:30 [Information] Request finished in 3667.5181ms 200 application/json; charset=utf-8 +2017-07-19 12:39:13.954 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:14.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:14.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:14.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:14.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:14.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7045.7922ms +2017-07-19 12:39:14.536 +05:30 [Information] Request finished in 7073.0646ms 200 application/json; charset=utf-8 +2017-07-19 12:39:14.537 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:39:16.895 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:39:16.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:39:16.896 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:39:19.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:19.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:19.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:19.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:19.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3044.358ms +2017-07-19 12:39:19.947 +05:30 [Information] Request finished in 3052.1099ms 200 application/json; charset=utf-8 +2017-07-19 12:39:19.947 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:19.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:39:19.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:39:19.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:39:23.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:39:23.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:23.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:23.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:23.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.3815ms +2017-07-19 12:39:23.027 +05:30 [Information] Request finished in 3077.2586ms 200 application/json; charset=utf-8 +2017-07-19 12:39:23.028 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:39:23.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:39:23.056 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:39:23.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:39:23.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:39:23.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:39:23.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:39:26.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:26.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:26.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:26.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:26.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:26.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3126.8355ms +2017-07-19 12:39:26.206 +05:30 [Information] Request finished in 3161.3971ms 200 application/json; charset=utf-8 +2017-07-19 12:39:26.207 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:39:26.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:26.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:26.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:26.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3180.2419ms +2017-07-19 12:39:26.243 +05:30 [Information] Request finished in 3197.2951ms 200 application/json; charset=utf-8 +2017-07-19 12:39:26.244 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:39:26.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:26.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:26.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:29.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:29.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:29.352 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:29.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:29.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3103.0979ms +2017-07-19 12:39:29.358 +05:30 [Information] Request finished in 3108.6538ms 200 application/json; charset=utf-8 +2017-07-19 12:39:29.358 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:30.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:39:30.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:39:30.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:39:30.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:39:30.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:39:30.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:39:30.800 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:39:30.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:39:30.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:30.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:39:30.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:30.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:30.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:39:30.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:39:30.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:39:31.541 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:39:31.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:39:31.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:39:33.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:33.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:33.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:33.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:33.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:33.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:33.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3096.5961ms +2017-07-19 12:39:33.580 +05:30 [Information] Request finished in 3125.1004ms 200 application/json; charset=utf-8 +2017-07-19 12:39:33.581 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:33.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:33.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:33.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:33.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:33.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:33.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3235.2626ms +2017-07-19 12:39:33.717 +05:30 [Information] Request finished in 3261.8815ms 200 application/json; charset=utf-8 +2017-07-19 12:39:33.718 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:39:33.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:33.840 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:33.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:33.842 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:33.844 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3036.9256ms +2017-07-19 12:39:33.847 +05:30 [Information] Request finished in 3058.1892ms 200 application/json; charset=utf-8 +2017-07-19 12:39:33.848 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:39:33.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:33.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:34.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:34.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:34.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:34.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:34.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3290.6607ms +2017-07-19 12:39:34.134 +05:30 [Information] Request finished in 3343.8304ms 200 application/json; charset=utf-8 +2017-07-19 12:39:34.135 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:39:34.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:34.239 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:34.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:34.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:34.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3432.1038ms +2017-07-19 12:39:34.249 +05:30 [Information] Request finished in 3456.9496ms 200 application/json; charset=utf-8 +2017-07-19 12:39:34.250 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:39:34.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:34.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:34.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:34.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:34.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3162.2661ms +2017-07-19 12:39:34.710 +05:30 [Information] Request finished in 3169.7952ms 200 application/json; charset=utf-8 +2017-07-19 12:39:34.710 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:34.713 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:39:34.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:39:34.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:39:36.456 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:39:36.457 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:39:36.458 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:39:37.758 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:39:37.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:37.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:37.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:37.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3052.5982ms +2017-07-19 12:39:37.774 +05:30 [Information] Request finished in 3060.4408ms 200 application/json; charset=utf-8 +2017-07-19 12:39:37.775 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:37.798 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:39:37.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:39:37.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:39:39.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:39.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:39.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:39.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:39.521 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3060.4812ms +2017-07-19 12:39:39.524 +05:30 [Information] Request finished in 3067.7451ms 200 application/json; charset=utf-8 +2017-07-19 12:39:39.525 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:39:39.549 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:39:39.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:39:39.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:39:40.852 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:39:40.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:40.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:40.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:40.940 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3138.9479ms +2017-07-19 12:39:40.943 +05:30 [Information] Request finished in 3146.224ms 200 application/json; charset=utf-8 +2017-07-19 12:39:40.943 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:39:42.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:39:42.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:42.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:42.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:42.628 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3075.7893ms +2017-07-19 12:39:42.632 +05:30 [Information] Request finished in 3101.8732ms 200 application/json; charset=utf-8 +2017-07-19 12:39:42.632 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:39:42.652 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:39:42.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:39:42.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:39:42.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:39:42.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:39:42.656 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:39:45.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:45.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:45.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:45.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:45.774 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:45.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:45.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:45.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3119.3614ms +2017-07-19 12:39:45.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:45.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3126.8931ms +2017-07-19 12:39:45.786 +05:30 [Information] Request finished in 3133.1473ms 200 application/json; charset=utf-8 +2017-07-19 12:39:45.787 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:39:45.807 +05:30 [Information] Request finished in 3142.7512ms 200 application/json; charset=utf-8 +2017-07-19 12:39:45.808 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:45.816 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:45.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:45.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:48.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:48.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:48.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:48.918 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:48.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3099.0863ms +2017-07-19 12:39:48.923 +05:30 [Information] Request finished in 3126.1873ms 200 application/json; charset=utf-8 +2017-07-19 12:39:48.925 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:50.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:39:50.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:39:50.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:39:50.153 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:39:50.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:39:50.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:39:50.627 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:39:50.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:39:50.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:39:50.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:39:50.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:39:50.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:39:50.704 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:39:50.705 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:39:50.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:39:51.274 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:39:51.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:39:51.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:39:52.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:39:52.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:52.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:52.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:52.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1274.6914ms +2017-07-19 12:39:52.556 +05:30 [Information] Request finished in 1281.5094ms 200 application/json; charset=utf-8 +2017-07-19 12:39:52.557 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:52.559 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:39:52.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:39:52.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:39:53.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:53.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:53.297 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:53.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:53.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:53.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:53.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3209.1187ms +2017-07-19 12:39:53.443 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:53.445 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:53.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:53.455 +05:30 [Information] Request finished in 3294.0958ms 200 application/json; charset=utf-8 +2017-07-19 12:39:53.460 +05:30 [Debug] Connection id ""0HL6EEBE917AC"" completed keep alive response. +2017-07-19 12:39:53.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:53.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3308.1032ms +2017-07-19 12:39:53.499 +05:30 [Information] Request finished in 3339.5795ms 200 application/json; charset=utf-8 +2017-07-19 12:39:53.499 +05:30 [Debug] Connection id ""0HL6EEBE917AE"" completed keep alive response. +2017-07-19 12:39:53.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:53.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:53.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:39:54.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:54.114 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:54.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:54.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:54.116 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:54.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:54.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:54.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:54.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3413.8231ms +2017-07-19 12:39:54.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3491.7058ms +2017-07-19 12:39:54.131 +05:30 [Information] Request finished in 3500.3466ms 200 application/json; charset=utf-8 +2017-07-19 12:39:54.132 +05:30 [Information] Request finished in 3510.8658ms 200 application/json; charset=utf-8 +2017-07-19 12:39:54.132 +05:30 [Debug] Connection id ""0HL6EEBE917A9"" completed keep alive response. +2017-07-19 12:39:54.133 +05:30 [Debug] Connection id ""0HL6EEBE917A8"" completed keep alive response. +2017-07-19 12:39:54.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:54.738 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:39:54.739 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:54.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:54.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4083.469ms +2017-07-19 12:39:54.745 +05:30 [Information] Request finished in 4122.056ms 200 application/json; charset=utf-8 +2017-07-19 12:39:54.746 +05:30 [Debug] Connection id ""0HL6EEBE917AA"" completed keep alive response. +2017-07-19 12:39:55.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:39:55.622 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:39:55.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:39:55.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:39:55.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.004ms +2017-07-19 12:39:55.630 +05:30 [Information] Request finished in 3070.7624ms 200 application/json; charset=utf-8 +2017-07-19 12:39:55.631 +05:30 [Debug] Connection id ""0HL6EEBE917AD"" completed keep alive response. +2017-07-19 12:39:55.642 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:39:55.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:39:55.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:41:48.152 +05:30 [Debug] Hosting starting +2017-07-19 12:41:48.617 +05:30 [Debug] Hosting started +2017-07-19 12:41:48.865 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" started. +2017-07-19 12:41:48.894 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" started. +2017-07-19 12:41:49.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:41:49.158 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:41:49.293 +05:30 [Information] Request finished in 207.7306ms 200 +2017-07-19 12:41:49.834 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:41:50.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:41:50.966 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"54eb545b-17ff-489c-98c1-2435c9c5479e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:41:51.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:41:51.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:41:51.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:41:51.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:41:51.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:41:51.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:41:51.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:41:51.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:41:51.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:41:51.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 650.5947ms +2017-07-19 12:41:51.947 +05:30 [Information] Request finished in 2929.1762ms 200 application/json; charset=utf-8 +2017-07-19 12:41:51.950 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:41:55.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:01.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:01.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:01.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:01.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10075.8439ms +2017-07-19 12:42:01.838 +05:30 [Information] Request finished in 10118.6427ms 200 application/json; charset=utf-8 +2017-07-19 12:42:01.839 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:02.687 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:42:02.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:42:02.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:42:05.104 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:05.154 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:05.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:06.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:42:06.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:06.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:06.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:06.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3637.8133ms +2017-07-19 12:42:06.467 +05:30 [Information] Request finished in 3795.4585ms 200 application/json; charset=utf-8 +2017-07-19 12:42:06.468 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:08.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:08.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:08.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:08.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:08.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3218.6104ms +2017-07-19 12:42:08.402 +05:30 [Information] Request finished in 3346.9083ms 200 application/json; charset=utf-8 +2017-07-19 12:42:08.403 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:08.557 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:08.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:08.559 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:11.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:11.683 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:11.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:11.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:11.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3126.2522ms +2017-07-19 12:42:11.690 +05:30 [Information] Request finished in 3148.5706ms 200 application/json; charset=utf-8 +2017-07-19 12:42:11.691 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:12.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:42:12.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:42:12.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:42:15.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:42:15.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:15.872 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:15.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:15.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3447.8ms +2017-07-19 12:42:15.879 +05:30 [Information] Request finished in 3457.2389ms 200 application/json; charset=utf-8 +2017-07-19 12:42:15.879 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:16.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:16.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:16.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:19.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:19.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:19.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:19.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:19.125 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.4074ms +2017-07-19 12:42:19.128 +05:30 [Information] Request finished in 3078.8381ms 200 application/json; charset=utf-8 +2017-07-19 12:42:19.129 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:19.158 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:42:19.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:42:19.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:42:22.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:42:22.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:22.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:22.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:22.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.5273ms +2017-07-19 12:42:22.226 +05:30 [Information] Request finished in 3067.9163ms 200 application/json; charset=utf-8 +2017-07-19 12:42:22.227 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:22.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 12:42:22.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 12:42:22.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 12:42:22.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:42:22.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:42:22.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:42:25.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:25.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:25.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:25.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:25.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:25.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3147.0692ms +2017-07-19 12:42:25.520 +05:30 [Information] Request finished in 3220.0846ms 200 application/json; charset=utf-8 +2017-07-19 12:42:25.521 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:25.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:25.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:25.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:25.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3363.1755ms +2017-07-19 12:42:25.679 +05:30 [Information] Request finished in 3389.22ms 200 application/json; charset=utf-8 +2017-07-19 12:42:25.679 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:25.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:42:25.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:42:25.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:42:28.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:28.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:28.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:28.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:28.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3158.5641ms +2017-07-19 12:42:28.979 +05:30 [Information] Request finished in 3180.3297ms 200 application/json; charset=utf-8 +2017-07-19 12:42:28.981 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:31.951 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:42:31.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:42:31.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:42:31.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:42:31.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:42:31.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:42:32.539 +05:30 [Debug] Connection id ""0HL6EELM3ND6J"" started. +2017-07-19 12:42:32.539 +05:30 [Debug] Connection id ""0HL6EELM3ND6I"" started. +2017-07-19 12:42:32.542 +05:30 [Debug] Connection id ""0HL6EELM3ND6K"" started. +2017-07-19 12:42:32.547 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:42:32.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:42:32.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:42:32.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:42:32.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:42:32.554 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:42:32.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:42:32.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:42:32.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:42:33.447 +05:30 [Debug] Connection id ""0HL6EELM3ND6L"" started. +2017-07-19 12:42:33.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:33.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:33.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:36.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:36.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:36.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:36.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:36.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:42:36.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:36.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:36.963 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:42:36.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:36.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:42:36.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:37.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:37.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:37.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4497.5209ms +2017-07-19 12:42:37.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5114.1799ms +2017-07-19 12:42:37.090 +05:30 [Information] Request finished in 4532.9402ms 200 application/json; charset=utf-8 +2017-07-19 12:42:37.093 +05:30 [Debug] Connection id ""0HL6EELM3ND6I"" completed keep alive response. +2017-07-19 12:42:37.090 +05:30 [Information] Request finished in 5135.8484ms 200 application/json; charset=utf-8 +2017-07-19 12:42:37.094 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:37.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:37.200 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:42:37.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:37.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:37.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5240.1564ms +2017-07-19 12:42:37.248 +05:30 [Information] Request finished in 5268.9746ms 200 application/json; charset=utf-8 +2017-07-19 12:42:37.249 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:37.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:37.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:42:37.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:37.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:37.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4855.8603ms +2017-07-19 12:42:37.410 +05:30 [Information] Request finished in 4867.0986ms 200 application/json; charset=utf-8 +2017-07-19 12:42:37.411 +05:30 [Debug] Connection id ""0HL6EELM3ND6J"" completed keep alive response. +2017-07-19 12:42:37.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:37.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:37.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:37.572 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:37.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3636.4742ms +2017-07-19 12:42:37.576 +05:30 [Information] Request finished in 3643.5351ms 200 application/json; charset=utf-8 +2017-07-19 12:42:37.576 +05:30 [Debug] Connection id ""0HL6EELM3ND6L"" completed keep alive response. +2017-07-19 12:42:37.578 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:42:37.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:42:37.580 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:42:39.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:39.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:42:39.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:39.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:39.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6577.5473ms +2017-07-19 12:42:39.155 +05:30 [Information] Request finished in 6607.8519ms 200 application/json; charset=utf-8 +2017-07-19 12:42:39.155 +05:30 [Debug] Connection id ""0HL6EELM3ND6K"" completed keep alive response. +2017-07-19 12:42:40.644 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:42:40.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:40.651 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:40.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:40.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3073.5712ms +2017-07-19 12:42:40.658 +05:30 [Information] Request finished in 3079.7303ms 200 application/json; charset=utf-8 +2017-07-19 12:42:40.659 +05:30 [Debug] Connection id ""0HL6EELM3ND6G"" completed keep alive response. +2017-07-19 12:42:40.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:42:40.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:42:40.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:42:42.528 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:42.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:42.530 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:42.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:42:42.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:42.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:42.916 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:42.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2234.0635ms +2017-07-19 12:42:42.928 +05:30 [Information] Request finished in 2246.4466ms 200 application/json; charset=utf-8 +2017-07-19 12:42:42.929 +05:30 [Debug] Connection id ""0HL6EELM3ND6I"" completed keep alive response. +2017-07-19 12:42:45.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:45.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:45.582 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:45.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:45.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.5823ms +2017-07-19 12:42:45.590 +05:30 [Information] Request finished in 3061.6075ms 200 application/json; charset=utf-8 +2017-07-19 12:42:45.590 +05:30 [Debug] Connection id ""0HL6EELM3ND6H"" completed keep alive response. +2017-07-19 12:42:45.594 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:42:45.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:42:45.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:42:48.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:42:48.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:48.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:48.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:48.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3040.6428ms +2017-07-19 12:42:48.641 +05:30 [Information] Request finished in 3047.0211ms 200 application/json; charset=utf-8 +2017-07-19 12:42:48.641 +05:30 [Debug] Connection id ""0HL6EELM3ND6J"" completed keep alive response. +2017-07-19 12:42:48.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:42:48.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:42:48.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:42:48.716 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:42:48.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:42:48.719 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:42:51.712 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["48", "8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:51.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:42:51.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:42:51.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:42:51.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:42:51.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.7153ms +2017-07-19 12:42:51.778 +05:30 [Information] Request finished in 3060.6133ms 200 application/json; charset=utf-8 +2017-07-19 12:42:51.778 +05:30 [Debug] Connection id ""0HL6EELM3ND6K"" completed keep alive response. +2017-07-19 12:42:51.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:42:51.874 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:42:51.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3215.8572ms +2017-07-19 12:42:51.877 +05:30 [Information] Request finished in 3223.9084ms 200 +2017-07-19 12:42:51.878 +05:30 [Debug] Connection id ""0HL6EELM3ND6L"" completed keep alive response. +2017-07-19 12:44:41.888 +05:30 [Debug] Hosting starting +2017-07-19 12:44:42.170 +05:30 [Debug] Hosting started +2017-07-19 12:44:42.301 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" started. +2017-07-19 12:44:42.301 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" started. +2017-07-19 12:44:42.697 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:44:42.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:44:42.789 +05:30 [Information] Request finished in 215.1014ms 200 +2017-07-19 12:44:42.863 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:44:43.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:44:43.755 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d3ed542e-3e9b-4a8c-97f1-f66e14636b63"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:44:43.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:44:44.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:44:44.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:44:44.199 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:44:44.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:44:44.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:44:44.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 562.9271ms +2017-07-19 12:44:44.673 +05:30 [Information] Request finished in 2078.6159ms 200 application/json; charset=utf-8 +2017-07-19 12:44:44.675 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:44:47.268 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:44:47.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:44:47.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:44:51.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce750fd8e8b1"]) - ModelState is Valid +2017-07-19 12:44:58.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:44:58.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:44:58.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:44:58.948 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11538.7431ms +2017-07-19 12:44:59.023 +05:30 [Information] Request finished in 11740.6573ms 200 application/json; charset=utf-8 +2017-07-19 12:44:59.024 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:45:37.902 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:45:37.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:45:37.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:45:41.013 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:45:41.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:41.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:41.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:41.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3668.5732ms +2017-07-19 12:45:41.581 +05:30 [Information] Request finished in 3679.5ms 200 application/json; charset=utf-8 +2017-07-19 12:45:41.581 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:45:42.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:45:42.002 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:45:42.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:45:45.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:45.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:45.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:45.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:45.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3239.0669ms +2017-07-19 12:45:45.261 +05:30 [Information] Request finished in 3260.1676ms 200 application/json; charset=utf-8 +2017-07-19 12:45:45.262 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:45:45.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:45:45.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:45:45.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:45:48.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:48.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:48.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:48.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:48.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3120.9426ms +2017-07-19 12:45:48.531 +05:30 [Information] Request finished in 3128.5084ms 200 application/json; charset=utf-8 +2017-07-19 12:45:48.533 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:45:50.821 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:45:50.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:45:50.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:45:50.825 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:45:50.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:45:50.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:45:51.336 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" started. +2017-07-19 12:45:51.337 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" started. +2017-07-19 12:45:51.340 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" started. +2017-07-19 12:45:51.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:45:51.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:45:51.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:45:51.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:45:51.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:45:51.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:45:52.140 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" started. +2017-07-19 12:45:52.295 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:45:52.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:45:52.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:45:53.289 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:45:53.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:45:53.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:45:55.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:55.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:55.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:55.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:45:55.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:55.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:55.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:45:55.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4678.9634ms +2017-07-19 12:45:55.519 +05:30 [Information] Request finished in 4718.4889ms 200 application/json; charset=utf-8 +2017-07-19 12:45:55.520 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:45:55.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:55.588 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:45:55.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:55.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:55.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4760.2683ms +2017-07-19 12:45:55.594 +05:30 [Information] Request finished in 4793.8495ms 200 application/json; charset=utf-8 +2017-07-19 12:45:55.594 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:45:55.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:55.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:55.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:55.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2422.2934ms +2017-07-19 12:45:55.722 +05:30 [Information] Request finished in 2433.9876ms 200 application/json; charset=utf-8 +2017-07-19 12:45:55.723 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:45:56.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:56.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:56.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:45:56.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:56.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:45:56.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:56.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:56.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4246.7416ms +2017-07-19 12:45:56.595 +05:30 [Information] Request finished in 4299.8828ms 200 application/json; charset=utf-8 +2017-07-19 12:45:56.637 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" completed keep alive response. +2017-07-19 12:45:56.805 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:56.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:45:56.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:56.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:56.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5543.4271ms +2017-07-19 12:45:56.894 +05:30 [Information] Request finished in 5551.8374ms 200 application/json; charset=utf-8 +2017-07-19 12:45:56.894 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" completed keep alive response. +2017-07-19 12:45:58.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:45:58.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:45:58.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:45:58.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:45:58.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7216.5753ms +2017-07-19 12:45:58.576 +05:30 [Information] Request finished in 7232.1019ms 200 application/json; charset=utf-8 +2017-07-19 12:45:58.576 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" completed keep alive response. +2017-07-19 12:46:20.118 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:46:20.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:46:20.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:46:27.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce75ff455318"]) - ModelState is Valid +2017-07-19 12:46:27.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:27.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:27.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:27.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6945.0822ms +2017-07-19 12:46:27.067 +05:30 [Information] Request finished in 6955.9461ms 200 application/json; charset=utf-8 +2017-07-19 12:46:27.068 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:46:28.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:46:28.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:46:28.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:46:31.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:46:31.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:46:31.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:46:31.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:46:31.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:31.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:31.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:31.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2872.6615ms +2017-07-19 12:46:31.849 +05:30 [Information] Request finished in 2902.3547ms 200 application/json; charset=utf-8 +2017-07-19 12:46:31.850 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:46:31.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:46:31.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:46:31.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:46:34.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce75ff455318"]) - ModelState is Valid +2017-07-19 12:46:34.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:34.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:34.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:34.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3128.9001ms +2017-07-19 12:46:34.313 +05:30 [Information] Request finished in 3137.4962ms 200 application/json; charset=utf-8 +2017-07-19 12:46:34.313 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:46:34.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:46:34.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:46:34.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:46:35.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["49", "8d4ce75ff455318"]) - ModelState is Valid +2017-07-19 12:46:35.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:46:35.095 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:46:35.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3135.7783ms +2017-07-19 12:46:35.098 +05:30 [Information] Request finished in 3182.0307ms 200 +2017-07-19 12:46:35.099 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" completed keep alive response. +2017-07-19 12:46:37.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:46:37.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:37.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:37.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:37.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.2131ms +2017-07-19 12:46:37.388 +05:30 [Information] Request finished in 3072.4386ms 200 application/json; charset=utf-8 +2017-07-19 12:46:37.389 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" completed keep alive response. +2017-07-19 12:46:37.440 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:46:37.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:46:37.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:46:39.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce75ff455318"]) - ModelState is Valid +2017-07-19 12:46:39.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:39.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:39.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:39.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2108.1132ms +2017-07-19 12:46:39.553 +05:30 [Information] Request finished in 2112.5316ms 200 application/json; charset=utf-8 +2017-07-19 12:46:39.553 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" completed keep alive response. +2017-07-19 12:46:45.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:46:45.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:46:45.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:46:48.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce75ff455318"]) - ModelState is Valid +2017-07-19 12:46:48.413 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:46:48.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:46:48.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:46:48.421 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3259.5568ms +2017-07-19 12:46:48.425 +05:30 [Information] Request finished in 3290.8659ms 200 application/json; charset=utf-8 +2017-07-19 12:46:48.430 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:47:22.953 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:47:22.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:47:22.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:47:25.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:47:26.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:26.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:26.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:26.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3137.8332ms +2017-07-19 12:47:26.097 +05:30 [Information] Request finished in 3145.1305ms 200 application/json; charset=utf-8 +2017-07-19 12:47:26.100 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:47:26.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:47:26.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:47:26.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:47:28.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:28.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:28.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:28.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:28.356 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2158.9578ms +2017-07-19 12:47:28.359 +05:30 [Information] Request finished in 2171.1191ms 200 application/json; charset=utf-8 +2017-07-19 12:47:28.360 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:47:28.367 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:47:28.368 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:47:28.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:47:31.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:31.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:31.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:31.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:31.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3145.0123ms +2017-07-19 12:47:31.519 +05:30 [Information] Request finished in 3153.2426ms 200 application/json; charset=utf-8 +2017-07-19 12:47:31.519 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" completed keep alive response. +2017-07-19 12:47:33.048 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:47:33.049 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:47:33.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:47:33.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:47:33.051 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:47:33.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:47:33.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:47:33.594 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:47:33.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:47:33.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:47:33.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:47:33.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:47:34.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:47:34.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:47:34.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:47:35.278 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:47:35.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:47:35.280 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:47:37.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:37.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:37.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:37.439 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:47:37.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:37.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:37.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:37.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:37.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:37.522 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:47:37.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:37.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4465.0729ms +2017-07-19 12:47:37.565 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:37.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:37.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4512.6443ms +2017-07-19 12:47:37.589 +05:30 [Information] Request finished in 4522.6193ms 200 application/json; charset=utf-8 +2017-07-19 12:47:37.589 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:47:37.593 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" completed keep alive response. +2017-07-19 12:47:37.598 +05:30 [Information] Request finished in 4548.2275ms 200 application/json; charset=utf-8 +2017-07-19 12:47:37.603 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" completed keep alive response. +2017-07-19 12:47:37.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:37.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:37.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4020.5098ms +2017-07-19 12:47:37.625 +05:30 [Information] Request finished in 4061.5363ms 200 application/json; charset=utf-8 +2017-07-19 12:47:37.628 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:47:38.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:47:38.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:38.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:47:38.400 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:38.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:38.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4870.0027ms +2017-07-19 12:47:38.500 +05:30 [Information] Request finished in 4910.2065ms 200 application/json; charset=utf-8 +2017-07-19 12:47:38.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:38.503 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:47:38.504 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:38.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:38.501 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:47:38.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3902.6526ms +2017-07-19 12:47:38.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:47:38.594 +05:30 [Information] Request finished in 3980.0655ms 200 application/json; charset=utf-8 +2017-07-19 12:47:38.597 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:47:38.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:38.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:38.647 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:38.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3366.8798ms +2017-07-19 12:47:38.652 +05:30 [Information] Request finished in 3372.3758ms 200 application/json; charset=utf-8 +2017-07-19 12:47:38.652 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" completed keep alive response. +2017-07-19 12:47:41.391 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:47:41.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:47:41.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:47:43.076 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:47:43.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:47:43.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:47:44.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:47:44.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:44.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:44.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:44.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3286.5998ms +2017-07-19 12:47:44.688 +05:30 [Information] Request finished in 3303.0908ms 200 application/json; charset=utf-8 +2017-07-19 12:47:44.689 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" completed keep alive response. +2017-07-19 12:47:44.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:47:44.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:47:44.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:47:46.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:47:46.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:46.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:46.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:46.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.6535ms +2017-07-19 12:47:46.147 +05:30 [Information] Request finished in 3071.0273ms 200 application/json; charset=utf-8 +2017-07-19 12:47:46.147 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" completed keep alive response. +2017-07-19 12:47:46.154 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:47:46.156 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:47:46.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:47:46.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:47:46.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:46.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:46.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:46.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2098.4288ms +2017-07-19 12:47:46.816 +05:30 [Information] Request finished in 2118.8155ms 200 application/json; charset=utf-8 +2017-07-19 12:47:46.816 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:47:46.822 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 12:47:46.823 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 12:47:46.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 12:47:49.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:47:49.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:49.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:49.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:49.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.9047ms +2017-07-19 12:47:49.219 +05:30 [Information] Request finished in 3069.8851ms 200 application/json; charset=utf-8 +2017-07-19 12:47:49.220 +05:30 [Debug] Connection id ""0HL6EEN9POOL2"" completed keep alive response. +2017-07-19 12:47:51.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["50", "8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:47:51.911 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:47:51.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:47:51.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:47:51.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 12:47:51.957 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 12:47:51.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 5132.854ms +2017-07-19 12:47:51.961 +05:30 [Information] Request finished in 5140.0394ms 200 +2017-07-19 12:47:51.962 +05:30 [Debug] Connection id ""0HL6EEN9POOL1"" completed keep alive response. +2017-07-19 12:47:54.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:47:54.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:54.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:54.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:54.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2095.0278ms +2017-07-19 12:47:54.021 +05:30 [Information] Request finished in 2111.5635ms 200 application/json; charset=utf-8 +2017-07-19 12:47:54.021 +05:30 [Debug] Connection id ""0HL6EEN9POOL5"" completed keep alive response. +2017-07-19 12:47:55.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:47:55.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:47:55.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:47:58.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:47:58.825 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:47:58.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:47:58.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:47:58.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3711.8709ms +2017-07-19 12:47:58.833 +05:30 [Information] Request finished in 3728.4215ms 200 application/json; charset=utf-8 +2017-07-19 12:47:58.833 +05:30 [Debug] Connection id ""0HL6EEN9POOL3"" completed keep alive response. +2017-07-19 12:48:18.715 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:48:18.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:48:18.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:48:29.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:48:29.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:48:29.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:48:29.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:48:29.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10516.8922ms +2017-07-19 12:48:29.240 +05:30 [Information] Request finished in 10535.5828ms 200 application/json; charset=utf-8 +2017-07-19 12:48:29.241 +05:30 [Debug] Connection id ""0HL6EEN9POOL4"" completed keep alive response. +2017-07-19 12:48:39.052 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:48:39.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:48:39.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:48:42.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:48:42.604 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:48:42.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:48:42.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:48:42.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3563.1267ms +2017-07-19 12:48:42.622 +05:30 [Information] Request finished in 3576.3852ms 200 application/json; charset=utf-8 +2017-07-19 12:48:42.623 +05:30 [Debug] Connection id ""0HL6EEN9POOL6"" completed keep alive response. +2017-07-19 12:49:26.956 +05:30 [Debug] Hosting starting +2017-07-19 12:49:27.216 +05:30 [Debug] Hosting started +2017-07-19 12:49:27.281 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" started. +2017-07-19 12:49:27.282 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" started. +2017-07-19 12:49:27.465 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:49:27.465 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:49:27.557 +05:30 [Information] Request finished in 128.6875ms 200 +2017-07-19 12:49:27.631 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" completed keep alive response. +2017-07-19 12:49:28.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:49:28.737 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"917eb5b4-be88-4011-a3ca-05563448c51b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:49:28.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:49:29.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:49:29.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:49:29.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:49:29.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:49:29.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:49:29.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 568.3019ms +2017-07-19 12:49:29.733 +05:30 [Information] Request finished in 2322.7568ms 200 application/json; charset=utf-8 +2017-07-19 12:49:29.738 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" completed keep alive response. +2017-07-19 12:49:37.505 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:49:37.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:49:37.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:49:41.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce763cb3796d"]) - ModelState is Valid +2017-07-19 12:49:47.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:49:47.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:49:47.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:49:47.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9705.8253ms +2017-07-19 12:49:47.289 +05:30 [Information] Request finished in 9774.3481ms 200 application/json; charset=utf-8 +2017-07-19 12:49:47.291 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" completed keep alive response. +2017-07-19 12:50:05.658 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 12:50:05.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 12:50:05.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 12:50:08.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:50:09.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:09.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:09.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:09.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3763.5018ms +2017-07-19 12:50:09.457 +05:30 [Information] Request finished in 3833.7776ms 200 application/json; charset=utf-8 +2017-07-19 12:50:09.457 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" completed keep alive response. +2017-07-19 12:50:09.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 12:50:09.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 12:50:09.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 12:50:12.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:13.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:13.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:13.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:13.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3210.643ms +2017-07-19 12:50:13.049 +05:30 [Information] Request finished in 3219.2722ms 200 application/json; charset=utf-8 +2017-07-19 12:50:13.050 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" completed keep alive response. +2017-07-19 12:50:13.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:50:13.150 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:50:13.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:50:16.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:16.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:16.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:16.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:16.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3168.9268ms +2017-07-19 12:50:16.334 +05:30 [Information] Request finished in 3184.9841ms 200 application/json; charset=utf-8 +2017-07-19 12:50:16.335 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" completed keep alive response. +2017-07-19 12:50:18.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 12:50:18.570 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 12:50:18.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 12:50:18.572 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 12:50:18.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 12:50:18.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 12:50:19.094 +05:30 [Debug] Connection id ""0HL6EEPUNI55B"" started. +2017-07-19 12:50:19.096 +05:30 [Debug] Connection id ""0HL6EEPUNI55C"" started. +2017-07-19 12:50:19.098 +05:30 [Debug] Connection id ""0HL6EEPUNI55D"" started. +2017-07-19 12:50:19.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 12:50:19.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 12:50:19.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 12:50:19.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 12:50:19.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 12:50:19.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 12:50:19.976 +05:30 [Debug] Connection id ""0HL6EEPUNI55E"" started. +2017-07-19 12:50:20.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 12:50:20.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 12:50:20.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 12:50:20.789 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 12:50:20.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 12:50:20.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 12:50:22.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:22.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:22.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:22.992 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:50:22.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:22.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:23.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4430.575ms +2017-07-19 12:50:23.014 +05:30 [Information] Request finished in 4445.122ms 200 application/json; charset=utf-8 +2017-07-19 12:50:23.014 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" completed keep alive response. +2017-07-19 12:50:23.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:23.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:50:23.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:23.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:23.036 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4459.1585ms +2017-07-19 12:50:23.040 +05:30 [Information] Request finished in 4470.8709ms 200 application/json; charset=utf-8 +2017-07-19 12:50:23.041 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" completed keep alive response. +2017-07-19 12:50:23.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:23.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 12:50:23.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:24.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 12:50:24.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:24.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:24.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:24.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3324.8067ms +2017-07-19 12:50:24.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:24.194 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:50:24.193 +05:30 [Information] Request finished in 3384.2064ms 200 application/json; charset=utf-8 +2017-07-19 12:50:24.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:24.195 +05:30 [Debug] Connection id ""0HL6EEPUNI55E"" completed keep alive response. +2017-07-19 12:50:24.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:24.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5158.9465ms +2017-07-19 12:50:24.276 +05:30 [Information] Request finished in 5172.6427ms 200 application/json; charset=utf-8 +2017-07-19 12:50:24.313 +05:30 [Debug] Connection id ""0HL6EEPUNI55C"" completed keep alive response. +2017-07-19 12:50:24.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:24.422 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:50:24.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:24.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:24.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5385.4042ms +2017-07-19 12:50:24.496 +05:30 [Information] Request finished in 5393.5838ms 200 application/json; charset=utf-8 +2017-07-19 12:50:24.496 +05:30 [Debug] Connection id ""0HL6EEPUNI55B"" completed keep alive response. +2017-07-19 12:50:26.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:26.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:50:26.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:26.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:26.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6004.1594ms +2017-07-19 12:50:26.299 +05:30 [Information] Request finished in 6015.0757ms 200 application/json; charset=utf-8 +2017-07-19 12:50:26.299 +05:30 [Debug] Connection id ""0HL6EEPUNI55D"" completed keep alive response. +2017-07-19 12:50:49.041 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:50:49.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:50:49.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:50:49.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:50:49.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:50:49.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:50:51.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 12:50:51.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:51.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:51.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:51.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2203.3158ms +2017-07-19 12:50:51.302 +05:30 [Information] Request finished in 2258.504ms 200 application/json; charset=utf-8 +2017-07-19 12:50:51.304 +05:30 [Debug] Connection id ""0HL6EEPUNI55A"" completed keep alive response. +2017-07-19 12:50:52.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 12:50:52.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:50:52.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:50:52.335 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:50:52.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2638.9542ms +2017-07-19 12:50:52.524 +05:30 [Information] Request finished in 2660.6283ms 200 application/json; charset=utf-8 +2017-07-19 12:50:52.527 +05:30 [Debug] Connection id ""0HL6EEPUNI559"" completed keep alive response. +2017-07-19 12:50:53.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:50:53.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:50:53.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:54:52.624 +05:30 [Debug] Hosting starting +2017-07-19 12:54:53.071 +05:30 [Debug] Hosting started +2017-07-19 12:54:53.322 +05:30 [Debug] Connection id ""0HL6EESVSU5KE"" started. +2017-07-19 12:54:53.394 +05:30 [Debug] Connection id ""0HL6EESVSU5KF"" started. +2017-07-19 12:54:53.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:54:53.983 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:54:54.069 +05:30 [Information] Request finished in 157.9944ms 200 +2017-07-19 12:54:54.166 +05:30 [Debug] Connection id ""0HL6EESVSU5KE"" completed keep alive response. +2017-07-19 12:54:55.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:54:55.079 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8aea16bb-8f28-4163-9a1b-7f2e09243d1f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:54:55.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:54:55.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:54:55.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:54:55.434 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:54:55.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:54:55.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:54:55.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 473.3502ms +2017-07-19 12:54:55.795 +05:30 [Information] Request finished in 1920.4454ms 200 application/json; charset=utf-8 +2017-07-19 12:54:55.798 +05:30 [Debug] Connection id ""0HL6EESVSU5KF"" completed keep alive response. +2017-07-19 12:55:03.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:55:03.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:55:03.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:55:07.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 12:55:12.631 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:55:12.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:55:12.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:55:12.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9230.4926ms +2017-07-19 12:55:12.988 +05:30 [Information] Request finished in 9298.0636ms 200 application/json; charset=utf-8 +2017-07-19 12:55:12.989 +05:30 [Debug] Connection id ""0HL6EESVSU5KE"" completed keep alive response. +2017-07-19 12:55:22.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 12:55:22.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 12:55:22.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 12:55:22.934 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 12:55:22.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 12:55:22.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 12:55:25.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 12:55:25.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:55:25.087 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:55:25.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:55:25.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2148.4352ms +2017-07-19 12:55:25.095 +05:30 [Information] Request finished in 2162.7541ms 200 application/json; charset=utf-8 +2017-07-19 12:55:25.096 +05:30 [Debug] Connection id ""0HL6EESVSU5KE"" completed keep alive response. +2017-07-19 12:55:26.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 12:55:26.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 12:55:26.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:55:26.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:55:26.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3281.3217ms +2017-07-19 12:55:26.225 +05:30 [Information] Request finished in 3306.5548ms 200 application/json; charset=utf-8 +2017-07-19 12:55:26.226 +05:30 [Debug] Connection id ""0HL6EESVSU5KF"" completed keep alive response. +2017-07-19 12:59:13.215 +05:30 [Debug] Connection id ""0HL6EESVSU5KF"" received FIN. +2017-07-19 12:59:13.216 +05:30 [Debug] Connection id ""0HL6EESVSU5KE"" received FIN. +2017-07-19 12:59:53.751 +05:30 [Debug] Hosting starting +2017-07-19 12:59:54.180 +05:30 [Debug] Hosting started +2017-07-19 12:59:54.277 +05:30 [Debug] Connection id ""0HL6EEVPIUO6H"" started. +2017-07-19 12:59:54.277 +05:30 [Debug] Connection id ""0HL6EEVPIUO6G"" started. +2017-07-19 12:59:54.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 12:59:54.496 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 12:59:54.579 +05:30 [Information] Request finished in 144.2148ms 200 +2017-07-19 12:59:54.645 +05:30 [Debug] Connection id ""0HL6EEVPIUO6G"" completed keep alive response. +2017-07-19 12:59:55.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 12:59:55.632 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3416e688-f64a-4f7e-9e3d-081fa4597c48"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 12:59:56.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 12:59:56.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 12:59:56.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 12:59:56.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 12:59:56.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 12:59:56.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 12:59:57.173 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 965.0729ms +2017-07-19 12:59:57.271 +05:30 [Information] Request finished in 2852.2639ms 200 application/json; charset=utf-8 +2017-07-19 12:59:57.273 +05:30 [Debug] Connection id ""0HL6EEVPIUO6H"" completed keep alive response. +2017-07-19 13:00:04.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:00:04.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:00:04.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:00:07.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:00:12.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:00:12.933 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:00:12.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:00:13.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8612.5895ms +2017-07-19 13:00:13.142 +05:30 [Information] Request finished in 8625.6705ms 200 application/json; charset=utf-8 +2017-07-19 13:00:13.143 +05:30 [Debug] Connection id ""0HL6EEVPIUO6G"" completed keep alive response. +2017-07-19 13:00:23.044 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:00:23.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:00:23.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:00:23.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:00:23.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:00:23.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:00:25.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:00:25.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:00:25.385 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:00:25.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:00:25.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2199.0961ms +2017-07-19 13:00:25.397 +05:30 [Information] Request finished in 2213.1127ms 200 application/json; charset=utf-8 +2017-07-19 13:00:25.398 +05:30 [Debug] Connection id ""0HL6EEVPIUO6G"" completed keep alive response. +2017-07-19 13:00:26.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:00:26.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:00:26.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:00:26.286 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:00:26.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3269.7781ms +2017-07-19 13:00:26.332 +05:30 [Information] Request finished in 3290.715ms 200 application/json; charset=utf-8 +2017-07-19 13:00:26.333 +05:30 [Debug] Connection id ""0HL6EEVPIUO6H"" completed keep alive response. +2017-07-19 13:01:57.167 +05:30 [Debug] Hosting starting +2017-07-19 13:01:57.363 +05:30 [Debug] Hosting started +2017-07-19 13:01:57.430 +05:30 [Debug] Connection id ""0HL6EF0U9IUT1"" started. +2017-07-19 13:01:57.431 +05:30 [Debug] Connection id ""0HL6EF0U9IUT2"" started. +2017-07-19 13:01:57.593 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:01:57.593 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:01:57.664 +05:30 [Information] Request finished in 105.1624ms 200 +2017-07-19 13:01:57.738 +05:30 [Debug] Connection id ""0HL6EF0U9IUT2"" completed keep alive response. +2017-07-19 13:01:58.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:01:58.386 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d0efb998-b947-4647-9948-8d75ed5b18e1"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:01:58.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:01:58.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:01:58.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:01:58.660 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:01:58.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:01:58.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:01:58.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 444.2976ms +2017-07-19 13:02:03.010 +05:30 [Information] Request finished in 5448.1029ms 200 application/json; charset=utf-8 +2017-07-19 13:02:03.016 +05:30 [Debug] Connection id ""0HL6EF0U9IUT1"" completed keep alive response. +2017-07-19 13:02:15.872 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:02:15.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:02:15.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:02:19.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:02:24.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:02:24.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:02:24.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:02:24.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8401.3718ms +2017-07-19 13:02:24.370 +05:30 [Information] Request finished in 8470.9553ms 200 application/json; charset=utf-8 +2017-07-19 13:02:24.372 +05:30 [Debug] Connection id ""0HL6EF0U9IUT2"" completed keep alive response. +2017-07-19 13:02:49.407 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:02:49.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:02:49.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:02:52.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:02:52.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:02:52.730 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:02:52.731 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:02:52.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3317.073ms +2017-07-19 13:02:52.736 +05:30 [Information] Request finished in 3338.5303ms 200 application/json; charset=utf-8 +2017-07-19 13:02:52.737 +05:30 [Debug] Connection id ""0HL6EF0U9IUT1"" completed keep alive response. +2017-07-19 13:05:27.926 +05:30 [Debug] Hosting starting +2017-07-19 13:05:28.134 +05:30 [Debug] Hosting started +2017-07-19 13:05:28.320 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" started. +2017-07-19 13:05:28.320 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" started. +2017-07-19 13:05:28.485 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:05:28.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:05:28.570 +05:30 [Information] Request finished in 120.5761ms 200 +2017-07-19 13:05:28.689 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" completed keep alive response. +2017-07-19 13:05:29.373 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:05:29.431 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"febfa5df-b30c-44a2-8af6-54b395301581"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:05:29.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:05:29.797 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:05:29.801 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:05:29.844 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:05:29.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:29.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:30.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 495.6325ms +2017-07-19 13:05:30.284 +05:30 [Information] Request finished in 1850.055ms 200 application/json; charset=utf-8 +2017-07-19 13:05:30.287 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:05:33.482 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:05:33.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:05:33.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:05:36.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:05:41.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:05:41.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:41.663 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:41.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8371.509ms +2017-07-19 13:05:41.862 +05:30 [Information] Request finished in 8397.6933ms 200 application/json; charset=utf-8 +2017-07-19 13:05:41.864 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" completed keep alive response. +2017-07-19 13:05:42.393 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:05:42.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:05:42.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:05:44.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:05:44.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:05:44.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:05:45.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:05:45.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:05:45.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:45.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:46.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4327.8866ms +2017-07-19 13:05:46.733 +05:30 [Information] Request finished in 4342.7051ms 200 application/json; charset=utf-8 +2017-07-19 13:05:46.733 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:05:48.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:05:48.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:05:48.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:48.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:48.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4085.6348ms +2017-07-19 13:05:48.174 +05:30 [Information] Request finished in 4093.6016ms 200 application/json; charset=utf-8 +2017-07-19 13:05:48.174 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" completed keep alive response. +2017-07-19 13:05:49.354 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:05:49.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:05:49.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:05:49.877 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:05:49.882 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:05:49.883 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:05:52.501 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:05:52.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:05:52.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:52.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:52.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3152.9854ms +2017-07-19 13:05:52.513 +05:30 [Information] Request finished in 3160.4184ms 200 application/json; charset=utf-8 +2017-07-19 13:05:52.514 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:05:53.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:05:53.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:05:53.109 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:05:53.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:05:53.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3230.2827ms +2017-07-19 13:05:53.121 +05:30 [Information] Request finished in 3259.6992ms 200 application/json; charset=utf-8 +2017-07-19 13:05:53.125 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" completed keep alive response. +2017-07-19 13:05:54.225 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:05:54.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:05:54.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:11.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:11.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:11.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:11.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:11.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 76885.2999ms +2017-07-19 13:07:11.129 +05:30 [Information] Request finished in 76907.7365ms 200 application/json; charset=utf-8 +2017-07-19 13:07:11.132 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:11.905 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" received FIN. +2017-07-19 13:07:11.916 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" disconnecting. +2017-07-19 13:07:11.922 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" sending FIN. +2017-07-19 13:07:11.936 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" sent FIN with status "0". +2017-07-19 13:07:11.955 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:11.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:11.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:07:11.959 +05:30 [Debug] Connection id ""0HL6EF2T4O93E"" stopped. +2017-07-19 13:07:12.044 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" started. +2017-07-19 13:07:12.050 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:12.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:12.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:07:14.545 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" started. +2017-07-19 13:07:14.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 13:07:14.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 13:07:14.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 13:07:15.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:15.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:15.630 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:15.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:15.633 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:15.636 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3658.586ms +2017-07-19 13:07:15.641 +05:30 [Information] Request finished in 3737.2897ms 200 application/json; charset=utf-8 +2017-07-19 13:07:15.642 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:15.647 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:07:15.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:07:15.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:15.694 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:15.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:15.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:15.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3646.1346ms +2017-07-19 13:07:15.703 +05:30 [Information] Request finished in 3656.5049ms 200 application/json; charset=utf-8 +2017-07-19 13:07:15.704 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:15.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:07:15.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:07:15.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:17.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:18.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:18.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:18.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:18.063 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3501.3735ms +2017-07-19 13:07:18.067 +05:30 [Information] Request finished in 3519.9698ms 200 application/json; charset=utf-8 +2017-07-19 13:07:18.068 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:19.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:19.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:19.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:19.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:19.626 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:19.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:19.743 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:19.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:19.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4038.4253ms +2017-07-19 13:07:19.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4104.4993ms +2017-07-19 13:07:19.796 +05:30 [Information] Request finished in 4068.5324ms 200 application/json; charset=utf-8 +2017-07-19 13:07:19.824 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:19.817 +05:30 [Information] Request finished in 4132.2971ms 200 application/json; charset=utf-8 +2017-07-19 13:07:19.847 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:20.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:07:20.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:07:20.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:07:21.007 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:21.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:21.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:07:21.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:07:21.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:07:21.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:07:36.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:36.284 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" started. +2017-07-19 13:07:36.286 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:36.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:36.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:07:36.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:36.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:36.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:36.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 15326.8159ms +2017-07-19 13:07:36.307 +05:30 [Information] Request finished in 15344.946ms 200 application/json; charset=utf-8 +2017-07-19 13:07:36.310 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:36.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:36.556 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:36.557 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:36.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:36.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 15549.4634ms +2017-07-19 13:07:36.563 +05:30 [Information] Request finished in 15567.1704ms 200 application/json; charset=utf-8 +2017-07-19 13:07:36.563 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:36.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:07:36.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:07:36.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:38.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:38.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:38.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:38.607 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:38.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 17596.8086ms +2017-07-19 13:07:38.621 +05:30 [Information] Request finished in 17608.0516ms 200 application/json; charset=utf-8 +2017-07-19 13:07:38.621 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:38.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:07:38.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:07:38.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:07:39.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:39.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:39.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:39.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:39.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.5841ms +2017-07-19 13:07:39.373 +05:30 [Information] Request finished in 3087.6845ms 200 application/json; charset=utf-8 +2017-07-19 13:07:39.374 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:07:39.387 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:07:39.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:07:39.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:39.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:39.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:39.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:39.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:39.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.152ms +2017-07-19 13:07:39.611 +05:30 [Information] Request finished in 3045.6627ms 200 application/json; charset=utf-8 +2017-07-19 13:07:39.611 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:39.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:07:39.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:07:39.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:07:39.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:07:39.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:07:39.636 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:07:40.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:40.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:40.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:40.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:40.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1186.8291ms +2017-07-19 13:07:40.580 +05:30 [Information] Request finished in 1202.1574ms 200 application/json; charset=utf-8 +2017-07-19 13:07:40.582 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:40.596 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" started. +2017-07-19 13:07:40.605 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:07:40.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:07:40.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:07:40.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:07:40.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:07:40.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:07:41.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:41.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:41.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:41.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:41.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3196.1354ms +2017-07-19 13:07:41.908 +05:30 [Information] Request finished in 3202.4044ms 200 application/json; charset=utf-8 +2017-07-19 13:07:41.908 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:42.701 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:42.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:42.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:42.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:42.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3077.829ms +2017-07-19 13:07:42.721 +05:30 [Information] Request finished in 3094.7133ms 200 application/json; charset=utf-8 +2017-07-19 13:07:42.721 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:43.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:43.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:43.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:43.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:43.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:43.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:43.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:43.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3139.081ms +2017-07-19 13:07:43.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:43.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3151.0457ms +2017-07-19 13:07:43.781 +05:30 [Information] Request finished in 3181.3414ms 200 application/json; charset=utf-8 +2017-07-19 13:07:43.783 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:43.786 +05:30 [Information] Request finished in 3185.2711ms 200 application/json; charset=utf-8 +2017-07-19 13:07:43.786 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:07:43.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:07:43.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:07:43.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:07:46.705 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 13:07:46.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 13:07:46.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 13:07:46.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:46.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:46.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:46.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:46.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3051.6818ms +2017-07-19 13:07:46.888 +05:30 [Information] Request finished in 3079.2321ms 200 application/json; charset=utf-8 +2017-07-19 13:07:46.889 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:46.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:47.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:47.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:47.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:47.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7497.2442ms +2017-07-19 13:07:47.143 +05:30 [Information] Request finished in 7516.0132ms 200 application/json; charset=utf-8 +2017-07-19 13:07:47.144 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:07:47.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:07:47.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:07:47.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:07:48.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:07:48.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:07:48.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:07:48.745 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:07:48.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:07:48.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:07:49.178 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" started. +2017-07-19 13:07:49.181 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" started. +2017-07-19 13:07:49.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:07:49.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:07:49.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:07:49.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:07:49.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:07:49.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:07:49.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:07:49.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:07:49.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:07:49.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:50.043 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:50.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:50.046 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:50.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3339.1835ms +2017-07-19 13:07:50.053 +05:30 [Information] Request finished in 3369.2224ms 200 application/json; charset=utf-8 +2017-07-19 13:07:50.061 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:51.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:51.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:51.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:51.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:07:51.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:51.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:51.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:51.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:51.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4619.9166ms +2017-07-19 13:07:51.789 +05:30 [Information] Request finished in 4637.8461ms 200 application/json; charset=utf-8 +2017-07-19 13:07:51.790 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:51.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:51.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:07:51.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:51.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:51.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3106.0834ms +2017-07-19 13:07:51.857 +05:30 [Information] Request finished in 3141.9304ms 200 application/json; charset=utf-8 +2017-07-19 13:07:51.858 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:07:51.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:52.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:52.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:07:52.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:52.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:52.030 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3285.9609ms +2017-07-19 13:07:52.033 +05:30 [Information] Request finished in 3317.4392ms 200 application/json; charset=utf-8 +2017-07-19 13:07:52.033 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:07:53.068 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:53.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:53.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:07:53.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:53.193 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:07:53.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:53.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:53.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4005.102ms +2017-07-19 13:07:53.285 +05:30 [Information] Request finished in 4064.2994ms 200 application/json; charset=utf-8 +2017-07-19 13:07:53.288 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" completed keep alive response. +2017-07-19 13:07:53.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:53.491 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:07:53.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:53.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:53.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4344.7464ms +2017-07-19 13:07:53.560 +05:30 [Information] Request finished in 4375.4146ms 200 application/json; charset=utf-8 +2017-07-19 13:07:53.561 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:07:54.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:07:54.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:54.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:54.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:54.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3075.8731ms +2017-07-19 13:07:54.820 +05:30 [Information] Request finished in 3141.5034ms 200 application/json; charset=utf-8 +2017-07-19 13:07:54.821 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:07:54.823 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:07:54.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:07:54.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:07:55.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:55.475 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:07:55.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:55.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:55.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6299.9596ms +2017-07-19 13:07:55.502 +05:30 [Information] Request finished in 6319.5852ms 200 application/json; charset=utf-8 +2017-07-19 13:07:55.504 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" completed keep alive response. +2017-07-19 13:07:56.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:07:56.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:07:56.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:07:56.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:07:56.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2119.9918ms +2017-07-19 13:07:56.949 +05:30 [Information] Request finished in 2126.3194ms 200 application/json; charset=utf-8 +2017-07-19 13:07:56.949 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:07:56.961 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:07:56.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:07:56.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:07:57.274 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:07:57.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:07:57.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:08:00.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:08:00.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:00.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:00.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:00.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:00.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3288.1598ms +2017-07-19 13:08:00.572 +05:30 [Information] Request finished in 3306.5015ms 200 application/json; charset=utf-8 +2017-07-19 13:08:00.572 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:08:01.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:01.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:01.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:08:01.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:08:01.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:08:01.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:01.216 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4237.8936ms +2017-07-19 13:08:01.231 +05:30 [Information] Request finished in 4268.4446ms 200 application/json; charset=utf-8 +2017-07-19 13:08:01.232 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:08:01.804 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:08:01.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:08:01.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:08:04.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:08:04.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:04.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:04.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:04.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3120.5986ms +2017-07-19 13:08:04.301 +05:30 [Information] Request finished in 3159.8646ms 200 application/json; charset=utf-8 +2017-07-19 13:08:04.302 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" completed keep alive response. +2017-07-19 13:08:11.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:11.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:11.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:11.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:11.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9944.0139ms +2017-07-19 13:08:11.761 +05:30 [Information] Request finished in 9956.3401ms 200 application/json; charset=utf-8 +2017-07-19 13:08:11.762 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:08:11.809 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:08:11.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:08:11.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:08:17.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:08:17.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:17.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:17.281 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 13:08:17.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:17.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 13:08:17.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 13:08:17.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5475.9438ms +2017-07-19 13:08:17.322 +05:30 [Information] Request finished in 5507.8187ms 200 application/json; charset=utf-8 +2017-07-19 13:08:17.323 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:08:17.415 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:08:17.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:08:17.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:08:19.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["51", "8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:19.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 13:08:19.569 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 13:08:19.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:19.572 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 2276.6795ms +2017-07-19 13:08:19.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:19.576 +05:30 [Information] Request finished in 2298.9403ms 200 +2017-07-19 13:08:19.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:19.577 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" completed keep alive response. +2017-07-19 13:08:19.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:19.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2164.1257ms +2017-07-19 13:08:19.600 +05:30 [Information] Request finished in 2180.1499ms 200 application/json; charset=utf-8 +2017-07-19 13:08:19.601 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" completed keep alive response. +2017-07-19 13:08:26.747 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:08:26.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:08:26.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:08:29.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:29.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:29.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:29.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:29.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3064.9211ms +2017-07-19 13:08:29.821 +05:30 [Information] Request finished in 3073.884ms 200 application/json; charset=utf-8 +2017-07-19 13:08:29.822 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:08:51.960 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:08:51.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:08:51.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:08:55.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce769f4a0a1a"]) - ModelState is Valid +2017-07-19 13:08:55.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:08:55.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:08:55.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:08:55.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3094.2157ms +2017-07-19 13:08:55.064 +05:30 [Information] Request finished in 3124.2244ms 200 application/json; charset=utf-8 +2017-07-19 13:08:55.065 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:09:09.398 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" received FIN. +2017-07-19 13:09:09.404 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" disconnecting. +2017-07-19 13:09:09.405 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" sending FIN. +2017-07-19 13:09:09.407 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" sent FIN with status "0". +2017-07-19 13:09:09.407 +05:30 [Debug] Connection id ""0HL6EF2T4O93K"" stopped. +2017-07-19 13:09:09.408 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 13:09:09.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 13:09:09.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 13:09:12.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:09:12.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:12.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:12.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:12.610 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3199.4963ms +2017-07-19 13:09:12.612 +05:30 [Information] Request finished in 3210.3152ms 200 application/json; charset=utf-8 +2017-07-19 13:09:12.613 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:09:12.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:09:12.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:09:12.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:09:15.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:15.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:15.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:15.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:15.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3110.6538ms +2017-07-19 13:09:15.797 +05:30 [Information] Request finished in 3118.1981ms 200 application/json; charset=utf-8 +2017-07-19 13:09:15.797 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:09:15.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:09:15.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:09:15.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:09:18.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:18.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:18.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:18.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:18.947 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3134.7275ms +2017-07-19 13:09:18.955 +05:30 [Information] Request finished in 3150.3236ms 200 application/json; charset=utf-8 +2017-07-19 13:09:18.956 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" completed keep alive response. +2017-07-19 13:09:20.316 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" received FIN. +2017-07-19 13:09:20.317 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" disconnecting. +2017-07-19 13:09:20.318 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" sending FIN. +2017-07-19 13:09:20.319 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" sent FIN with status "0". +2017-07-19 13:09:20.319 +05:30 [Debug] Connection id ""0HL6EF2T4O93D"" stopped. +2017-07-19 13:09:20.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:09:20.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:09:20.321 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:09:20.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:09:20.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:09:20.323 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:09:20.877 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:09:20.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:09:20.879 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:09:20.886 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:09:20.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:09:20.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:09:20.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:09:20.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:09:20.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:09:21.620 +05:30 [Debug] Connection id ""0HL6EF2T4O93L"" started. +2017-07-19 13:09:21.622 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:09:21.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:09:21.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:09:23.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:23.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:23.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:23.509 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:09:23.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:23.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:23.513 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:09:23.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:23.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:23.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:23.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3191.7388ms +2017-07-19 13:09:23.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3195.4395ms +2017-07-19 13:09:23.522 +05:30 [Information] Request finished in 3202.6388ms 200 application/json; charset=utf-8 +2017-07-19 13:09:23.523 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:09:23.526 +05:30 [Information] Request finished in 3205.4863ms 200 application/json; charset=utf-8 +2017-07-19 13:09:23.530 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:09:23.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:09:23.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:23.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:23.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:23.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2208.5814ms +2017-07-19 13:09:23.838 +05:30 [Information] Request finished in 2215.9708ms 200 application/json; charset=utf-8 +2017-07-19 13:09:23.839 +05:30 [Debug] Connection id ""0HL6EF2T4O93L"" completed keep alive response. +2017-07-19 13:09:24.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:24.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:24.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:24.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:24.240 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:09:24.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:24.256 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:24.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3368.843ms +2017-07-19 13:09:24.333 +05:30 [Information] Request finished in 3449.2259ms 200 application/json; charset=utf-8 +2017-07-19 13:09:24.334 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:09:24.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:24.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:09:24.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:24.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:24.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3511.6438ms +2017-07-19 13:09:24.396 +05:30 [Information] Request finished in 3566.8188ms 200 application/json; charset=utf-8 +2017-07-19 13:09:24.397 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:09:25.089 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:25.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:09:25.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:25.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:25.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4194.8879ms +2017-07-19 13:09:25.101 +05:30 [Information] Request finished in 4207.7882ms 200 application/json; charset=utf-8 +2017-07-19 13:09:25.102 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" completed keep alive response. +2017-07-19 13:09:40.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:09:40.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:09:40.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:09:44.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:09:44.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:44.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:44.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:44.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3102.8823ms +2017-07-19 13:09:44.029 +05:30 [Information] Request finished in 3112.4802ms 200 application/json; charset=utf-8 +2017-07-19 13:09:44.030 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:09:44.034 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:09:44.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:09:44.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:09:46.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:09:46.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:46.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:46.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:46.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2103.2058ms +2017-07-19 13:09:46.148 +05:30 [Information] Request finished in 2115.3145ms 200 application/json; charset=utf-8 +2017-07-19 13:09:46.149 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:09:46.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:09:46.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:09:46.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:09:48.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:09:48.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:48.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:48.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:48.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2125.6195ms +2017-07-19 13:09:48.366 +05:30 [Information] Request finished in 2131.044ms 200 application/json; charset=utf-8 +2017-07-19 13:09:48.366 +05:30 [Debug] Connection id ""0HL6EF2T4O93L"" completed keep alive response. +2017-07-19 13:09:48.368 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:09:48.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:09:48.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:09:51.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:09:51.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:51.408 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:51.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:51.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3040.1012ms +2017-07-19 13:09:51.414 +05:30 [Information] Request finished in 3045.7581ms 200 application/json; charset=utf-8 +2017-07-19 13:09:51.414 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:09:51.431 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:09:51.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:09:51.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:09:51.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:09:51.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:09:51.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:09:55.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:55.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:09:56.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:56.571 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:56.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:56.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:56.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 5198.127ms +2017-07-19 13:09:56.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:56.652 +05:30 [Information] Request finished in 5224.8662ms 200 application/json; charset=utf-8 +2017-07-19 13:09:56.653 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:09:56.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:56.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 5225.0062ms +2017-07-19 13:09:56.685 +05:30 [Information] Request finished in 5254.7216ms 200 application/json; charset=utf-8 +2017-07-19 13:09:56.688 +05:30 [Debug] Connection id ""0HL6EF2T4O93J"" completed keep alive response. +2017-07-19 13:09:56.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:09:56.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:09:56.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:09:56.973 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:09:56.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:09:56.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:09:59.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:09:59.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:09:59.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:09:59.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:09:59.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3263.1853ms +2017-07-19 13:09:59.975 +05:30 [Information] Request finished in 3270.8382ms 200 application/json; charset=utf-8 +2017-07-19 13:09:59.975 +05:30 [Debug] Connection id ""0HL6EF2T4O93F"" completed keep alive response. +2017-07-19 13:10:00.038 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:10:00.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:10:00.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:10:00.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:10:00.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3068.5545ms +2017-07-19 13:10:00.049 +05:30 [Information] Request finished in 3076.3081ms 200 application/json; charset=utf-8 +2017-07-19 13:10:00.049 +05:30 [Debug] Connection id ""0HL6EF2T4O93I"" completed keep alive response. +2017-07-19 13:10:00.052 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:10:00.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:10:00.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:10:05.956 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:10:05.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:10:05.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:10:05.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:10:05.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5908.9905ms +2017-07-19 13:10:06.785 +05:30 [Information] Request finished in 6731.2703ms 200 application/json; charset=utf-8 +2017-07-19 13:10:06.786 +05:30 [Debug] Connection id ""0HL6EF2T4O93L"" completed keep alive response. +2017-07-19 13:10:07.303 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:10:07.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:10:07.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:10:07.384 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:10:07.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:10:07.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:10:10.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:10:10.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:10:10.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:10:10.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:10:10.406 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3097.2046ms +2017-07-19 13:10:10.412 +05:30 [Information] Request finished in 3109.8546ms 200 application/json; charset=utf-8 +2017-07-19 13:10:10.413 +05:30 [Debug] Connection id ""0HL6EF2T4O93G"" completed keep alive response. +2017-07-19 13:10:12.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:10:12.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:10:12.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:10:12.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:10:12.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5048.8615ms +2017-07-19 13:10:12.451 +05:30 [Information] Request finished in 5066.8598ms 200 application/json; charset=utf-8 +2017-07-19 13:10:12.452 +05:30 [Debug] Connection id ""0HL6EF2T4O93H"" completed keep alive response. +2017-07-19 13:10:13.165 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:10:13.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:10:13.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:11:29.781 +05:30 [Debug] Hosting starting +2017-07-19 13:11:30.065 +05:30 [Debug] Hosting started +2017-07-19 13:11:30.093 +05:30 [Debug] Connection id ""0HL6EF68URK85"" started. +2017-07-19 13:11:30.103 +05:30 [Debug] Connection id ""0HL6EF68URK86"" started. +2017-07-19 13:11:30.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:11:30.401 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:11:30.510 +05:30 [Information] Request finished in 136.689ms 200 +2017-07-19 13:11:30.607 +05:30 [Debug] Connection id ""0HL6EF68URK86"" completed keep alive response. +2017-07-19 13:11:31.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:11:31.811 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"01bac814-018a-4b01-ab12-a93bfebcc766"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:11:32.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:11:32.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:11:32.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:11:32.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:11:32.398 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:11:32.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:11:32.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 720.5478ms +2017-07-19 13:11:33.108 +05:30 [Information] Request finished in 2710.6092ms 200 application/json; charset=utf-8 +2017-07-19 13:11:33.111 +05:30 [Debug] Connection id ""0HL6EF68URK85"" completed keep alive response. +2017-07-19 13:11:39.465 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:11:39.466 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:11:39.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:11:43.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:11:48.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:11:48.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:11:48.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:11:48.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9138.7211ms +2017-07-19 13:11:48.627 +05:30 [Information] Request finished in 9161.3656ms 200 application/json; charset=utf-8 +2017-07-19 13:11:48.628 +05:30 [Debug] Connection id ""0HL6EF68URK86"" completed keep alive response. +2017-07-19 13:11:59.493 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:11:59.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:11:59.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:12:00.592 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:12:00.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:12:00.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:12:01.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:12:01.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:12:01.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:12:01.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:12:01.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 1700.4733ms +2017-07-19 13:12:01.230 +05:30 [Information] Request finished in 1744.886ms 200 application/json; charset=utf-8 +2017-07-19 13:12:01.231 +05:30 [Debug] Connection id ""0HL6EF68URK85"" completed keep alive response. +2017-07-19 13:13:01.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:13:01.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:13:01.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:13:01.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:13:03.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 60426.8412ms +2017-07-19 13:13:03.319 +05:30 [Information] Request finished in 62744.8516ms 200 application/json; charset=utf-8 +2017-07-19 13:13:03.321 +05:30 [Debug] Connection id ""0HL6EF68URK86"" completed keep alive response. +2017-07-19 13:13:06.675 +05:30 [Debug] Connection id ""0HL6EF68URK85"" received FIN. +2017-07-19 13:13:06.678 +05:30 [Debug] Connection id ""0HL6EF68URK85"" disconnecting. +2017-07-19 13:13:06.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:13:06.687 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:13:06.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:13:06.686 +05:30 [Debug] Connection id ""0HL6EF68URK85"" sending FIN. +2017-07-19 13:13:06.710 +05:30 [Debug] Connection id ""0HL6EF68URK85"" sent FIN with status "0". +2017-07-19 13:13:06.716 +05:30 [Debug] Connection id ""0HL6EF68URK85"" stopped. +2017-07-19 13:13:09.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:13:09.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:13:09.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:13:09.759 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:13:09.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3069.0756ms +2017-07-19 13:13:09.764 +05:30 [Information] Request finished in 3087.6557ms 200 application/json; charset=utf-8 +2017-07-19 13:13:09.765 +05:30 [Debug] Connection id ""0HL6EF68URK86"" completed keep alive response. +2017-07-19 13:14:20.786 +05:30 [Debug] Hosting starting +2017-07-19 13:14:21.095 +05:30 [Debug] Hosting started +2017-07-19 13:14:21.299 +05:30 [Debug] Connection id ""0HL6EF7RVLTUE"" started. +2017-07-19 13:14:21.299 +05:30 [Debug] Connection id ""0HL6EF7RVLTUF"" started. +2017-07-19 13:14:21.320 +05:30 [Debug] Connection id ""0HL6EF7RVLTUG"" started. +2017-07-19 13:14:21.485 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:14:21.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:14:21.488 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:14:21.576 +05:30 [Information] Request finished in 137.5558ms 200 +2017-07-19 13:14:21.640 +05:30 [Debug] Connection id ""0HL6EF7RVLTUG"" completed keep alive response. +2017-07-19 13:14:22.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:14:22.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:14:22.496 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f8492fde-12b7-4dfe-b585-a331756ad127"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:14:22.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:14:22.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:14:22.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:14:22.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:14:22.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:14:22.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:14:22.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:14:23.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 467.2739ms +2017-07-19 13:14:23.354 +05:30 [Information] Request finished in 1947.0077ms 200 application/json; charset=utf-8 +2017-07-19 13:14:23.356 +05:30 [Debug] Connection id ""0HL6EF7RVLTUE"" completed keep alive response. +2017-07-19 13:14:26.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:14:32.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:14:32.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:14:32.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:14:32.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9570.5419ms +2017-07-19 13:14:32.213 +05:30 [Information] Request finished in 10805.014ms 200 application/json; charset=utf-8 +2017-07-19 13:14:32.217 +05:30 [Debug] Connection id ""0HL6EF7RVLTUF"" completed keep alive response. +2017-07-19 13:15:00.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:15:00.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:15:00.455 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:15:03.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:15:03.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:15:03.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:15:03.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:15:03.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3155.8269ms +2017-07-19 13:15:03.632 +05:30 [Information] Request finished in 3197.6649ms 200 application/json; charset=utf-8 +2017-07-19 13:15:03.635 +05:30 [Debug] Connection id ""0HL6EF7RVLTUG"" completed keep alive response. +2017-07-19 13:15:23.395 +05:30 [Debug] Hosting starting +2017-07-19 13:15:23.746 +05:30 [Debug] Hosting started +2017-07-19 13:15:23.791 +05:30 [Debug] Connection id ""0HL6EF8EJJK5C"" started. +2017-07-19 13:15:23.791 +05:30 [Debug] Connection id ""0HL6EF8EJJK5B"" started. +2017-07-19 13:15:24.038 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:15:24.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:15:24.226 +05:30 [Information] Request finished in 222.8814ms 200 +2017-07-19 13:15:24.436 +05:30 [Debug] Connection id ""0HL6EF8EJJK5B"" completed keep alive response. +2017-07-19 13:15:25.454 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:15:25.537 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f7c7abf6-24de-4fba-969b-f26b512685df"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:15:25.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:15:25.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:15:25.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:15:25.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:15:25.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:15:25.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:15:30.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 4795.2168ms +2017-07-19 13:15:31.317 +05:30 [Information] Request finished in 7400.4282ms 200 application/json; charset=utf-8 +2017-07-19 13:15:31.326 +05:30 [Debug] Connection id ""0HL6EF8EJJK5C"" completed keep alive response. +2017-07-19 13:15:31.447 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:15:31.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:15:31.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:15:34.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:15:39.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:15:39.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:15:39.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:15:39.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8381.7754ms +2017-07-19 13:15:39.913 +05:30 [Information] Request finished in 8461.3114ms 200 application/json; charset=utf-8 +2017-07-19 13:15:39.914 +05:30 [Debug] Connection id ""0HL6EF8EJJK5B"" completed keep alive response. +2017-07-19 13:16:09.795 +05:30 [Debug] Hosting starting +2017-07-19 13:16:09.992 +05:30 [Debug] Hosting started +2017-07-19 13:16:10.103 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" started. +2017-07-19 13:16:10.104 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" started. +2017-07-19 13:16:10.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:16:10.300 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:16:10.378 +05:30 [Information] Request finished in 123.2501ms 200 +2017-07-19 13:16:10.434 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:16:11.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:16:11.105 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8cbde848-0106-4b14-9a84-2ab5677c87b5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:16:11.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:16:11.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:16:11.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:16:11.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:16:11.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:16:11.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:16:11.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 447.988ms +2017-07-19 13:16:11.737 +05:30 [Information] Request finished in 1496.3407ms 200 application/json; charset=utf-8 +2017-07-19 13:16:11.740 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:16:16.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:16:16.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:16:16.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:16:19.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:16:24.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:16:24.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:16:24.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:16:24.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8110.7319ms +2017-07-19 13:16:24.379 +05:30 [Information] Request finished in 8141.2438ms 200 application/json; charset=utf-8 +2017-07-19 13:16:24.382 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:16:44.592 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 13:16:44.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 13:16:44.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 13:16:47.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:16:48.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:16:48.017 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:16:48.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:16:48.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3454.9758ms +2017-07-19 13:16:48.062 +05:30 [Information] Request finished in 3466.2876ms 200 application/json; charset=utf-8 +2017-07-19 13:16:48.063 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:16:48.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:16:48.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:16:48.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:16:51.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:16:51.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:16:51.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:16:51.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:16:51.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3240.6265ms +2017-07-19 13:16:51.553 +05:30 [Information] Request finished in 3248.6681ms 200 application/json; charset=utf-8 +2017-07-19 13:16:51.553 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:16:51.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:16:51.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:16:51.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:16:54.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:16:54.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:16:54.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:16:54.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:16:54.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3144.2267ms +2017-07-19 13:16:54.786 +05:30 [Information] Request finished in 3149.1387ms 200 application/json; charset=utf-8 +2017-07-19 13:16:54.787 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:16:57.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:16:57.637 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:16:57.637 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:16:57.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:16:57.639 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:16:57.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:16:58.013 +05:30 [Debug] Connection id ""0HL6EF8SDAB68"" started. +2017-07-19 13:16:58.013 +05:30 [Debug] Connection id ""0HL6EF8SDAB69"" started. +2017-07-19 13:16:58.016 +05:30 [Debug] Connection id ""0HL6EF8SDAB6A"" started. +2017-07-19 13:16:58.017 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:16:58.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:16:58.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:16:58.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:16:58.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:16:58.020 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:16:58.821 +05:30 [Debug] Connection id ""0HL6EF8SDAB6B"" started. +2017-07-19 13:16:59.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:16:59.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:16:59.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:17:00.293 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:17:00.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:17:00.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:17:02.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:02.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:02.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:02.461 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:17:02.461 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:02.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:02.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4822.4886ms +2017-07-19 13:17:02.478 +05:30 [Information] Request finished in 4842.7849ms 200 application/json; charset=utf-8 +2017-07-19 13:17:02.479 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:17:02.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:02.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:17:02.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:02.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:02.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4849.0642ms +2017-07-19 13:17:02.494 +05:30 [Information] Request finished in 4858.4055ms 200 application/json; charset=utf-8 +2017-07-19 13:17:02.494 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:17:02.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:02.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:02.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:03.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:03.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:17:03.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:03.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:03.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5099.8435ms +2017-07-19 13:17:03.148 +05:30 [Information] Request finished in 5129.2838ms 200 application/json; charset=utf-8 +2017-07-19 13:17:03.150 +05:30 [Debug] Connection id ""0HL6EF8SDAB68"" completed keep alive response. +2017-07-19 13:17:03.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:17:03.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:03.493 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:17:03.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:03.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:03.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:03.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:03.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:03.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3272.4303ms +2017-07-19 13:17:03.589 +05:30 [Information] Request finished in 3294.9738ms 200 application/json; charset=utf-8 +2017-07-19 13:17:03.592 +05:30 [Debug] Connection id ""0HL6EF8SDAB6B"" completed keep alive response. +2017-07-19 13:17:03.632 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4323.8847ms +2017-07-19 13:17:03.638 +05:30 [Information] Request finished in 4354.6933ms 200 application/json; charset=utf-8 +2017-07-19 13:17:03.639 +05:30 [Debug] Connection id ""0HL6EF8SDAB69"" completed keep alive response. +2017-07-19 13:17:05.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:05.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:17:05.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:05.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:05.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7466.1625ms +2017-07-19 13:17:05.494 +05:30 [Information] Request finished in 7475.6462ms 200 application/json; charset=utf-8 +2017-07-19 13:17:05.495 +05:30 [Debug] Connection id ""0HL6EF8SDAB6A"" completed keep alive response. +2017-07-19 13:17:11.916 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:17:11.917 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:17:11.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:17:15.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:17:15.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:15.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:15.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:15.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3093.2616ms +2017-07-19 13:17:15.017 +05:30 [Information] Request finished in 3102.9783ms 200 application/json; charset=utf-8 +2017-07-19 13:17:15.018 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:17:15.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:17:15.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:17:15.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:17:18.072 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:17:18.073 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:17:18.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:17:18.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:17:18.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:18.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:18.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:18.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3102.7562ms +2017-07-19 13:17:18.141 +05:30 [Information] Request finished in 3120.4327ms 200 application/json; charset=utf-8 +2017-07-19 13:17:18.143 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:17:18.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:17:18.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:17:18.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:17:18.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:17:18.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:17:18.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:17:20.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:17:20.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:20.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:20.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:20.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2109.7092ms +2017-07-19 13:17:20.292 +05:30 [Information] Request finished in 2134.5503ms 200 application/json; charset=utf-8 +2017-07-19 13:17:20.293 +05:30 [Debug] Connection id ""0HL6EF8SDAB6B"" completed keep alive response. +2017-07-19 13:17:21.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:17:21.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:21.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:21.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:21.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.147ms +2017-07-19 13:17:21.120 +05:30 [Information] Request finished in 3048.9019ms 200 application/json; charset=utf-8 +2017-07-19 13:17:21.120 +05:30 [Debug] Connection id ""0HL6EF8SDAB68"" completed keep alive response. +2017-07-19 13:17:21.123 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:17:21.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:17:21.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:17:21.219 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:21.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:21.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:21.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:21.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3114.6908ms +2017-07-19 13:17:21.293 +05:30 [Information] Request finished in 3121.3177ms 200 application/json; charset=utf-8 +2017-07-19 13:17:21.294 +05:30 [Debug] Connection id ""0HL6EF8SDAB69"" completed keep alive response. +2017-07-19 13:17:21.321 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:17:21.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:17:21.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:17:24.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:17:24.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:24.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:24.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:24.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3032.6294ms +2017-07-19 13:17:24.164 +05:30 [Information] Request finished in 3040.6683ms 200 application/json; charset=utf-8 +2017-07-19 13:17:24.165 +05:30 [Debug] Connection id ""0HL6EF8SDAB6A"" completed keep alive response. +2017-07-19 13:17:24.188 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:17:24.189 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:17:24.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:17:24.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:17:24.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:17:24.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:17:24.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:24.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:24.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:24.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:24.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3096.1961ms +2017-07-19 13:17:24.429 +05:30 [Information] Request finished in 3120.3874ms 200 application/json; charset=utf-8 +2017-07-19 13:17:24.429 +05:30 [Debug] Connection id ""0HL6EF8SDAB66"" completed keep alive response. +2017-07-19 13:17:27.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:27.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:17:27.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:27.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:27.411 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:27.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:27.414 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:27.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3217.2735ms +2017-07-19 13:17:27.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:27.420 +05:30 [Information] Request finished in 3242.6414ms 200 application/json; charset=utf-8 +2017-07-19 13:17:27.421 +05:30 [Debug] Connection id ""0HL6EF8SDAB6B"" completed keep alive response. +2017-07-19 13:17:27.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3225.0274ms +2017-07-19 13:17:27.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:17:27.429 +05:30 [Information] Request finished in 3252.1873ms 200 application/json; charset=utf-8 +2017-07-19 13:17:27.430 +05:30 [Debug] Connection id ""0HL6EF8SDAB67"" completed keep alive response. +2017-07-19 13:17:27.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:17:27.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:17:37.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:17:37.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:37.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:37.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:37.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 10155.2694ms +2017-07-19 13:17:37.597 +05:30 [Information] Request finished in 10169.4188ms 200 application/json; charset=utf-8 +2017-07-19 13:17:37.597 +05:30 [Debug] Connection id ""0HL6EF8SDAB68"" completed keep alive response. +2017-07-19 13:17:39.409 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:17:39.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:17:39.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:17:39.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:17:39.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:17:39.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:17:41.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:17:41.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:17:41.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:17:41.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:17:41.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2103.5147ms +2017-07-19 13:17:41.522 +05:30 [Information] Request finished in 2153.6303ms 200 application/json; charset=utf-8 +2017-07-19 13:17:41.523 +05:30 [Debug] Connection id ""0HL6EF8SDAB69"" completed keep alive response. +2017-07-19 13:24:30.069 +05:30 [Debug] Hosting starting +2017-07-19 13:24:30.381 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" started. +2017-07-19 13:24:30.391 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" started. +2017-07-19 13:24:30.405 +05:30 [Debug] Hosting started +2017-07-19 13:24:30.674 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:24:30.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:24:30.770 +05:30 [Information] Request finished in 130.8464ms 200 +2017-07-19 13:24:30.854 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:24:31.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:24:31.709 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"07fccfed-28af-40d6-84ba-aacd7ff27723"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:24:31.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:24:32.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:24:32.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:24:32.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:24:32.096 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:24:32.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:24:32.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 772.1555ms +2017-07-19 13:24:32.744 +05:30 [Information] Request finished in 2124.5992ms 200 application/json; charset=utf-8 +2017-07-19 13:24:32.747 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:24:39.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:24:39.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:24:39.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:24:42.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:24:46.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:24:46.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:24:46.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:24:46.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7423.0151ms +2017-07-19 13:24:46.676 +05:30 [Information] Request finished in 7455.5336ms 200 application/json; charset=utf-8 +2017-07-19 13:24:46.677 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:24:56.997 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:24:56.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:24:57.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:25:00.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:25:00.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:00.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:00.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:00.231 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3230.2099ms +2017-07-19 13:25:00.234 +05:30 [Information] Request finished in 3237.2844ms 200 application/json; charset=utf-8 +2017-07-19 13:25:00.234 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:25:28.386 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:25:28.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:25:28.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:25:30.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:25:30.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:30.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:30.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:30.513 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2121.6494ms +2017-07-19 13:25:30.519 +05:30 [Information] Request finished in 2134.0604ms 200 application/json; charset=utf-8 +2017-07-19 13:25:30.520 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:25:30.523 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:25:30.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:25:30.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:25:33.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:25:33.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:33.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:33.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:33.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3061.8346ms +2017-07-19 13:25:33.612 +05:30 [Information] Request finished in 3076.4399ms 200 application/json; charset=utf-8 +2017-07-19 13:25:33.613 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:25:33.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:25:33.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:25:33.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:25:36.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:25:36.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:36.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:36.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:36.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3036.0956ms +2017-07-19 13:25:36.750 +05:30 [Information] Request finished in 3042.9417ms 200 application/json; charset=utf-8 +2017-07-19 13:25:36.750 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:25:36.754 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:25:36.755 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:25:36.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:25:39.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:25:39.790 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:39.791 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:39.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:39.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3037.2265ms +2017-07-19 13:25:39.801 +05:30 [Information] Request finished in 3047.7974ms 200 application/json; charset=utf-8 +2017-07-19 13:25:39.802 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:25:39.837 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:25:39.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:25:39.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:25:39.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:25:39.847 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:25:39.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:25:42.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:25:42.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:42.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:42.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:42.928 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:42.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3089.1028ms +2017-07-19 13:25:42.937 +05:30 [Information] Request finished in 3100.4334ms 200 application/json; charset=utf-8 +2017-07-19 13:25:42.971 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:25:43.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:43.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:43.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:43.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3258.2355ms +2017-07-19 13:25:43.110 +05:30 [Information] Request finished in 3264.6158ms 200 application/json; charset=utf-8 +2017-07-19 13:25:43.111 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:25:43.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:25:43.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:25:43.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:25:46.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:46.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:46.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:46.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:46.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3149.0404ms +2017-07-19 13:25:46.354 +05:30 [Information] Request finished in 3169.7346ms 200 application/json; charset=utf-8 +2017-07-19 13:25:46.354 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:25:49.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:25:49.144 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:25:49.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:25:49.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:25:49.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:25:49.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:25:49.750 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" started. +2017-07-19 13:25:49.753 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" started. +2017-07-19 13:25:49.754 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" started. +2017-07-19 13:25:49.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:25:49.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:25:49.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:25:49.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:25:49.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:25:49.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:25:49.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:25:49.782 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:25:49.783 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:25:50.730 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" started. +2017-07-19 13:25:50.798 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:25:50.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:25:50.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:25:52.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:52.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:53.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:53.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:25:53.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:53.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:53.030 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3881.2178ms +2017-07-19 13:25:53.036 +05:30 [Information] Request finished in 3891.5209ms 200 application/json; charset=utf-8 +2017-07-19 13:25:53.038 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:25:53.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:53.083 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:25:53.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:53.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:53.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3937.921ms +2017-07-19 13:25:53.090 +05:30 [Information] Request finished in 3946.573ms 200 application/json; charset=utf-8 +2017-07-19 13:25:53.091 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:25:53.529 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:25:53.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:25:53.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:25:54.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:25:54.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:54.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:54.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:54.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:54.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:54.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:54.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3320.9223ms +2017-07-19 13:25:54.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:25:54.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:54.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:25:54.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:54.230 +05:30 [Information] Request finished in 3385.7892ms 200 application/json; charset=utf-8 +2017-07-19 13:25:54.230 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:25:54.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4432.7997ms +2017-07-19 13:25:54.293 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:25:54.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:25:54.298 +05:30 [Information] Request finished in 4537.7288ms 200 application/json; charset=utf-8 +2017-07-19 13:25:54.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:25:54.318 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:25:54.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:54.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:25:54.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:54.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:54.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4897.4539ms +2017-07-19 13:25:54.667 +05:30 [Information] Request finished in 4912.7283ms 200 application/json; charset=utf-8 +2017-07-19 13:25:54.667 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:25:57.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:57.958 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:25:57.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:57.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:58.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:25:58.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8233.6222ms +2017-07-19 13:25:58.151 +05:30 [Information] Request finished in 8392.1602ms 200 application/json; charset=utf-8 +2017-07-19 13:25:58.151 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:25:58.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:25:58.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:25:58.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:25:58.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4630.3912ms +2017-07-19 13:25:58.174 +05:30 [Information] Request finished in 4639.7014ms 200 application/json; charset=utf-8 +2017-07-19 13:25:58.176 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:26:01.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:26:01.146 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:26:01.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:26:01.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:26:01.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:01.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:01.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:01.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6787.8701ms +2017-07-19 13:26:01.172 +05:30 [Information] Request finished in 6906.0523ms 200 application/json; charset=utf-8 +2017-07-19 13:26:01.172 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:26:06.990 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:26:06.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:26:06.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:26:07.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:26:07.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:07.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:07.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:07.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6160.0933ms +2017-07-19 13:26:07.315 +05:30 [Information] Request finished in 6169.6681ms 200 application/json; charset=utf-8 +2017-07-19 13:26:07.316 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:26:10.307 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:26:10.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:26:10.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:26:12.343 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:26:12.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:12.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:12.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:12.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5958.5169ms +2017-07-19 13:26:12.959 +05:30 [Information] Request finished in 5970.7322ms 200 application/json; charset=utf-8 +2017-07-19 13:26:12.961 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:26:14.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:26:14.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:14.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:14.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:14.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4375.7791ms +2017-07-19 13:26:14.690 +05:30 [Information] Request finished in 4385.2343ms 200 application/json; charset=utf-8 +2017-07-19 13:26:14.691 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:26:14.696 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:26:14.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:26:14.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:26:17.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:26:17.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:17.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:17.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:17.778 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3079.5058ms +2017-07-19 13:26:17.781 +05:30 [Information] Request finished in 3087.4948ms 200 application/json; charset=utf-8 +2017-07-19 13:26:17.782 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:26:19.858 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:26:19.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:26:19.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:26:22.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:26:22.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:22.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:22.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:22.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.4196ms +2017-07-19 13:26:22.919 +05:30 [Information] Request finished in 3062.363ms 200 application/json; charset=utf-8 +2017-07-19 13:26:22.919 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:26:22.924 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:26:22.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:26:22.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:26:25.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:26:25.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:25.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:25.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:25.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2120.9896ms +2017-07-19 13:26:25.065 +05:30 [Information] Request finished in 2141.7646ms 200 application/json; charset=utf-8 +2017-07-19 13:26:25.068 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:26:25.087 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:26:25.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:26:25.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:26:25.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:26:25.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:26:25.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:26:27.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:26:27.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:27.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:27.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:27.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2107.1935ms +2017-07-19 13:26:27.207 +05:30 [Information] Request finished in 2125.9638ms 200 application/json; charset=utf-8 +2017-07-19 13:26:27.207 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:26:28.168 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:28.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:28.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:28.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:28.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3140.6006ms +2017-07-19 13:26:28.241 +05:30 [Information] Request finished in 3158.6184ms 200 application/json; charset=utf-8 +2017-07-19 13:26:28.242 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:26:28.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:26:28.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:26:28.267 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:26:29.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:29.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:29.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:29.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:29.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 1224.164ms +2017-07-19 13:26:29.497 +05:30 [Information] Request finished in 1233.3517ms 200 application/json; charset=utf-8 +2017-07-19 13:26:29.498 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:26:30.939 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:26:30.940 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:26:30.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:26:30.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:26:30.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:26:30.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:26:31.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:26:31.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:26:31.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:26:31.475 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:26:31.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:26:31.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:26:31.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:26:31.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:26:31.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:26:32.189 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:26:32.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:26:32.190 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:26:33.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:33.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:33.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:26:33.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:33.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:33.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2248.2258ms +2017-07-19 13:26:33.195 +05:30 [Information] Request finished in 2254.6037ms 200 application/json; charset=utf-8 +2017-07-19 13:26:33.196 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:26:34.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:34.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:34.064 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:26:34.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:34.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:34.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3124.6124ms +2017-07-19 13:26:34.077 +05:30 [Information] Request finished in 3137.8517ms 200 application/json; charset=utf-8 +2017-07-19 13:26:34.078 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:26:34.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:26:34.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:34.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:34.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:34.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2199.3156ms +2017-07-19 13:26:34.396 +05:30 [Information] Request finished in 2210.9704ms 200 application/json; charset=utf-8 +2017-07-19 13:26:34.397 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:26:34.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:26:34.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:26:34.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:26:34.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:34.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:34.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:26:34.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:34.863 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:26:34.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:34.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:34.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:34.898 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:26:34.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:34.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3419.8713ms +2017-07-19 13:26:34.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:34.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3434.4703ms +2017-07-19 13:26:34.911 +05:30 [Information] Request finished in 3457.866ms 200 application/json; charset=utf-8 +2017-07-19 13:26:34.913 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:26:34.913 +05:30 [Information] Request finished in 3467.6619ms 200 application/json; charset=utf-8 +2017-07-19 13:26:34.915 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:26:35.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:35.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:26:35.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:35.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:35.435 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3956.7629ms +2017-07-19 13:26:35.437 +05:30 [Information] Request finished in 3991.241ms 200 application/json; charset=utf-8 +2017-07-19 13:26:35.438 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:26:36.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:26:36.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:36.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:36.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:36.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2114.1369ms +2017-07-19 13:26:36.518 +05:30 [Information] Request finished in 2119.6293ms 200 application/json; charset=utf-8 +2017-07-19 13:26:36.519 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:26:36.524 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:26:36.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:26:36.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:26:39.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:26:39.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:26:39.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:26:39.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:26:39.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3087.5428ms +2017-07-19 13:26:39.616 +05:30 [Information] Request finished in 3092.3906ms 200 application/json; charset=utf-8 +2017-07-19 13:26:39.617 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:26:59.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:26:59.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:26:59.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:02.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:02.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:02.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:02.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:02.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3134.4643ms +2017-07-19 13:27:02.199 +05:30 [Information] Request finished in 3142.5661ms 200 application/json; charset=utf-8 +2017-07-19 13:27:02.200 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:27:02.209 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:02.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:02.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:05.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:05.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:05.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:05.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:05.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3031.8295ms +2017-07-19 13:27:05.247 +05:30 [Information] Request finished in 3039.886ms 200 application/json; charset=utf-8 +2017-07-19 13:27:05.247 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:27:08.332 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:08.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:08.333 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:08.338 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:08.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:08.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:11.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:11.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:11.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:11.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:11.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:11.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3102.7867ms +2017-07-19 13:27:11.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:11.441 +05:30 [Information] Request finished in 3108.3558ms 200 application/json; charset=utf-8 +2017-07-19 13:27:11.441 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:27:11.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:11.452 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:11.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:11.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:11.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:11.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3116.2756ms +2017-07-19 13:27:11.468 +05:30 [Information] Request finished in 3129.6443ms 200 application/json; charset=utf-8 +2017-07-19 13:27:11.468 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:27:11.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:11.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:11.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:14.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:14.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:14.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:14.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:14.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:14.547 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3088.2317ms +2017-07-19 13:27:14.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:14.551 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:14.555 +05:30 [Information] Request finished in 3102.6112ms 200 application/json; charset=utf-8 +2017-07-19 13:27:14.555 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:27:14.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:14.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3084.8797ms +2017-07-19 13:27:14.568 +05:30 [Information] Request finished in 3095.2966ms 200 application/json; charset=utf-8 +2017-07-19 13:27:14.569 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:27:15.922 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:27:15.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:27:15.930 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:27:15.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:27:15.931 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:27:15.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:27:15.971 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:15.972 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:15.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:18.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:19.076 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:19.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:19.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:19.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:19.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:19.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:19.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:19.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:19.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3159.805ms +2017-07-19 13:27:19.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:19.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:19.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:19.138 +05:30 [Information] Request finished in 3166.6001ms 200 application/json; charset=utf-8 +2017-07-19 13:27:19.142 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:27:19.141 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3206.4586ms +2017-07-19 13:27:19.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3209.8666ms +2017-07-19 13:27:19.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:19.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:19.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:19.182 +05:30 [Information] Request finished in 3219.8317ms 200 application/json; charset=utf-8 +2017-07-19 13:27:19.182 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:27:19.209 +05:30 [Information] Request finished in 3261.8772ms 200 application/json; charset=utf-8 +2017-07-19 13:27:19.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:27:19.215 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:27:19.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:27:19.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:27:22.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:22.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:22.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:22.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:22.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3045.5386ms +2017-07-19 13:27:22.226 +05:30 [Information] Request finished in 3078.1796ms 200 application/json; charset=utf-8 +2017-07-19 13:27:22.226 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:27:22.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:27:22.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:27:22.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:27:22.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:22.281 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:27:22.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:27:22.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:27:22.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:22.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:22.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:22.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.8647ms +2017-07-19 13:27:22.350 +05:30 [Information] Request finished in 3141.3842ms 200 application/json; charset=utf-8 +2017-07-19 13:27:22.350 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:27:25.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:25.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:25.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:25.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:25.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:25.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:25.429 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:25.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3153.7415ms +2017-07-19 13:27:25.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:25.454 +05:30 [Information] Request finished in 3184.3998ms 200 application/json; charset=utf-8 +2017-07-19 13:27:25.454 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:27:25.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3123.273ms +2017-07-19 13:27:25.466 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:27:25.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:27:25.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:27:25.474 +05:30 [Information] Request finished in 3215.8864ms 200 application/json; charset=utf-8 +2017-07-19 13:27:25.475 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:27:28.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:28.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:28.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:28.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:28.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3111.4827ms +2017-07-19 13:27:28.584 +05:30 [Information] Request finished in 3124.5681ms 200 application/json; charset=utf-8 +2017-07-19 13:27:28.585 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:27:29.838 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:27:29.840 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:27:29.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:27:29.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:27:29.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:27:29.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:27:30.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:27:30.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:27:30.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:27:30.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:27:30.396 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:27:30.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:27:30.398 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:27:30.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:27:30.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:27:31.136 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:31.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:31.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:32.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:32.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:32.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:32.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:27:32.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:32.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:32.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2418.6067ms +2017-07-19 13:27:32.820 +05:30 [Information] Request finished in 2432.9355ms 200 application/json; charset=utf-8 +2017-07-19 13:27:32.821 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:27:32.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:32.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:33.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:33.005 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:27:33.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:33.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:33.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:33.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:27:33.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:33.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3175.3557ms +2017-07-19 13:27:33.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:33.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3198.9279ms +2017-07-19 13:27:33.047 +05:30 [Information] Request finished in 3226.6877ms 200 application/json; charset=utf-8 +2017-07-19 13:27:33.048 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:27:33.047 +05:30 [Information] Request finished in 3224.2729ms 200 application/json; charset=utf-8 +2017-07-19 13:27:33.054 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:27:33.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:27:33.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:33.670 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:27:33.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:33.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:33.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3277.6713ms +2017-07-19 13:27:33.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:33.681 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:27:33.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:33.679 +05:30 [Information] Request finished in 3290.3511ms 200 application/json; charset=utf-8 +2017-07-19 13:27:33.688 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:27:33.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:33.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3292.1134ms +2017-07-19 13:27:33.700 +05:30 [Information] Request finished in 3307.055ms 200 application/json; charset=utf-8 +2017-07-19 13:27:33.701 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:27:34.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:34.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:34.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:34.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:34.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.9623ms +2017-07-19 13:27:34.193 +05:30 [Information] Request finished in 3086.151ms 200 application/json; charset=utf-8 +2017-07-19 13:27:34.194 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:27:34.198 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:34.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:34.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:37.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:37.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:37.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:37.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:37.246 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3043.4615ms +2017-07-19 13:27:37.249 +05:30 [Information] Request finished in 3052.7853ms 200 application/json; charset=utf-8 +2017-07-19 13:27:37.249 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:27:37.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:27:37.319 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:27:37.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:27:37.333 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:37.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:37.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:44.927 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:44.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:44.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:45.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:45.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:45.723 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:45.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:27:45.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:45.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8397.7393ms +2017-07-19 13:27:45.737 +05:30 [Information] Request finished in 8404.4328ms 200 application/json; charset=utf-8 +2017-07-19 13:27:45.739 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:27:45.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:45.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:45.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:45.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:45.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:45.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:45.771 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 8450.0058ms +2017-07-19 13:27:45.775 +05:30 [Information] Request finished in 8459.6236ms 200 application/json; charset=utf-8 +2017-07-19 13:27:45.776 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:27:47.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:47.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:47.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:47.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:47.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2161.3246ms +2017-07-19 13:27:47.911 +05:30 [Information] Request finished in 2167.4317ms 200 application/json; charset=utf-8 +2017-07-19 13:27:47.911 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:27:49.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:49.568 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:49.569 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:49.805 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:49.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4879.5026ms +2017-07-19 13:27:49.818 +05:30 [Information] Request finished in 4891.0505ms 200 application/json; charset=utf-8 +2017-07-19 13:27:49.819 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" completed keep alive response. +2017-07-19 13:27:49.860 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:27:49.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:27:49.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:27:52.232 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 13:27:52.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 13:27:52.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 13:27:53.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:27:53.308 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:27:53.309 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:27:53.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:27:53.317 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3449.9615ms +2017-07-19 13:27:53.322 +05:30 [Information] Request finished in 3463.1961ms 200 application/json; charset=utf-8 +2017-07-19 13:27:53.323 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" completed keep alive response. +2017-07-19 13:27:58.134 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["52", "8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:27:58.148 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:27:58.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:27:58.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:27:58.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 13:27:58.171 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 13:27:58.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 5935.9498ms +2017-07-19 13:27:58.176 +05:30 [Information] Request finished in 5952.2961ms 200 +2017-07-19 13:27:58.176 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" completed keep alive response. +2017-07-19 13:28:00.219 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:28:00.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:28:00.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:28:00.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:28:00.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2086.0596ms +2017-07-19 13:28:00.268 +05:30 [Information] Request finished in 2110.2313ms 200 application/json; charset=utf-8 +2017-07-19 13:28:00.269 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" completed keep alive response. +2017-07-19 13:28:00.776 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:28:00.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:28:00.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:28:03.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:28:03.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:28:03.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:28:03.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:28:03.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3126.8617ms +2017-07-19 13:28:03.908 +05:30 [Information] Request finished in 3133.6366ms 200 application/json; charset=utf-8 +2017-07-19 13:28:03.909 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" completed keep alive response. +2017-07-19 13:28:34.014 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:28:34.015 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:28:34.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:28:36.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce79469e4d48"]) - ModelState is Valid +2017-07-19 13:28:36.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:28:36.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:28:36.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:28:36.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2110.7133ms +2017-07-19 13:28:36.131 +05:30 [Information] Request finished in 2119.086ms 200 application/json; charset=utf-8 +2017-07-19 13:28:36.132 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" completed keep alive response. +2017-07-19 13:30:00.662 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" received FIN. +2017-07-19 13:30:00.662 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" received FIN. +2017-07-19 13:30:00.663 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" received FIN. +2017-07-19 13:30:00.664 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" received FIN. +2017-07-19 13:30:00.664 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" received FIN. +2017-07-19 13:30:00.665 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" disconnecting. +2017-07-19 13:30:00.667 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" received FIN. +2017-07-19 13:30:00.669 +05:30 [Debug] Connection id ""0HL6EFDHG5EVG"" started. +2017-07-19 13:30:00.669 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" sending FIN. +2017-07-19 13:30:00.666 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" disconnecting. +2017-07-19 13:30:00.672 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" disconnecting. +2017-07-19 13:30:00.672 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" disconnecting. +2017-07-19 13:30:00.679 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" sending FIN. +2017-07-19 13:30:00.679 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" disconnecting. +2017-07-19 13:30:00.678 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" disconnecting. +2017-07-19 13:30:00.682 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" sending FIN. +2017-07-19 13:30:00.691 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" sending FIN. +2017-07-19 13:30:00.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 13:30:00.691 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" sent FIN with status "0". +2017-07-19 13:30:00.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 13:30:00.682 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" sent FIN with status "0". +2017-07-19 13:30:00.694 +05:30 [Debug] Connection id ""0HL6EFDHG5EVE"" stopped. +2017-07-19 13:30:00.696 +05:30 [Debug] Connection id ""0HL6EFDHG5EVA"" stopped. +2017-07-19 13:30:00.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 13:30:00.700 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" sending FIN. +2017-07-19 13:30:00.702 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" sending FIN. +2017-07-19 13:30:00.703 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" sent FIN with status "0". +2017-07-19 13:30:00.703 +05:30 [Debug] Connection id ""0HL6EFDHG5EVF"" stopped. +2017-07-19 13:30:00.696 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" sent FIN with status "0". +2017-07-19 13:30:00.704 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" sent FIN with status "0". +2017-07-19 13:30:00.705 +05:30 [Debug] Connection id ""0HL6EFDHG5EVD"" stopped. +2017-07-19 13:30:00.704 +05:30 [Debug] Connection id ""0HL6EFDHG5EVC"" stopped. +2017-07-19 13:30:00.706 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" sent FIN with status "0". +2017-07-19 13:30:00.707 +05:30 [Debug] Connection id ""0HL6EFDHG5EVB"" stopped. +2017-07-19 13:30:03.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:30:03.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:03.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:03.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:03.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3167.9502ms +2017-07-19 13:30:03.880 +05:30 [Information] Request finished in 3199.5549ms 200 application/json; charset=utf-8 +2017-07-19 13:30:03.881 +05:30 [Debug] Connection id ""0HL6EFDHG5EVG"" completed keep alive response. +2017-07-19 13:30:04.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:30:04.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:30:04.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:30:07.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:07.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:07.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:07.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:07.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3114.2008ms +2017-07-19 13:30:07.161 +05:30 [Information] Request finished in 3157.801ms 200 application/json; charset=utf-8 +2017-07-19 13:30:07.161 +05:30 [Debug] Connection id ""0HL6EFDHG5EVG"" completed keep alive response. +2017-07-19 13:30:07.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:30:07.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:30:07.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:30:10.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:10.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:10.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:10.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:10.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3109.2855ms +2017-07-19 13:30:10.281 +05:30 [Information] Request finished in 3114.4607ms 200 application/json; charset=utf-8 +2017-07-19 13:30:10.281 +05:30 [Debug] Connection id ""0HL6EFDHG5EVG"" completed keep alive response. +2017-07-19 13:30:11.609 +05:30 [Debug] Connection id ""0HL6EFDHG5EVH"" started. +2017-07-19 13:30:11.610 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:30:11.611 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:30:11.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:30:11.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:30:11.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:30:11.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:30:12.132 +05:30 [Debug] Connection id ""0HL6EFDHG5EVI"" started. +2017-07-19 13:30:12.132 +05:30 [Debug] Connection id ""0HL6EFDHG5EVJ"" started. +2017-07-19 13:30:12.133 +05:30 [Debug] Connection id ""0HL6EFDHG5EVK"" started. +2017-07-19 13:30:12.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:30:12.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:30:12.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:30:12.160 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:30:12.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:30:12.167 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:30:12.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:30:12.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:30:12.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:30:12.932 +05:30 [Debug] Connection id ""0HL6EFDHG5EVL"" started. +2017-07-19 13:30:12.943 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:30:12.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:30:12.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:30:14.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:14.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:14.761 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:14.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:14.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:14.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3155.0459ms +2017-07-19 13:30:14.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:14.803 +05:30 [Information] Request finished in 3192.3937ms 200 application/json; charset=utf-8 +2017-07-19 13:30:14.833 +05:30 [Debug] Connection id ""0HL6EFDHG5EVG"" completed keep alive response. +2017-07-19 13:30:14.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:14.881 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:14.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:14.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:14.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3270.4988ms +2017-07-19 13:30:14.890 +05:30 [Information] Request finished in 3279.137ms 200 application/json; charset=utf-8 +2017-07-19 13:30:14.891 +05:30 [Debug] Connection id ""0HL6EFDHG5EVH"" completed keep alive response. +2017-07-19 13:30:15.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:15.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:15.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:15.350 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:15.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:15.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:15.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3223.5005ms +2017-07-19 13:30:15.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:30:15.474 +05:30 [Information] Request finished in 3297.1793ms 200 application/json; charset=utf-8 +2017-07-19 13:30:15.474 +05:30 [Debug] Connection id ""0HL6EFDHG5EVI"" completed keep alive response. +2017-07-19 13:30:15.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:15.582 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:15.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:15.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:15.588 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3415.2298ms +2017-07-19 13:30:15.591 +05:30 [Information] Request finished in 3424.1493ms 200 application/json; charset=utf-8 +2017-07-19 13:30:15.592 +05:30 [Debug] Connection id ""0HL6EFDHG5EVK"" completed keep alive response. +2017-07-19 13:30:16.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:30:16.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:16.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:16.074 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:16.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3128.8233ms +2017-07-19 13:30:16.077 +05:30 [Information] Request finished in 3138.879ms 200 application/json; charset=utf-8 +2017-07-19 13:30:16.078 +05:30 [Debug] Connection id ""0HL6EFDHG5EVL"" completed keep alive response. +2017-07-19 13:30:17.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:17.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:17.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:17.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:17.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5205.8256ms +2017-07-19 13:30:17.390 +05:30 [Information] Request finished in 5250.9829ms 200 application/json; charset=utf-8 +2017-07-19 13:30:17.391 +05:30 [Debug] Connection id ""0HL6EFDHG5EVJ"" completed keep alive response. +2017-07-19 13:30:29.772 +05:30 [Debug] Hosting starting +2017-07-19 13:30:30.044 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" started. +2017-07-19 13:30:30.080 +05:30 [Debug] Hosting started +2017-07-19 13:30:30.210 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 13:30:30.294 +05:30 [Information] Request finished in 105.266ms 200 +2017-07-19 13:30:30.356 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:30:30.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 13:30:31.502 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 13:30:31.596 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0d0c6feb-6084-44df-aecd-3df0189d8ce5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 13:30:32.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 13:30:32.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 13:30:32.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 13:30:32.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:30:32.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:32.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:35.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 3493.2929ms +2017-07-19 13:30:36.100 +05:30 [Information] Request finished in 5504.8497ms 200 application/json; charset=utf-8 +2017-07-19 13:30:36.104 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:30:36.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-19 13:30:36.146 +05:30 [Debug] Request did not match any routes. +2017-07-19 13:30:36.586 +05:30 [Debug] The request path "" does not match the path filter +2017-07-19 13:30:36.604 +05:30 [Information] Request finished in 458.06ms 404 +2017-07-19 13:30:36.604 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:30:38.500 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:30:38.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:30:38.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:30:41.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:30:45.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:45.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:45.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:45.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7102.8863ms +2017-07-19 13:30:45.610 +05:30 [Information] Request finished in 7111.9283ms 200 application/json; charset=utf-8 +2017-07-19 13:30:45.610 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:30:55.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:30:55.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:30:55.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:30:59.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:30:59.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:30:59.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:30:59.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:30:59.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3221.3579ms +2017-07-19 13:30:59.147 +05:30 [Information] Request finished in 3239.533ms 200 application/json; charset=utf-8 +2017-07-19 13:30:59.148 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:19.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:31:19.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:31:19.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:31:23.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:31:23.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:23.142 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:23.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:23.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3167.0646ms +2017-07-19 13:31:23.154 +05:30 [Information] Request finished in 3174.2629ms 200 application/json; charset=utf-8 +2017-07-19 13:31:23.155 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:23.157 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:31:23.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:31:23.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:31:26.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:31:26.208 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:26.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:26.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:26.212 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.6702ms +2017-07-19 13:31:26.215 +05:30 [Information] Request finished in 3057.5367ms 200 application/json; charset=utf-8 +2017-07-19 13:31:26.215 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:31.073 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:31:31.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:31:31.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:31:34.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:31:34.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:34.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:34.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:34.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3068.2483ms +2017-07-19 13:31:34.160 +05:30 [Information] Request finished in 3088.2297ms 200 application/json; charset=utf-8 +2017-07-19 13:31:34.162 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:34.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:31:34.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:31:34.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:31:37.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:31:37.243 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:37.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:37.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:37.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.3907ms +2017-07-19 13:31:37.254 +05:30 [Information] Request finished in 3087.505ms 200 application/json; charset=utf-8 +2017-07-19 13:31:37.255 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:37.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 13:31:37.308 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 13:31:37.337 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 13:31:37.340 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" started. +2017-07-19 13:31:37.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 13:31:37.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 13:31:37.368 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 13:31:40.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:31:40.450 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:40.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:40.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:40.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:40.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3146.1012ms +2017-07-19 13:31:40.496 +05:30 [Information] Request finished in 3204.2885ms 200 application/json; charset=utf-8 +2017-07-19 13:31:40.497 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:40.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:40.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:40.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:40.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3246.8108ms +2017-07-19 13:31:40.621 +05:30 [Information] Request finished in 3266.09ms 200 application/json; charset=utf-8 +2017-07-19 13:31:40.622 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" completed keep alive response. +2017-07-19 13:31:40.704 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:31:40.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:31:40.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:31:43.770 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:43.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:43.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:43.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:43.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3147.1858ms +2017-07-19 13:31:43.858 +05:30 [Information] Request finished in 3154.1772ms 200 application/json; charset=utf-8 +2017-07-19 13:31:43.859 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:46.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 13:31:46.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 13:31:46.237 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 13:31:46.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 13:31:46.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 13:31:46.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 13:31:46.820 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" started. +2017-07-19 13:31:46.824 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" started. +2017-07-19 13:31:46.825 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" started. +2017-07-19 13:31:46.828 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 13:31:46.829 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 13:31:46.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 13:31:46.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 13:31:46.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 13:31:46.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 13:31:47.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 13:31:47.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 13:31:47.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 13:31:48.769 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" started. +2017-07-19 13:31:48.801 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:31:48.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:31:48.802 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:31:50.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:50.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:50.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:50.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:51.086 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:51.102 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:31:51.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:51.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:51.119 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:31:51.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:51.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:51.178 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:51.186 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4942.8254ms +2017-07-19 13:31:51.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:51.197 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:31:51.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:51.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4373.2031ms +2017-07-19 13:31:51.238 +05:30 [Information] Request finished in 4980.0751ms 200 application/json; charset=utf-8 +2017-07-19 13:31:51.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:51.239 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" completed keep alive response. +2017-07-19 13:31:51.242 +05:30 [Information] Request finished in 4412.9392ms 200 application/json; charset=utf-8 +2017-07-19 13:31:51.250 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" completed keep alive response. +2017-07-19 13:31:51.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4990.2451ms +2017-07-19 13:31:51.331 +05:30 [Information] Request finished in 5080.4404ms 200 application/json; charset=utf-8 +2017-07-19 13:31:51.350 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:31:51.488 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:51.489 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:31:51.489 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:51.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:51.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4727.9884ms +2017-07-19 13:31:51.565 +05:30 [Information] Request finished in 4739.4019ms 200 application/json; charset=utf-8 +2017-07-19 13:31:51.566 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" completed keep alive response. +2017-07-19 13:31:51.914 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 13:31:51.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:31:51.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:51.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:51.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:51.941 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3131.8412ms +2017-07-19 13:31:51.959 +05:30 [Information] Request finished in 3157.1012ms 200 application/json; charset=utf-8 +2017-07-19 13:31:51.963 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" completed keep alive response. +2017-07-19 13:31:51.988 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:31:51.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:31:51.989 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:31:53.945 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:53.946 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 13:31:53.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:53.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:53.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6166.812ms +2017-07-19 13:31:53.964 +05:30 [Information] Request finished in 6180.4816ms 200 application/json; charset=utf-8 +2017-07-19 13:31:53.964 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" completed keep alive response. +2017-07-19 13:31:54.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:31:54.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:54.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:54.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:54.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2116.0723ms +2017-07-19 13:31:54.110 +05:30 [Information] Request finished in 2143.409ms 200 application/json; charset=utf-8 +2017-07-19 13:31:54.111 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" completed keep alive response. +2017-07-19 13:31:54.125 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 13:31:54.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 13:31:54.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 13:31:57.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 13:31:57.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:31:57.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:31:57.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:31:57.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3167.8876ms +2017-07-19 13:31:57.301 +05:30 [Information] Request finished in 3174.8168ms 200 application/json; charset=utf-8 +2017-07-19 13:31:57.301 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" completed keep alive response. +2017-07-19 13:32:10.529 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:32:10.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:32:10.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:32:15.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:32:15.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:15.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:15.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:16.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5189.6111ms +2017-07-19 13:32:16.509 +05:30 [Information] Request finished in 5980.1877ms 200 application/json; charset=utf-8 +2017-07-19 13:32:16.509 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:32:16.604 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:32:16.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:32:16.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:32:18.633 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:32:18.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:32:18.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:32:19.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:32:19.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:19.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:19.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:19.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2809.0576ms +2017-07-19 13:32:19.440 +05:30 [Information] Request finished in 2832.1421ms 200 application/json; charset=utf-8 +2017-07-19 13:32:19.442 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" completed keep alive response. +2017-07-19 13:32:24.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:32:24.428 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 13:32:24.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 13:32:24.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 13:32:24.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:24.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:24.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:24.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5801.6832ms +2017-07-19 13:32:24.442 +05:30 [Information] Request finished in 5807.3586ms 200 application/json; charset=utf-8 +2017-07-19 13:32:24.442 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" completed keep alive response. +2017-07-19 13:32:24.447 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 13:32:24.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 13:32:24.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 13:32:26.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 13:32:26.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:26.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:26.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:26.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2150.9566ms +2017-07-19 13:32:26.605 +05:30 [Information] Request finished in 2160.577ms 200 application/json; charset=utf-8 +2017-07-19 13:32:26.606 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" completed keep alive response. +2017-07-19 13:32:27.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["53", "8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:32:27.978 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:32:27.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 13:32:27.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:32:27.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:32:28.007 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 13:32:28.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3575.1732ms +2017-07-19 13:32:28.015 +05:30 [Information] Request finished in 3587.9513ms 200 +2017-07-19 13:32:28.016 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" completed keep alive response. +2017-07-19 13:32:31.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:32:31.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:31.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:31.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:31.043 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.1374ms +2017-07-19 13:32:31.045 +05:30 [Information] Request finished in 3071.9791ms 200 application/json; charset=utf-8 +2017-07-19 13:32:31.046 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" completed keep alive response. +2017-07-19 13:32:34.273 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 13:32:34.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 13:32:34.320 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 13:32:37.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 13:32:37.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 13:32:37.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 13:32:37.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 13:32:37.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3120.6493ms +2017-07-19 13:32:37.447 +05:30 [Information] Request finished in 3177.8248ms 200 application/json; charset=utf-8 +2017-07-19 13:32:37.448 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" completed keep alive response. +2017-07-19 13:34:30.026 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" received FIN. +2017-07-19 13:34:30.029 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" received FIN. +2017-07-19 13:34:30.030 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" received FIN. +2017-07-19 13:34:30.031 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" received FIN. +2017-07-19 13:34:30.031 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" disconnecting. +2017-07-19 13:34:30.035 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" sending FIN. +2017-07-19 13:34:30.027 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" received FIN. +2017-07-19 13:34:30.036 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" received FIN. +2017-07-19 13:34:30.031 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" disconnecting. +2017-07-19 13:34:30.046 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" disconnecting. +2017-07-19 13:34:30.046 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" disconnecting. +2017-07-19 13:34:30.041 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" sent FIN with status "0". +2017-07-19 13:34:30.049 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" sending FIN. +2017-07-19 13:34:30.050 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" sent FIN with status "0". +2017-07-19 13:34:30.047 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" disconnecting. +2017-07-19 13:34:30.051 +05:30 [Debug] Connection id ""0HL6EFGSMAUPS"" stopped. +2017-07-19 13:34:30.052 +05:30 [Debug] Connection id ""0HL6EFGSMAUPR"" stopped. +2017-07-19 13:34:30.052 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" sending FIN. +2017-07-19 13:34:30.053 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" sending FIN. +2017-07-19 13:34:30.046 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" disconnecting. +2017-07-19 13:34:30.054 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" sending FIN. +2017-07-19 13:34:30.054 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" sent FIN with status "0". +2017-07-19 13:34:30.055 +05:30 [Debug] Connection id ""0HL6EFGSMAUPQ"" stopped. +2017-07-19 13:34:30.053 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" sending FIN. +2017-07-19 13:34:30.055 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" sent FIN with status "0". +2017-07-19 13:34:30.059 +05:30 [Debug] Connection id ""0HL6EFGSMAUPP"" stopped. +2017-07-19 13:34:30.063 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" sent FIN with status "0". +2017-07-19 13:34:30.064 +05:30 [Debug] Connection id ""0HL6EFGSMAUPN"" stopped. +2017-07-19 13:34:30.065 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" sent FIN with status "0". +2017-07-19 13:34:30.065 +05:30 [Debug] Connection id ""0HL6EFGSMAUPO"" stopped. +2017-07-19 15:19:17.726 +05:30 [Debug] Hosting starting +2017-07-19 15:19:18.510 +05:30 [Debug] Hosting started +2017-07-19 15:19:18.537 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" started. +2017-07-19 15:19:18.537 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" started. +2017-07-19 15:19:18.953 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 15:19:18.969 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 15:19:19.041 +05:30 [Information] Request finished in 175.6655ms 200 +2017-07-19 15:19:19.117 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" completed keep alive response. +2017-07-19 15:19:21.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 15:19:21.421 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1a98e6d9-29b9-4c68-ad50-ca68cb71bc74"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 15:19:21.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 15:19:21.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 15:19:21.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 15:19:21.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:19:21.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:19:21.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:19:26.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5276.581ms +2017-07-19 15:19:27.078 +05:30 [Information] Request finished in 8222.1764ms 200 application/json; charset=utf-8 +2017-07-19 15:19:27.081 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" completed keep alive response. +2017-07-19 15:19:28.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-19 15:19:28.105 +05:30 [Debug] Request did not match any routes. +2017-07-19 15:19:28.119 +05:30 [Debug] The request path "" does not match the path filter +2017-07-19 15:19:28.122 +05:30 [Information] Request finished in 19.3297ms 404 +2017-07-19 15:19:28.123 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" completed keep alive response. +2017-07-19 15:19:38.259 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:19:38.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:19:38.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:19:42.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce7c310a88d4"]) - ModelState is Valid +2017-07-19 15:20:00.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:20:00.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:20:00.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:20:00.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 22402.8248ms +2017-07-19 15:20:00.703 +05:30 [Information] Request finished in 22442.0968ms 200 application/json; charset=utf-8 +2017-07-19 15:20:00.704 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" completed keep alive response. +2017-07-19 15:21:06.032 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" received FIN. +2017-07-19 15:21:06.032 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" received FIN. +2017-07-19 15:21:06.035 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" disconnecting. +2017-07-19 15:21:06.041 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" disconnecting. +2017-07-19 15:21:06.041 +05:30 [Debug] Connection id ""0HL6EHDMAS8KC"" started. +2017-07-19 15:21:06.045 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" sending FIN. +2017-07-19 15:21:06.045 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" sending FIN. +2017-07-19 15:21:06.063 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" sent FIN with status "0". +2017-07-19 15:21:06.063 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" sent FIN with status "0". +2017-07-19 15:21:06.064 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 15:21:06.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 15:21:06.076 +05:30 [Debug] Connection id ""0HL6EHDMAS8KA"" stopped. +2017-07-19 15:21:06.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 15:21:06.076 +05:30 [Debug] Connection id ""0HL6EHDMAS8KB"" stopped. +2017-07-19 15:21:09.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:21:10.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:10.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:10.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:10.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4165.9451ms +2017-07-19 15:21:10.262 +05:30 [Information] Request finished in 4209.4991ms 200 application/json; charset=utf-8 +2017-07-19 15:21:10.263 +05:30 [Debug] Connection id ""0HL6EHDMAS8KC"" completed keep alive response. +2017-07-19 15:21:17.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:21:17.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:21:17.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:21:20.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:20.606 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:20.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:20.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:20.626 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3496.925ms +2017-07-19 15:21:20.629 +05:30 [Information] Request finished in 3503.9797ms 200 application/json; charset=utf-8 +2017-07-19 15:21:20.630 +05:30 [Debug] Connection id ""0HL6EHDMAS8KC"" completed keep alive response. +2017-07-19 15:21:20.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:21:20.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:21:20.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:21:23.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:23.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:23.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:23.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:23.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3155.907ms +2017-07-19 15:21:23.886 +05:30 [Information] Request finished in 3165.8134ms 200 application/json; charset=utf-8 +2017-07-19 15:21:23.886 +05:30 [Debug] Connection id ""0HL6EHDMAS8KC"" completed keep alive response. +2017-07-19 15:21:27.336 +05:30 [Debug] Connection id ""0HL6EHDMAS8KD"" started. +2017-07-19 15:21:27.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:21:27.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:21:27.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:21:27.395 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:21:27.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:21:27.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:21:27.794 +05:30 [Debug] Connection id ""0HL6EHDMAS8KF"" started. +2017-07-19 15:21:27.794 +05:30 [Debug] Connection id ""0HL6EHDMAS8KE"" started. +2017-07-19 15:21:27.796 +05:30 [Debug] Connection id ""0HL6EHDMAS8KG"" started. +2017-07-19 15:21:27.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:21:27.803 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:21:27.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:21:27.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:21:27.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:21:27.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:21:27.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:21:27.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:21:27.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:21:30.448 +05:30 [Debug] Connection id ""0HL6EHDMAS8KH"" started. +2017-07-19 15:21:30.503 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:21:30.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:21:30.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:21:33.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:33.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:33.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:33.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:21:33.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:33.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:21:33.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:33.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:33.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:33.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3225.4616ms +2017-07-19 15:21:33.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:33.901 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:21:33.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:33.911 +05:30 [Information] Request finished in 3314.1894ms 200 application/json; charset=utf-8 +2017-07-19 15:21:33.920 +05:30 [Debug] Connection id ""0HL6EHDMAS8KH"" completed keep alive response. +2017-07-19 15:21:33.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:33.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:34.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:34.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6186.6879ms +2017-07-19 15:21:34.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:21:34.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:21:34.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:34.088 +05:30 [Information] Request finished in 6270.4053ms 200 application/json; charset=utf-8 +2017-07-19 15:21:34.130 +05:30 [Debug] Connection id ""0HL6EHDMAS8KE"" completed keep alive response. +2017-07-19 15:21:34.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:34.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:34.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:34.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6775.3984ms +2017-07-19 15:21:34.277 +05:30 [Information] Request finished in 6914.8083ms 200 application/json; charset=utf-8 +2017-07-19 15:21:34.278 +05:30 [Debug] Connection id ""0HL6EHDMAS8KD"" completed keep alive response. +2017-07-19 15:21:34.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6890.5834ms +2017-07-19 15:21:34.345 +05:30 [Information] Request finished in 7004.7242ms 200 application/json; charset=utf-8 +2017-07-19 15:21:34.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:34.378 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:21:34.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:34.377 +05:30 [Debug] Connection id ""0HL6EHDMAS8KC"" completed keep alive response. +2017-07-19 15:21:34.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:34.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6772.6473ms +2017-07-19 15:21:34.588 +05:30 [Information] Request finished in 6790.7793ms 200 application/json; charset=utf-8 +2017-07-19 15:21:34.589 +05:30 [Debug] Connection id ""0HL6EHDMAS8KF"" completed keep alive response. +2017-07-19 15:21:37.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:21:37.243 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:21:37.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:21:37.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:21:37.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9411.0818ms +2017-07-19 15:21:37.255 +05:30 [Information] Request finished in 9445.3008ms 200 application/json; charset=utf-8 +2017-07-19 15:21:37.256 +05:30 [Debug] Connection id ""0HL6EHDMAS8KG"" completed keep alive response. +2017-07-19 15:25:13.296 +05:30 [Debug] Hosting starting +2017-07-19 15:25:15.188 +05:30 [Debug] Hosting started +2017-07-19 15:25:15.213 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" started. +2017-07-19 15:25:15.213 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" started. +2017-07-19 15:25:16.926 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 15:25:16.927 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 15:25:17.651 +05:30 [Information] Request finished in 758.3914ms 200 +2017-07-19 15:25:17.708 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:25:19.254 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:25:19.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 15:25:19.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:25:19.675 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"7e5a2e6d-5850-4a79-9a60-261470bc6497"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 15:25:19.731 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:25:19.731 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 15:25:19.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 15:25:19.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 15:25:19.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:25:19.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:25:19.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:25:20.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 411.9479ms +2017-07-19 15:25:20.230 +05:30 [Information] Request finished in 3355.4894ms 200 application/json; charset=utf-8 +2017-07-19 15:25:20.232 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:25:23.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:25:26.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:25:26.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:25:26.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:25:27.024 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7283.9825ms +2017-07-19 15:25:27.042 +05:30 [Information] Request finished in 7797.2886ms 200 application/json; charset=utf-8 +2017-07-19 15:25:27.043 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:25:33.269 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:25:33.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:25:33.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:25:36.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:25:36.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:25:36.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:25:36.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:25:36.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3210.0258ms +2017-07-19 15:25:36.492 +05:30 [Information] Request finished in 3223.8251ms 200 application/json; charset=utf-8 +2017-07-19 15:25:36.493 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:25:50.714 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:25:50.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:25:50.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:25:53.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:25:53.808 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:25:53.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:25:53.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:25:53.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3092.3413ms +2017-07-19 15:25:53.815 +05:30 [Information] Request finished in 3101.5965ms 200 application/json; charset=utf-8 +2017-07-19 15:25:53.815 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:25:56.538 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:25:56.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:25:56.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:25:59.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:25:59.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:25:59.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:25:59.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:25:59.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3108.2826ms +2017-07-19 15:25:59.656 +05:30 [Information] Request finished in 3117.6811ms 200 application/json; charset=utf-8 +2017-07-19 15:25:59.657 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:25:59.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:25:59.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:25:59.701 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:25:59.702 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:25:59.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:25:59.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:26:02.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:26:02.820 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:02.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:02.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:02.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:02.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3127.0489ms +2017-07-19 15:26:02.868 +05:30 [Information] Request finished in 3174.5693ms 200 application/json; charset=utf-8 +2017-07-19 15:26:02.869 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:26:03.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:03.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:03.005 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:03.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3303.9221ms +2017-07-19 15:26:03.044 +05:30 [Information] Request finished in 3341.3653ms 200 application/json; charset=utf-8 +2017-07-19 15:26:03.045 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:26:03.193 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:26:03.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:26:03.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:26:06.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:06.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:06.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:06.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:06.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3149.4493ms +2017-07-19 15:26:06.355 +05:30 [Information] Request finished in 3165.4042ms 200 application/json; charset=utf-8 +2017-07-19 15:26:06.356 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:26:08.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:26:08.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:26:08.579 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:26:08.580 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:26:08.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:26:08.586 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:26:09.187 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" started. +2017-07-19 15:26:09.187 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" started. +2017-07-19 15:26:09.192 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" started. +2017-07-19 15:26:09.193 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:26:09.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:26:09.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:26:09.195 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:26:09.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:26:09.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:26:09.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:26:09.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:26:09.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:26:11.759 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" started. +2017-07-19 15:26:12.054 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:26:12.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:26:12.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:26:14.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:14.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:14.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:14.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:14.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:14.435 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:14.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:14.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:14.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:14.475 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5255.8965ms +2017-07-19 15:26:14.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:14.571 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:14.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:14.688 +05:30 [Information] Request finished in 5300.1593ms 200 application/json; charset=utf-8 +2017-07-19 15:26:14.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:14.766 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:26:14.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6195.9268ms +2017-07-19 15:26:14.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:14.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:14.966 +05:30 [Information] Request finished in 6331.7933ms 200 application/json; charset=utf-8 +2017-07-19 15:26:14.993 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:26:14.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:15.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:15.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:15.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:15.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:15.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:15.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6567.6877ms +2017-07-19 15:26:15.168 +05:30 [Information] Request finished in 6590.2483ms 200 application/json; charset=utf-8 +2017-07-19 15:26:15.171 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:26:15.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:26:15.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:15.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:15.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:15.236 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3177.0741ms +2017-07-19 15:26:15.242 +05:30 [Information] Request finished in 3186.3515ms 200 application/json; charset=utf-8 +2017-07-19 15:26:15.243 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:26:15.291 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:26:15.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:26:15.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:26:15.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6113.4925ms +2017-07-19 15:26:15.315 +05:30 [Information] Request finished in 6122.4011ms 200 application/json; charset=utf-8 +2017-07-19 15:26:15.316 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:26:16.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:16.818 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:16.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:16.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:16.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7625.3052ms +2017-07-19 15:26:16.829 +05:30 [Information] Request finished in 7634.9487ms 200 application/json; charset=utf-8 +2017-07-19 15:26:16.830 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:26:18.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:26:18.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:18.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:18.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:18.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3163.7939ms +2017-07-19 15:26:18.461 +05:30 [Information] Request finished in 3169.516ms 200 application/json; charset=utf-8 +2017-07-19 15:26:18.462 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:26:30.659 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:26:30.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:26:30.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:26:33.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:26:33.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:33.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:33.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:33.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3076.6486ms +2017-07-19 15:26:33.752 +05:30 [Information] Request finished in 3094.7908ms 200 application/json; charset=utf-8 +2017-07-19 15:26:33.753 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:26:33.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:26:33.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:26:33.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:26:33.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:26:33.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:26:33.789 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:26:36.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:26:36.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:36.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:36.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:36.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:36.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3160.0618ms +2017-07-19 15:26:36.957 +05:30 [Information] Request finished in 3193.0598ms 200 application/json; charset=utf-8 +2017-07-19 15:26:36.958 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:26:37.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:37.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:37.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:37.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3220.7678ms +2017-07-19 15:26:37.014 +05:30 [Information] Request finished in 3250.3505ms 200 application/json; charset=utf-8 +2017-07-19 15:26:37.014 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:26:37.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:26:37.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:26:37.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:26:40.091 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:40.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:40.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:40.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:40.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3131.361ms +2017-07-19 15:26:40.162 +05:30 [Information] Request finished in 3138.2309ms 200 application/json; charset=utf-8 +2017-07-19 15:26:40.162 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:26:41.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:26:41.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:26:41.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:26:41.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:26:41.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:26:41.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:26:42.115 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:26:42.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:26:42.118 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:26:42.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:26:42.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:26:42.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:26:42.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:26:42.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:26:42.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:26:44.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:26:44.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:26:44.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:26:44.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:44.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:44.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:44.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:44.512 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:44.512 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:44.533 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:44.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2409.7668ms +2017-07-19 15:26:44.567 +05:30 [Information] Request finished in 2453.048ms 200 application/json; charset=utf-8 +2017-07-19 15:26:44.567 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:26:44.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:44.716 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:44.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:44.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:44.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2599.9858ms +2017-07-19 15:26:44.722 +05:30 [Information] Request finished in 2608.8755ms 200 application/json; charset=utf-8 +2017-07-19 15:26:44.723 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:26:45.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:45.251 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:45.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:45.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:45.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:26:45.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:45.283 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:45.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:45.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:45.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:45.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3155.9063ms +2017-07-19 15:26:45.310 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:45.310 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:26:45.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3654.2103ms +2017-07-19 15:26:45.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:45.336 +05:30 [Information] Request finished in 3218.9304ms 200 application/json; charset=utf-8 +2017-07-19 15:26:45.341 +05:30 [Information] Request finished in 3684.0158ms 200 application/json; charset=utf-8 +2017-07-19 15:26:45.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:45.343 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:26:45.351 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:26:45.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3703.2403ms +2017-07-19 15:26:45.391 +05:30 [Information] Request finished in 3734.8105ms 200 application/json; charset=utf-8 +2017-07-19 15:26:45.392 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:26:47.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:26:47.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:47.312 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:47.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:47.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3107.1712ms +2017-07-19 15:26:47.322 +05:30 [Information] Request finished in 3155.8308ms 200 application/json; charset=utf-8 +2017-07-19 15:26:47.323 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:26:47.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:26:47.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:26:47.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:26:50.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:26:50.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:26:50.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:26:50.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:26:50.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3114.3232ms +2017-07-19 15:26:50.454 +05:30 [Information] Request finished in 3121.4327ms 200 application/json; charset=utf-8 +2017-07-19 15:26:50.454 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:27:21.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:27:21.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:27:21.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:27:24.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:27:24.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:24.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:24.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:24.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.3199ms +2017-07-19 15:27:24.389 +05:30 [Information] Request finished in 3066.2115ms 200 application/json; charset=utf-8 +2017-07-19 15:27:24.390 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:27:24.405 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:27:24.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:27:24.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:27:24.416 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:27:24.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:27:24.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:27:27.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:27:27.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:27.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:27.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:27.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:27.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3109.5655ms +2017-07-19 15:27:27.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:27.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:27.546 +05:30 [Information] Request finished in 3145.1742ms 200 application/json; charset=utf-8 +2017-07-19 15:27:27.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:27.547 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:27:27.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3127.7315ms +2017-07-19 15:27:27.552 +05:30 [Information] Request finished in 3136.0118ms 200 application/json; charset=utf-8 +2017-07-19 15:27:27.554 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:27:27.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:27:27.578 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:27:27.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:27:30.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:30.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:30.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:30.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:30.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3094.6048ms +2017-07-19 15:27:30.679 +05:30 [Information] Request finished in 3116.4618ms 200 application/json; charset=utf-8 +2017-07-19 15:27:30.679 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:27:34.950 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:27:34.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:27:34.956 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:27:34.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:27:34.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:27:34.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:27:35.468 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:27:35.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:27:35.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:27:35.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:27:35.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:27:35.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:27:36.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:27:36.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:27:36.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:27:37.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:27:37.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:27:37.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:27:39.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:39.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:39.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:39.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:27:39.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:39.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:39.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:39.824 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:27:39.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:39.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4864.354ms +2017-07-19 15:27:39.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:39.830 +05:30 [Information] Request finished in 4889.3125ms 200 application/json; charset=utf-8 +2017-07-19 15:27:39.831 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:27:39.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4872.6818ms +2017-07-19 15:27:39.837 +05:30 [Information] Request finished in 4901.5409ms 200 application/json; charset=utf-8 +2017-07-19 15:27:39.838 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:27:40.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:40.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:40.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:27:40.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:27:41.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:41.045 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:41.084 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:41.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3379.7411ms +2017-07-19 15:27:41.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:41.152 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:27:41.153 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:41.189 +05:30 [Information] Request finished in 3457.9957ms 200 application/json; charset=utf-8 +2017-07-19 15:27:41.190 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:27:41.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:41.286 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:27:41.289 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:27:41.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:27:41.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5784.3739ms +2017-07-19 15:27:41.350 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:41.351 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:27:41.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:41.356 +05:30 [Information] Request finished in 5909.3166ms 200 application/json; charset=utf-8 +2017-07-19 15:27:41.357 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:27:41.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:41.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5896.1194ms +2017-07-19 15:27:41.421 +05:30 [Information] Request finished in 5950.4518ms 200 application/json; charset=utf-8 +2017-07-19 15:27:41.422 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:27:41.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:41.644 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:27:41.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:41.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:41.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4969.1452ms +2017-07-19 15:27:41.657 +05:30 [Information] Request finished in 4977.8227ms 200 application/json; charset=utf-8 +2017-07-19 15:27:41.660 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:27:44.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:27:44.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:27:44.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:27:44.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:27:44.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3138.5891ms +2017-07-19 15:27:44.462 +05:30 [Information] Request finished in 3190.2931ms 200 application/json; charset=utf-8 +2017-07-19 15:27:44.463 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:28:11.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:28:11.206 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:28:11.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:28:14.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:28:14.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:14.277 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:14.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:14.287 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3073.3515ms +2017-07-19 15:28:14.293 +05:30 [Information] Request finished in 3087.8411ms 200 application/json; charset=utf-8 +2017-07-19 15:28:14.294 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:28:14.335 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:28:14.339 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:28:14.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:28:14.346 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:28:14.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:28:14.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:28:17.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:28:17.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:17.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:17.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:17.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3132.1516ms +2017-07-19 15:28:17.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:17.504 +05:30 [Information] Request finished in 3176.3627ms 200 application/json; charset=utf-8 +2017-07-19 15:28:17.505 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:28:17.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:17.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:17.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:17.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3225.1504ms +2017-07-19 15:28:17.576 +05:30 [Information] Request finished in 3234.2314ms 200 application/json; charset=utf-8 +2017-07-19 15:28:17.576 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:28:17.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:28:17.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:28:17.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:28:20.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:20.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:20.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:20.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:20.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3117.5961ms +2017-07-19 15:28:20.706 +05:30 [Information] Request finished in 3123.6538ms 200 application/json; charset=utf-8 +2017-07-19 15:28:20.707 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:28:26.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:28:26.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:28:26.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:28:26.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:28:26.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:28:26.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:28:26.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:28:26.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:28:26.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:28:26.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:28:26.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:28:26.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:28:28.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:28:28.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:28:28.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:28:29.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:28:29.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:28:29.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:28:31.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:31.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:31.307 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:28:31.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:31.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:31.359 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:31.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5200.4091ms +2017-07-19 15:28:31.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:31.433 +05:30 [Information] Request finished in 5289.3242ms 200 application/json; charset=utf-8 +2017-07-19 15:28:31.434 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:28:31.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:31.435 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:28:31.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:31.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5267.3192ms +2017-07-19 15:28:31.457 +05:30 [Information] Request finished in 5310.4748ms 200 application/json; charset=utf-8 +2017-07-19 15:28:31.459 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" completed keep alive response. +2017-07-19 15:28:32.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:28:32.321 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:32.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:32.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:32.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:32.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3185.0547ms +2017-07-19 15:28:32.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:32.422 +05:30 [Information] Request finished in 3237.3633ms 200 application/json; charset=utf-8 +2017-07-19 15:28:32.424 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" completed keep alive response. +2017-07-19 15:28:32.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:28:32.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:28:32.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:32.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:28:32.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:28:32.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:28:32.532 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:32.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:32.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5895.0438ms +2017-07-19 15:28:32.654 +05:30 [Information] Request finished in 5978.1316ms 200 application/json; charset=utf-8 +2017-07-19 15:28:32.655 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" completed keep alive response. +2017-07-19 15:28:32.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:32.701 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:28:32.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:32.704 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:32.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6018.8579ms +2017-07-19 15:28:32.724 +05:30 [Information] Request finished in 6048.4202ms 200 application/json; charset=utf-8 +2017-07-19 15:28:32.727 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" completed keep alive response. +2017-07-19 15:28:33.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:33.152 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:28:33.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:33.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:33.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4975.9671ms +2017-07-19 15:28:33.163 +05:30 [Information] Request finished in 4989.9545ms 200 application/json; charset=utf-8 +2017-07-19 15:28:33.167 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" completed keep alive response. +2017-07-19 15:28:34.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:28:34.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:28:34.694 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:28:34.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:28:34.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2176.9705ms +2017-07-19 15:28:34.699 +05:30 [Information] Request finished in 2227.3589ms 200 application/json; charset=utf-8 +2017-07-19 15:28:34.700 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" completed keep alive response. +2017-07-19 15:29:47.341 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" received FIN. +2017-07-19 15:29:47.343 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" received FIN. +2017-07-19 15:29:47.344 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" disconnecting. +2017-07-19 15:29:47.344 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" received FIN. +2017-07-19 15:29:47.344 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" disconnecting. +2017-07-19 15:29:47.342 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" received FIN. +2017-07-19 15:29:47.348 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" received FIN. +2017-07-19 15:29:47.348 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" received FIN. +2017-07-19 15:29:47.351 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" disconnecting. +2017-07-19 15:29:47.351 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" disconnecting. +2017-07-19 15:29:47.352 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" disconnecting. +2017-07-19 15:29:47.351 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" started. +2017-07-19 15:29:47.352 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" disconnecting. +2017-07-19 15:29:47.354 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" sending FIN. +2017-07-19 15:29:47.351 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" sending FIN. +2017-07-19 15:29:47.356 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" sending FIN. +2017-07-19 15:29:47.356 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" sending FIN. +2017-07-19 15:29:47.357 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" sending FIN. +2017-07-19 15:29:47.359 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" sending FIN. +2017-07-19 15:29:47.364 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" sent FIN with status "0". +2017-07-19 15:29:47.364 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" sent FIN with status "0". +2017-07-19 15:29:47.368 +05:30 [Debug] Connection id ""0HL6EHH0KD8JJ"" stopped. +2017-07-19 15:29:47.369 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" sent FIN with status "0". +2017-07-19 15:29:47.368 +05:30 [Debug] Connection id ""0HL6EHH0KD8JL"" stopped. +2017-07-19 15:29:47.370 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" sent FIN with status "0". +2017-07-19 15:29:47.370 +05:30 [Debug] Connection id ""0HL6EHH0KD8JI"" stopped. +2017-07-19 15:29:47.369 +05:30 [Debug] Connection id ""0HL6EHH0KD8JH"" stopped. +2017-07-19 15:29:47.371 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" sent FIN with status "0". +2017-07-19 15:29:47.373 +05:30 [Debug] Connection id ""0HL6EHH0KD8JK"" stopped. +2017-07-19 15:29:47.372 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" sent FIN with status "0". +2017-07-19 15:29:47.375 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:29:47.376 +05:30 [Debug] Connection id ""0HL6EHH0KD8JM"" stopped. +2017-07-19 15:29:47.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:29:47.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:29:50.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:29:50.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:29:50.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:29:50.470 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:29:50.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3092.8362ms +2017-07-19 15:29:50.480 +05:30 [Information] Request finished in 3104.0827ms 200 application/json; charset=utf-8 +2017-07-19 15:29:50.481 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:29:52.082 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:29:52.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:29:52.084 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" started. +2017-07-19 15:29:52.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:29:52.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:29:52.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:29:52.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:29:55.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:29:55.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:29:55.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:29:55.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:29:55.202 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:29:55.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3131.0846ms +2017-07-19 15:29:55.227 +05:30 [Information] Request finished in 3156.0364ms 200 application/json; charset=utf-8 +2017-07-19 15:29:55.228 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:29:55.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:29:55.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:29:55.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:29:55.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3175.586ms +2017-07-19 15:29:55.276 +05:30 [Information] Request finished in 3189.3628ms 200 application/json; charset=utf-8 +2017-07-19 15:29:55.277 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" completed keep alive response. +2017-07-19 15:29:55.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:29:55.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:29:55.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:29:58.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:29:58.401 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:29:58.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:29:58.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:29:58.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3119.5023ms +2017-07-19 15:29:58.408 +05:30 [Information] Request finished in 3124.9903ms 200 application/json; charset=utf-8 +2017-07-19 15:29:58.408 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:29:59.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:29:59.832 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:29:59.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:29:59.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:29:59.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:29:59.835 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:30:00.470 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" started. +2017-07-19 15:30:00.475 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" started. +2017-07-19 15:30:00.476 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" started. +2017-07-19 15:30:00.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:30:00.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:30:00.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:30:00.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:30:00.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:30:00.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:30:00.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:30:00.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:30:00.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:30:01.418 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" started. +2017-07-19 15:30:01.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:30:01.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:30:01.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:30:01.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:02.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:02.603 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:02.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:02.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:02.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2099.6217ms +2017-07-19 15:30:02.615 +05:30 [Information] Request finished in 2124.6576ms 200 application/json; charset=utf-8 +2017-07-19 15:30:02.615 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" completed keep alive response. +2017-07-19 15:30:03.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:03.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:03.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:03.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:03.148 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:03.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3311.6389ms +2017-07-19 15:30:03.155 +05:30 [Information] Request finished in 3323.5945ms 200 application/json; charset=utf-8 +2017-07-19 15:30:03.156 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" completed keep alive response. +2017-07-19 15:30:03.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:03.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:03.331 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:03.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:03.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:03.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3498.8959ms +2017-07-19 15:30:03.339 +05:30 [Information] Request finished in 3507.8306ms 200 application/json; charset=utf-8 +2017-07-19 15:30:03.340 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:30:03.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:03.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:03.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:03.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:03.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:03.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:03.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3440.6384ms +2017-07-19 15:30:04.007 +05:30 [Information] Request finished in 3526.0264ms 200 application/json; charset=utf-8 +2017-07-19 15:30:04.008 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" completed keep alive response. +2017-07-19 15:30:04.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:04.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:04.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:04.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:04.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3627.5283ms +2017-07-19 15:30:04.138 +05:30 [Information] Request finished in 3649.5264ms 200 application/json; charset=utf-8 +2017-07-19 15:30:04.138 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" completed keep alive response. +2017-07-19 15:30:04.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:30:04.575 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:04.575 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:04.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:04.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3152.0445ms +2017-07-19 15:30:04.581 +05:30 [Information] Request finished in 3161.8049ms 200 application/json; charset=utf-8 +2017-07-19 15:30:04.582 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" completed keep alive response. +2017-07-19 15:30:04.587 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:30:04.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:30:04.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:30:07.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:30:07.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:07.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:07.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:07.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3082.7001ms +2017-07-19 15:30:07.677 +05:30 [Information] Request finished in 3088.8165ms 200 application/json; charset=utf-8 +2017-07-19 15:30:07.677 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" completed keep alive response. +2017-07-19 15:30:22.194 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:30:22.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:30:22.196 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:30:25.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:30:25.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:25.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:25.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:25.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.6184ms +2017-07-19 15:30:25.272 +05:30 [Information] Request finished in 3081.0136ms 200 application/json; charset=utf-8 +2017-07-19 15:30:25.272 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" completed keep alive response. +2017-07-19 15:30:25.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:30:25.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:30:25.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:30:25.305 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:30:25.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:30:25.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:30:28.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:28.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:30:28.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:28.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:28.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:28.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:28.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:28.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3190.1951ms +2017-07-19 15:30:28.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:28.527 +05:30 [Information] Request finished in 3226.5793ms 200 application/json; charset=utf-8 +2017-07-19 15:30:28.527 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" completed keep alive response. +2017-07-19 15:30:28.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3214.2644ms +2017-07-19 15:30:28.535 +05:30 [Information] Request finished in 3233.2849ms 200 application/json; charset=utf-8 +2017-07-19 15:30:28.536 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:30:28.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:30:28.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:30:28.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:30:31.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:31.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:31.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:31.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:31.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.7424ms +2017-07-19 15:30:31.675 +05:30 [Information] Request finished in 3127.1019ms 200 application/json; charset=utf-8 +2017-07-19 15:30:31.675 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" completed keep alive response. +2017-07-19 15:30:33.281 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:30:33.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:30:33.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:30:33.302 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:30:33.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:30:33.303 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:30:34.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:30:34.249 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:30:34.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:30:34.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:30:34.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:30:34.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:30:34.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:30:34.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:30:34.258 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:30:35.907 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:30:35.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:30:35.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:30:36.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:37.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:37.042 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:37.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:37.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:37.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3761.5756ms +2017-07-19 15:30:37.119 +05:30 [Information] Request finished in 3819.0924ms 200 application/json; charset=utf-8 +2017-07-19 15:30:37.120 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" completed keep alive response. +2017-07-19 15:30:37.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:37.935 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:37.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:37.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:37.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:37.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:37.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3688.5375ms +2017-07-19 15:30:38.055 +05:30 [Information] Request finished in 3786.9088ms 200 application/json; charset=utf-8 +2017-07-19 15:30:38.056 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" completed keep alive response. +2017-07-19 15:30:38.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:38.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:38.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:38.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:38.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:30:38.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:38.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4927.0645ms +2017-07-19 15:30:38.312 +05:30 [Information] Request finished in 5001.8926ms 200 application/json; charset=utf-8 +2017-07-19 15:30:38.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:38.326 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" completed keep alive response. +2017-07-19 15:30:38.326 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:38.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:38.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:38.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4097.1225ms +2017-07-19 15:30:38.378 +05:30 [Information] Request finished in 4118.1496ms 200 application/json; charset=utf-8 +2017-07-19 15:30:38.402 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" completed keep alive response. +2017-07-19 15:30:38.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:38.407 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:30:38.408 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:38.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:38.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4153.855ms +2017-07-19 15:30:38.437 +05:30 [Information] Request finished in 4198.0628ms 200 application/json; charset=utf-8 +2017-07-19 15:30:38.438 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" completed keep alive response. +2017-07-19 15:30:39.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:30:39.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:39.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:39.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:39.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3257.6988ms +2017-07-19 15:30:39.171 +05:30 [Information] Request finished in 3268.9414ms 200 application/json; charset=utf-8 +2017-07-19 15:30:39.171 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" completed keep alive response. +2017-07-19 15:30:39.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:30:39.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:30:39.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:30:41.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:30:41.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:30:41.369 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:30:41.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:30:41.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2184.5657ms +2017-07-19 15:30:41.378 +05:30 [Information] Request finished in 2195.1316ms 200 application/json; charset=utf-8 +2017-07-19 15:30:41.378 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" completed keep alive response. +2017-07-19 15:32:36.949 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" received FIN. +2017-07-19 15:32:36.951 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" received FIN. +2017-07-19 15:32:36.953 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" received FIN. +2017-07-19 15:32:36.955 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" disconnecting. +2017-07-19 15:32:36.963 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" sending FIN. +2017-07-19 15:32:36.955 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" started. +2017-07-19 15:32:36.965 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" sent FIN with status "0". +2017-07-19 15:32:36.973 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" received FIN. +2017-07-19 15:32:36.975 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" received FIN. +2017-07-19 15:32:36.975 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" received FIN. +2017-07-19 15:32:36.975 +05:30 [Debug] Connection id ""0HL6EHH0KD8JQ"" stopped. +2017-07-19 15:32:36.973 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" disconnecting. +2017-07-19 15:32:36.978 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" disconnecting. +2017-07-19 15:32:36.955 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" disconnecting. +2017-07-19 15:32:36.978 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" sending FIN. +2017-07-19 15:32:36.978 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" disconnecting. +2017-07-19 15:32:36.975 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" disconnecting. +2017-07-19 15:32:36.979 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" sending FIN. +2017-07-19 15:32:36.985 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:32:36.991 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" sending FIN. +2017-07-19 15:32:36.991 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" sending FIN. +2017-07-19 15:32:36.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:32:36.989 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" sending FIN. +2017-07-19 15:32:36.995 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" sent FIN with status "0". +2017-07-19 15:32:36.993 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" sent FIN with status "0". +2017-07-19 15:32:36.995 +05:30 [Debug] Connection id ""0HL6EHH0KD8JO"" stopped. +2017-07-19 15:32:36.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:32:36.998 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" sent FIN with status "0". +2017-07-19 15:32:36.996 +05:30 [Debug] Connection id ""0HL6EHH0KD8JR"" stopped. +2017-07-19 15:32:37.000 +05:30 [Debug] Connection id ""0HL6EHH0KD8JS"" stopped. +2017-07-19 15:32:37.000 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" sent FIN with status "0". +2017-07-19 15:32:37.001 +05:30 [Debug] Connection id ""0HL6EHH0KD8JP"" stopped. +2017-07-19 15:32:37.001 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" sent FIN with status "0". +2017-07-19 15:32:37.002 +05:30 [Debug] Connection id ""0HL6EHH0KD8JN"" stopped. +2017-07-19 15:32:39.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cdd263ddae69"]) - ModelState is Valid +2017-07-19 15:32:39.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:32:39.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:32:39.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:32:39.139 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2139.7051ms +2017-07-19 15:32:39.142 +05:30 [Information] Request finished in 2162.2849ms 200 application/json; charset=utf-8 +2017-07-19 15:32:39.143 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:04.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 15:33:04.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 15:33:04.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 15:33:07.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:33:07.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:07.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:07.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:07.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3230.0971ms +2017-07-19 15:33:07.947 +05:30 [Information] Request finished in 3236.9968ms 200 application/json; charset=utf-8 +2017-07-19 15:33:07.947 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:08.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:33:08.023 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:33:08.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:33:11.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:11.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:11.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:11.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:11.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3145.6602ms +2017-07-19 15:33:11.176 +05:30 [Information] Request finished in 3154.0146ms 200 application/json; charset=utf-8 +2017-07-19 15:33:11.176 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:11.185 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:33:11.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:33:11.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:33:14.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:14.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:14.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:14.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:14.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3130.5535ms +2017-07-19 15:33:14.322 +05:30 [Information] Request finished in 3140.501ms 200 application/json; charset=utf-8 +2017-07-19 15:33:14.323 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:18.634 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" started. +2017-07-19 15:33:18.657 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:33:18.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:33:18.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:33:18.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:33:18.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:33:18.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:33:19.412 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" started. +2017-07-19 15:33:19.425 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" started. +2017-07-19 15:33:19.428 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" started. +2017-07-19 15:33:19.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:33:19.453 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:33:19.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:33:19.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:33:19.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:33:19.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:33:19.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:33:19.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:33:19.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:33:19.930 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" started. +2017-07-19 15:33:19.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-19 15:33:19.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:33:19.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:33:20.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:21.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:21.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:21.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:21.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:21.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2588.6764ms +2017-07-19 15:33:21.263 +05:30 [Information] Request finished in 2620.0453ms 200 application/json; charset=utf-8 +2017-07-19 15:33:21.264 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:21.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:21.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:21.766 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:21.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:21.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:21.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2280.4928ms +2017-07-19 15:33:21.775 +05:30 [Information] Request finished in 2331.1778ms 200 application/json; charset=utf-8 +2017-07-19 15:33:21.776 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" completed keep alive response. +2017-07-19 15:33:21.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:21.912 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:21.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:21.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:21.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:21.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3248.4837ms +2017-07-19 15:33:21.918 +05:30 [Information] Request finished in 3282.0634ms 200 application/json; charset=utf-8 +2017-07-19 15:33:21.919 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:33:22.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:22.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:22.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:22.925 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:22.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:22.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:22.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3467.8044ms +2017-07-19 15:33:22.935 +05:30 [Information] Request finished in 3506.5994ms 200 application/json; charset=utf-8 +2017-07-19 15:33:22.936 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" completed keep alive response. +2017-07-19 15:33:23.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:33:23.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:23.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:23.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:23.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3511.8666ms +2017-07-19 15:33:23.454 +05:30 [Information] Request finished in 3522.2225ms 200 application/json; charset=utf-8 +2017-07-19 15:33:23.455 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:33:24.376 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:24.378 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:24.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:24.379 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:24.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4920.1612ms +2017-07-19 15:33:24.383 +05:30 [Information] Request finished in 4955.1353ms 200 application/json; charset=utf-8 +2017-07-19 15:33:24.385 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" completed keep alive response. +2017-07-19 15:33:35.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:33:35.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:33:35.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:33:36.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:33:36.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:33:36.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:33:38.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:33:38.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:38.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:38.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:39.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3063.077ms +2017-07-19 15:33:39.005 +05:30 [Information] Request finished in 3078.1208ms 200 application/json; charset=utf-8 +2017-07-19 15:33:39.005 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:39.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 15:33:39.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 15:33:39.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 15:33:39.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:33:39.583 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:39.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:39.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:39.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3068.4028ms +2017-07-19 15:33:39.593 +05:30 [Information] Request finished in 3080.33ms 200 application/json; charset=utf-8 +2017-07-19 15:33:39.593 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" completed keep alive response. +2017-07-19 15:33:39.639 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:33:39.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:33:39.640 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:33:41.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:33:41.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:41.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:41.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:41.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2112.6099ms +2017-07-19 15:33:41.757 +05:30 [Information] Request finished in 2117.9923ms 200 application/json; charset=utf-8 +2017-07-19 15:33:41.757 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" completed keep alive response. +2017-07-19 15:33:41.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:33:41.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:33:41.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:33:41.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:33:41.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:33:41.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:33:42.057 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["54", "8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:33:42.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 15:33:42.094 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 15:33:42.095 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3070.7702ms +2017-07-19 15:33:42.097 +05:30 [Information] Request finished in 3079.1037ms 200 +2017-07-19 15:33:42.098 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:33:44.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8bbd31aa56"]) - ModelState is Valid +2017-07-19 15:33:44.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:44.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:44.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:44.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:44.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3141.6421ms +2017-07-19 15:33:44.918 +05:30 [Information] Request finished in 3152.0455ms 200 application/json; charset=utf-8 +2017-07-19 15:33:44.918 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:33:44.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:44.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:44.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:44.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3200.8044ms +2017-07-19 15:33:44.977 +05:30 [Information] Request finished in 3209.7311ms 200 application/json; charset=utf-8 +2017-07-19 15:33:44.977 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" completed keep alive response. +2017-07-19 15:33:44.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:33:44.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:33:44.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:33:48.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:48.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:48.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:48.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:48.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3104.1231ms +2017-07-19 15:33:48.093 +05:30 [Information] Request finished in 3110.0197ms 200 application/json; charset=utf-8 +2017-07-19 15:33:48.093 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:33:49.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:33:49.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:33:49.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:33:49.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:33:49.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:33:49.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:33:50.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:33:50.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:33:50.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:33:50.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:33:50.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:33:50.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:33:52.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:33:52.006 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:33:52.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:33:53.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:53.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:53.653 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:53.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:53.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:53.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4002.6855ms +2017-07-19 15:33:53.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:53.668 +05:30 [Information] Request finished in 4020.2911ms 200 application/json; charset=utf-8 +2017-07-19 15:33:53.669 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" completed keep alive response. +2017-07-19 15:33:53.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:53.733 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:53.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:53.736 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:53.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4076.9654ms +2017-07-19 15:33:53.740 +05:30 [Information] Request finished in 4086.3689ms 200 application/json; charset=utf-8 +2017-07-19 15:33:53.741 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" completed keep alive response. +2017-07-19 15:33:54.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:54.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:54.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:54.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:54.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:54.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:54.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3932.8426ms +2017-07-19 15:33:54.777 +05:30 [Information] Request finished in 3939.4105ms 200 application/json; charset=utf-8 +2017-07-19 15:33:54.777 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:33:55.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:33:55.263 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:55.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:55.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:55.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:55.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3257.3264ms +2017-07-19 15:33:55.269 +05:30 [Information] Request finished in 3264.9719ms 200 application/json; charset=utf-8 +2017-07-19 15:33:55.270 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:33:55.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:33:55.451 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:33:55.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:33:55.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:33:55.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4611.9802ms +2017-07-19 15:33:55.460 +05:30 [Information] Request finished in 4622.6497ms 200 application/json; charset=utf-8 +2017-07-19 15:33:55.461 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" completed keep alive response. +2017-07-19 15:34:15.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 15:34:15.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 15:34:15.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 15:34:15.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 15:34:15.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 15:34:15.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 15:34:15.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 15:34:15.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 15:34:15.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 15:34:18.215 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:34:18.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:34:18.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:34:18.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:34:18.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:34:18.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:34:18.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:34:18.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:34:18.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3340.7611ms +2017-07-19 15:34:18.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:34:18.500 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:34:18.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:34:18.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:34:18.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:34:18.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:34:18.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:34:18.535 +05:30 [Information] Request finished in 3404.6393ms 200 application/json; charset=utf-8 +2017-07-19 15:34:18.536 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" completed keep alive response. +2017-07-19 15:34:18.536 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3399.9733ms +2017-07-19 15:34:18.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3403.2701ms +2017-07-19 15:34:18.577 +05:30 [Information] Request finished in 3476.0919ms 200 application/json; charset=utf-8 +2017-07-19 15:34:18.577 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" completed keep alive response. +2017-07-19 15:34:18.589 +05:30 [Information] Request finished in 3487.5556ms 200 application/json; charset=utf-8 +2017-07-19 15:34:18.605 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" completed keep alive response. +2017-07-19 15:34:38.909 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession?sessionId=55&systemId=8d4ce8d64222794 0 +2017-07-19 15:34:38.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 15:34:38.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 15:34:41.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["55", "8d4ce8d64222794"]) - ModelState is Valid +2017-07-19 15:34:41.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 15:34:41.063 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 15:34:41.064 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 2152.649ms +2017-07-19 15:34:41.067 +05:30 [Information] Request finished in 2158.2403ms 200 +2017-07-19 15:34:41.068 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:34:41.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 15:34:41.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 15:34:41.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 15:34:43.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:34:43.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:34:43.261 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:34:43.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:34:43.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:34:43.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 2136.3567ms +2017-07-19 15:34:43.269 +05:30 [Information] Request finished in 2179.917ms 200 application/json; charset=utf-8 +2017-07-19 15:34:43.270 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:35:20.228 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" received FIN. +2017-07-19 15:35:20.251 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" disconnecting. +2017-07-19 15:35:20.251 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" sending FIN. +2017-07-19 15:35:20.252 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" sent FIN with status "0". +2017-07-19 15:35:20.254 +05:30 [Debug] Connection id ""0HL6EHH0KD8K0"" stopped. +2017-07-19 15:35:28.452 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" received FIN. +2017-07-19 15:35:28.453 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" received FIN. +2017-07-19 15:35:28.453 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" received FIN. +2017-07-19 15:35:28.453 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" disconnecting. +2017-07-19 15:35:28.453 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" disconnecting. +2017-07-19 15:35:28.454 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" sending FIN. +2017-07-19 15:35:28.455 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" sending FIN. +2017-07-19 15:35:28.458 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:35:28.459 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" sent FIN with status "0". +2017-07-19 15:35:28.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:35:28.454 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" disconnecting. +2017-07-19 15:35:28.460 +05:30 [Debug] Connection id ""0HL6EHH0KD8JV"" stopped. +2017-07-19 15:35:28.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:35:28.461 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" sent FIN with status "0". +2017-07-19 15:35:28.463 +05:30 [Debug] Connection id ""0HL6EHH0KD8K1"" stopped. +2017-07-19 15:35:28.463 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" sending FIN. +2017-07-19 15:35:28.464 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" sent FIN with status "0". +2017-07-19 15:35:28.464 +05:30 [Debug] Connection id ""0HL6EHH0KD8JT"" stopped. +2017-07-19 15:35:31.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:35:31.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:31.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:31.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:31.545 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3074.3705ms +2017-07-19 15:35:31.549 +05:30 [Information] Request finished in 3096.6166ms 200 application/json; charset=utf-8 +2017-07-19 15:35:31.550 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:35:39.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:35:39.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:35:39.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:35:42.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:35:42.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:42.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:42.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:42.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3081.005ms +2017-07-19 15:35:42.862 +05:30 [Information] Request finished in 3096.9291ms 200 application/json; charset=utf-8 +2017-07-19 15:35:42.863 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:35:42.892 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:35:42.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:35:42.894 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:35:42.895 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:35:42.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:35:42.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:35:45.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8d64222794"]) - ModelState is Valid +2017-07-19 15:35:45.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:46.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:46.044 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:46.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:46.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:46.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3182.3218ms +2017-07-19 15:35:46.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:46.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:46.087 +05:30 [Information] Request finished in 3203.5317ms 200 application/json; charset=utf-8 +2017-07-19 15:35:46.088 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:35:46.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3189.4701ms +2017-07-19 15:35:46.105 +05:30 [Information] Request finished in 3209.0985ms 200 application/json; charset=utf-8 +2017-07-19 15:35:46.105 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:35:46.148 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:35:46.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:35:46.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:35:49.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:49.261 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:49.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:49.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:49.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.8522ms +2017-07-19 15:35:49.267 +05:30 [Information] Request finished in 3119.6884ms 200 application/json; charset=utf-8 +2017-07-19 15:35:49.268 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:35:50.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:35:50.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:35:50.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:35:50.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:35:50.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:35:50.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:35:51.674 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" started. +2017-07-19 15:35:51.677 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" started. +2017-07-19 15:35:51.684 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" started. +2017-07-19 15:35:51.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:35:51.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:35:51.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:35:51.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:35:51.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:35:51.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:35:51.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:35:51.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:35:51.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:35:55.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:58.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:58.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:58.069 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:35:58.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:58.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:58.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:58.230 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7204.8715ms +2017-07-19 15:35:58.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:58.297 +05:30 [Information] Request finished in 7273.6574ms 200 application/json; charset=utf-8 +2017-07-19 15:35:58.297 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:35:58.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:58.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:58.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:35:58.320 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:35:58.321 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:35:58.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:58.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:58.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:58.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:58.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6630.3993ms +2017-07-19 15:35:58.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7395.8854ms +2017-07-19 15:35:58.393 +05:30 [Information] Request finished in 6686.9527ms 200 application/json; charset=utf-8 +2017-07-19 15:35:58.394 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" completed keep alive response. +2017-07-19 15:35:58.441 +05:30 [Information] Request finished in 7445.7699ms 200 application/json; charset=utf-8 +2017-07-19 15:35:58.442 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" completed keep alive response. +2017-07-19 15:35:58.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:58.534 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:35:58.535 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:58.536 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:58.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6824.0262ms +2017-07-19 15:35:58.541 +05:30 [Information] Request finished in 6850.9751ms 200 application/json; charset=utf-8 +2017-07-19 15:35:58.542 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" completed keep alive response. +2017-07-19 15:35:59.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:35:59.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:35:59.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:35:59.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:35:59.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8042.1489ms +2017-07-19 15:35:59.763 +05:30 [Information] Request finished in 8072.1584ms 200 application/json; charset=utf-8 +2017-07-19 15:35:59.764 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" completed keep alive response. +2017-07-19 15:36:40.054 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:36:40.055 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:36:40.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:36:43.132 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8d64222794"]) - ModelState is Valid +2017-07-19 15:36:43.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:36:43.137 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:36:43.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:36:43.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3083.4582ms +2017-07-19 15:36:43.149 +05:30 [Information] Request finished in 3094.475ms 200 application/json; charset=utf-8 +2017-07-19 15:36:43.151 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" completed keep alive response. +2017-07-19 15:37:15.182 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" received FIN. +2017-07-19 15:37:15.182 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" received FIN. +2017-07-19 15:37:15.182 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" received FIN. +2017-07-19 15:37:15.184 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" received FIN. +2017-07-19 15:37:15.183 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" disconnecting. +2017-07-19 15:37:15.183 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" disconnecting. +2017-07-19 15:37:15.186 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" disconnecting. +2017-07-19 15:37:15.185 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" sending FIN. +2017-07-19 15:37:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" sending FIN. +2017-07-19 15:37:15.187 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" disconnecting. +2017-07-19 15:37:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" sent FIN with status "0". +2017-07-19 15:37:15.190 +05:30 [Debug] Connection id ""0HL6EHH0KD8K3"" stopped. +2017-07-19 15:37:15.191 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" sent FIN with status "0". +2017-07-19 15:37:15.191 +05:30 [Debug] Connection id ""0HL6EHH0KD8K2"" stopped. +2017-07-19 15:37:15.187 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" sending FIN. +2017-07-19 15:37:15.194 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" sending FIN. +2017-07-19 15:37:15.194 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" sent FIN with status "0". +2017-07-19 15:37:15.196 +05:30 [Debug] Connection id ""0HL6EHH0KD8K5"" stopped. +2017-07-19 15:37:15.197 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" sent FIN with status "0". +2017-07-19 15:37:15.197 +05:30 [Debug] Connection id ""0HL6EHH0KD8K4"" stopped. +2017-07-19 15:38:16.490 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" received FIN. +2017-07-19 15:38:16.491 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" disconnecting. +2017-07-19 15:38:16.491 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" started. +2017-07-19 15:38:16.496 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" sending FIN. +2017-07-19 15:38:16.497 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" sent FIN with status "0". +2017-07-19 15:38:16.498 +05:30 [Debug] Connection id ""0HL6EHH0KD8JU"" stopped. +2017-07-19 15:38:16.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 15:38:16.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 15:38:16.501 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 15:38:18.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:38:18.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:18.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:18.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:18.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2309.7098ms +2017-07-19 15:38:18.818 +05:30 [Information] Request finished in 2319.1467ms 200 application/json; charset=utf-8 +2017-07-19 15:38:18.819 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:38:18.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:38:18.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:38:18.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:38:21.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:21.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:21.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:21.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:21.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3122.6587ms +2017-07-19 15:38:22.002 +05:30 [Information] Request finished in 3127.9093ms 200 application/json; charset=utf-8 +2017-07-19 15:38:22.002 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:38:22.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:38:22.011 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:38:22.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:38:25.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:25.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:25.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:25.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:25.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.3365ms +2017-07-19 15:38:25.140 +05:30 [Information] Request finished in 3131.0117ms 200 application/json; charset=utf-8 +2017-07-19 15:38:25.141 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:38:27.159 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" started. +2017-07-19 15:38:27.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:38:27.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:38:27.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:38:27.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:38:27.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:38:27.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:38:28.017 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" started. +2017-07-19 15:38:28.027 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" started. +2017-07-19 15:38:28.030 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" started. +2017-07-19 15:38:28.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:38:28.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:38:28.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:38:28.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:38:28.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:38:28.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:38:28.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:38:28.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:38:28.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:38:28.817 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" started. +2017-07-19 15:38:28.865 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-19 15:38:28.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:38:28.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:38:30.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:30.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:30.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:38:30.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:30.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:30.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2294.6514ms +2017-07-19 15:38:30.483 +05:30 [Information] Request finished in 2439.7399ms 200 application/json; charset=utf-8 +2017-07-19 15:38:30.485 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" completed keep alive response. +2017-07-19 15:38:30.703 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:30.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:30.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:30.769 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:38:30.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:30.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:30.772 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:38:30.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:30.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:30.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3530.8328ms +2017-07-19 15:38:30.799 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:30.803 +05:30 [Information] Request finished in 3609.9171ms 200 application/json; charset=utf-8 +2017-07-19 15:38:30.805 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3561.3598ms +2017-07-19 15:38:30.805 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" completed keep alive response. +2017-07-19 15:38:30.813 +05:30 [Information] Request finished in 3652.9426ms 200 application/json; charset=utf-8 +2017-07-19 15:38:30.814 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:38:31.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:38:31.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:31.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:31.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:31.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2181.609ms +2017-07-19 15:38:31.065 +05:30 [Information] Request finished in 2244.74ms 200 application/json; charset=utf-8 +2017-07-19 15:38:31.065 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" completed keep alive response. +2017-07-19 15:38:31.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:31.488 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:31.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:31.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:38:31.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:31.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:31.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3382.1201ms +2017-07-19 15:38:31.563 +05:30 [Information] Request finished in 3532.1935ms 200 application/json; charset=utf-8 +2017-07-19 15:38:31.564 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" completed keep alive response. +2017-07-19 15:38:33.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:33.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:38:33.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:33.288 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:33.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5067.0881ms +2017-07-19 15:38:33.295 +05:30 [Information] Request finished in 5160.2035ms 200 application/json; charset=utf-8 +2017-07-19 15:38:33.295 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" completed keep alive response. +2017-07-19 15:38:51.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:38:51.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:38:51.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:38:54.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:38:54.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:54.534 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:54.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:54.538 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.428ms +2017-07-19 15:38:54.540 +05:30 [Information] Request finished in 3066.0039ms 200 application/json; charset=utf-8 +2017-07-19 15:38:54.540 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" completed keep alive response. +2017-07-19 15:38:54.556 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:38:54.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:38:54.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:38:54.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:38:54.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:38:54.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:38:56.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8e1b9e4b0c"]) - ModelState is Valid +2017-07-19 15:38:56.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:56.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:56.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:56.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2105.2544ms +2017-07-19 15:38:56.685 +05:30 [Information] Request finished in 2134.3531ms 200 application/json; charset=utf-8 +2017-07-19 15:38:56.685 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:38:57.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:38:57.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:38:57.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:38:57.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:38:57.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3119.2405ms +2017-07-19 15:38:57.693 +05:30 [Information] Request finished in 3141.2525ms 200 application/json; charset=utf-8 +2017-07-19 15:38:57.694 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" completed keep alive response. +2017-07-19 15:38:57.714 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:38:57.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:38:57.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:39:00.755 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:00.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:00.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:00.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:00.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3099.4694ms +2017-07-19 15:39:00.818 +05:30 [Information] Request finished in 3103.6765ms 200 application/json; charset=utf-8 +2017-07-19 15:39:00.818 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" completed keep alive response. +2017-07-19 15:39:03.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:39:03.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:39:03.421 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:39:03.449 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:39:03.449 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:39:03.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:39:04.311 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:39:04.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:39:04.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:39:04.319 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:39:04.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:39:04.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:39:04.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:39:04.367 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:39:04.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:39:05.293 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:39:05.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:39:05.295 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:39:06.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:06.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:06.762 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:06.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:39:06.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:06.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:06.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3364.4046ms +2017-07-19 15:39:06.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:06.826 +05:30 [Information] Request finished in 3409.4973ms 200 application/json; charset=utf-8 +2017-07-19 15:39:06.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:39:06.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:06.828 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" completed keep alive response. +2017-07-19 15:39:06.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:06.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3387.2201ms +2017-07-19 15:39:06.866 +05:30 [Information] Request finished in 3433.0207ms 200 application/json; charset=utf-8 +2017-07-19 15:39:06.868 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" completed keep alive response. +2017-07-19 15:39:07.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:07.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:07.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:39:07.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:07.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:39:07.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:07.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:07.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:07.967 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:39:07.969 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:07.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:07.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3613.3552ms +2017-07-19 15:39:07.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3601.3045ms +2017-07-19 15:39:07.981 +05:30 [Information] Request finished in 3677.8174ms 200 application/json; charset=utf-8 +2017-07-19 15:39:07.982 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" completed keep alive response. +2017-07-19 15:39:07.993 +05:30 [Information] Request finished in 3695.0373ms 200 application/json; charset=utf-8 +2017-07-19 15:39:07.995 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" completed keep alive response. +2017-07-19 15:39:08.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:08.316 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:39:08.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:08.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:08.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3995.9871ms +2017-07-19 15:39:08.331 +05:30 [Information] Request finished in 4043.9426ms 200 application/json; charset=utf-8 +2017-07-19 15:39:08.332 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" completed keep alive response. +2017-07-19 15:39:08.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:39:08.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:08.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:08.410 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:08.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3110.9722ms +2017-07-19 15:39:08.414 +05:30 [Information] Request finished in 3122.2985ms 200 application/json; charset=utf-8 +2017-07-19 15:39:08.415 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" completed keep alive response. +2017-07-19 15:39:08.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 59 +2017-07-19 15:39:08.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:39:08.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:39:11.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Firefox on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:39:11.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:39:11.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:39:11.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:39:11.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3135.6026ms +2017-07-19 15:39:11.563 +05:30 [Information] Request finished in 3141.0926ms 200 application/json; charset=utf-8 +2017-07-19 15:39:11.563 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" completed keep alive response. +2017-07-19 15:41:15.183 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" received FIN. +2017-07-19 15:41:15.184 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" received FIN. +2017-07-19 15:41:15.184 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" disconnecting. +2017-07-19 15:41:15.186 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" disconnecting. +2017-07-19 15:41:15.183 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" received FIN. +2017-07-19 15:41:15.187 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" received FIN. +2017-07-19 15:41:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" received FIN. +2017-07-19 15:41:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" disconnecting. +2017-07-19 15:41:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" disconnecting. +2017-07-19 15:41:15.190 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" disconnecting. +2017-07-19 15:41:15.188 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" sending FIN. +2017-07-19 15:41:15.191 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" sending FIN. +2017-07-19 15:41:15.191 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" sending FIN. +2017-07-19 15:41:15.192 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" sent FIN with status "0". +2017-07-19 15:41:15.192 +05:30 [Debug] Connection id ""0HL6EHH0KD8KB"" stopped. +2017-07-19 15:41:15.192 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" sent FIN with status "0". +2017-07-19 15:41:15.193 +05:30 [Debug] Connection id ""0HL6EHH0KD8K7"" stopped. +2017-07-19 15:41:15.193 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" sent FIN with status "0". +2017-07-19 15:41:15.193 +05:30 [Debug] Connection id ""0HL6EHH0KD8KA"" stopped. +2017-07-19 15:41:15.185 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" received FIN. +2017-07-19 15:41:15.195 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" sending FIN. +2017-07-19 15:41:15.196 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" sending FIN. +2017-07-19 15:41:15.198 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" sent FIN with status "0". +2017-07-19 15:41:15.199 +05:30 [Debug] Connection id ""0HL6EHH0KD8K8"" stopped. +2017-07-19 15:41:15.199 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" sent FIN with status "0". +2017-07-19 15:41:15.200 +05:30 [Debug] Connection id ""0HL6EHH0KD8K6"" stopped. +2017-07-19 15:41:15.207 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" disconnecting. +2017-07-19 15:41:15.207 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" sending FIN. +2017-07-19 15:41:15.208 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" sent FIN with status "0". +2017-07-19 15:41:15.208 +05:30 [Debug] Connection id ""0HL6EHH0KD8K9"" stopped. +2017-07-19 15:42:40.106 +05:30 [Debug] Hosting starting +2017-07-19 15:42:40.267 +05:30 [Debug] Hosting started +2017-07-19 15:42:40.526 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" started. +2017-07-19 15:42:40.528 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" started. +2017-07-19 15:42:40.776 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 15:42:40.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 15:42:40.871 +05:30 [Information] Request finished in 115.2982ms 200 +2017-07-19 15:42:40.946 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:42:41.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 15:42:41.615 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"aaf3df75-b251-48bb-918e-1d75e41e0fd6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 15:42:41.874 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 15:42:42.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 15:42:42.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 15:42:44.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:42:44.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:42:44.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:42:44.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 2906.5413ms +2017-07-19 15:42:45.018 +05:30 [Information] Request finished in 4218.7284ms 200 application/json; charset=utf-8 +2017-07-19 15:42:45.021 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" completed keep alive response. +2017-07-19 15:43:06.342 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 15:43:06.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 15:43:06.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 15:43:09.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:43:14.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:14.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:14.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:14.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8500.3777ms +2017-07-19 15:43:14.861 +05:30 [Information] Request finished in 8517.9429ms 200 application/json; charset=utf-8 +2017-07-19 15:43:14.861 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:43:15.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:43:15.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:43:15.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:43:18.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:18.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:18.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:18.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:18.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3239.8466ms +2017-07-19 15:43:18.490 +05:30 [Information] Request finished in 3248.1774ms 200 application/json; charset=utf-8 +2017-07-19 15:43:18.491 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" completed keep alive response. +2017-07-19 15:43:18.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:43:18.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:43:18.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:43:21.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:21.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:21.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:21.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:21.736 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.4405ms +2017-07-19 15:43:21.739 +05:30 [Information] Request finished in 3136.7798ms 200 application/json; charset=utf-8 +2017-07-19 15:43:21.740 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:43:24.399 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:43:24.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:43:24.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:43:24.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:43:24.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:43:24.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:43:24.853 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" started. +2017-07-19 15:43:24.853 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" started. +2017-07-19 15:43:24.856 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" started. +2017-07-19 15:43:24.859 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:43:24.861 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:43:24.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:43:24.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:43:24.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:43:24.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:43:25.621 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" started. +2017-07-19 15:43:26.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:43:26.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:43:26.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:43:27.178 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:43:27.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:43:27.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:43:29.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:29.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:29.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:29.325 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:29.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:29.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:29.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4930.5132ms +2017-07-19 15:43:29.339 +05:30 [Information] Request finished in 4940.4944ms 200 application/json; charset=utf-8 +2017-07-19 15:43:29.340 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:43:29.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:29.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:29.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:29.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:29.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4958.5668ms +2017-07-19 15:43:29.378 +05:30 [Information] Request finished in 4979.243ms 200 application/json; charset=utf-8 +2017-07-19 15:43:29.378 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" completed keep alive response. +2017-07-19 15:43:30.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:30.467 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:30.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:43:30.528 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:30.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:30.818 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:30.819 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:30.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:30.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:30.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:30.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:30.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4654.5125ms +2017-07-19 15:43:30.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3731.5677ms +2017-07-19 15:43:31.054 +05:30 [Information] Request finished in 4792.4157ms 200 application/json; charset=utf-8 +2017-07-19 15:43:31.055 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" completed keep alive response. +2017-07-19 15:43:31.090 +05:30 [Information] Request finished in 3876.542ms 200 application/json; charset=utf-8 +2017-07-19 15:43:31.091 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" completed keep alive response. +2017-07-19 15:43:31.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:31.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:31.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:31.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:31.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6388.4921ms +2017-07-19 15:43:31.263 +05:30 [Information] Request finished in 6401.2095ms 200 application/json; charset=utf-8 +2017-07-19 15:43:31.264 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" completed keep alive response. +2017-07-19 15:43:32.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:32.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:32.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:32.827 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:32.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7955.9166ms +2017-07-19 15:43:32.835 +05:30 [Information] Request finished in 7977.4609ms 200 application/json; charset=utf-8 +2017-07-19 15:43:32.836 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" completed keep alive response. +2017-07-19 15:43:40.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:43:40.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:43:40.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:43:43.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:43:43.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:43.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:43.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:43.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3060.9079ms +2017-07-19 15:43:43.750 +05:30 [Information] Request finished in 3068.8186ms 200 application/json; charset=utf-8 +2017-07-19 15:43:43.750 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:43:43.753 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:43:43.754 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:43:43.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:43:46.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:43:46.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:46.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:46.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:46.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.9744ms +2017-07-19 15:43:46.820 +05:30 [Information] Request finished in 3067.797ms 200 application/json; charset=utf-8 +2017-07-19 15:43:46.821 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" completed keep alive response. +2017-07-19 15:43:46.828 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:43:46.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:43:46.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:43:46.835 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:43:46.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:43:46.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:43:49.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:49.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:43:49.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:49.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:49.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:49.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:49.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:49.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3137.1132ms +2017-07-19 15:43:49.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:49.981 +05:30 [Information] Request finished in 3144.9898ms 200 application/json; charset=utf-8 +2017-07-19 15:43:49.983 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" completed keep alive response. +2017-07-19 15:43:49.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3149.0212ms +2017-07-19 15:43:50.001 +05:30 [Information] Request finished in 3172.5657ms 200 application/json; charset=utf-8 +2017-07-19 15:43:50.003 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" completed keep alive response. +2017-07-19 15:43:50.005 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:43:50.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:43:50.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:43:53.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:53.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:53.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:53.098 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:53.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3089.169ms +2017-07-19 15:43:53.104 +05:30 [Information] Request finished in 3102.5661ms 200 application/json; charset=utf-8 +2017-07-19 15:43:53.104 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" completed keep alive response. +2017-07-19 15:43:55.481 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:43:55.482 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:43:55.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:43:55.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:43:55.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:43:55.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:43:56.337 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:43:56.342 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:43:56.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:43:56.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:43:56.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:43:56.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:43:56.387 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:43:56.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:43:56.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:43:57.564 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:57.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:57.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:57.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:57.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:57.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:43:57.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:43:57.948 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:43:57.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:58.001 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:58.002 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:58.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:58.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:58.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2529.4433ms +2017-07-19 15:43:58.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2601.2104ms +2017-07-19 15:43:58.251 +05:30 [Information] Request finished in 2715.6757ms 200 application/json; charset=utf-8 +2017-07-19 15:43:58.256 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" completed keep alive response. +2017-07-19 15:43:58.346 +05:30 [Information] Request finished in 2747.71ms 200 application/json; charset=utf-8 +2017-07-19 15:43:58.347 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:43:59.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:43:59.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:43:59.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:43:59.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:43:59.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:43:59.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3357.1901ms +2017-07-19 15:43:59.706 +05:30 [Information] Request finished in 3372.7037ms 200 application/json; charset=utf-8 +2017-07-19 15:43:59.707 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" completed keep alive response. +2017-07-19 15:44:00.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:44:00.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:44:00.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:44:00.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:44:00.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:44:00.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:44:00.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2532.7722ms +2017-07-19 15:44:00.565 +05:30 [Information] Request finished in 2805.5824ms 200 application/json; charset=utf-8 +2017-07-19 15:44:00.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:44:00.565 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" completed keep alive response. +2017-07-19 15:44:00.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:44:00.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:44:00.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:44:00.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:44:00.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:44:00.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:44:00.592 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4213.0461ms +2017-07-19 15:44:00.600 +05:30 [Information] Request finished in 4263.5758ms 200 application/json; charset=utf-8 +2017-07-19 15:44:00.601 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" completed keep alive response. +2017-07-19 15:44:01.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:44:01.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:44:01.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:44:01.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:44:01.183 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4770.41ms +2017-07-19 15:44:01.188 +05:30 [Information] Request finished in 4854.2225ms 200 application/json; charset=utf-8 +2017-07-19 15:44:01.205 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" completed keep alive response. +2017-07-19 15:44:02.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:44:02.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:44:02.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:44:02.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:44:02.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2110.3534ms +2017-07-19 15:44:02.708 +05:30 [Information] Request finished in 2138.893ms 200 application/json; charset=utf-8 +2017-07-19 15:44:02.709 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" completed keep alive response. +2017-07-19 15:44:02.721 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:44:02.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:44:02.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:44:04.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:44:04.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:44:04.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:44:04.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:44:04.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2180.2129ms +2017-07-19 15:44:04.912 +05:30 [Information] Request finished in 2190.6487ms 200 application/json; charset=utf-8 +2017-07-19 15:44:04.913 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" completed keep alive response. +2017-07-19 15:46:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" received FIN. +2017-07-19 15:46:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" received FIN. +2017-07-19 15:46:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" received FIN. +2017-07-19 15:46:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" disconnecting. +2017-07-19 15:46:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" received FIN. +2017-07-19 15:46:40.500 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" disconnecting. +2017-07-19 15:46:40.507 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" received FIN. +2017-07-19 15:46:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" disconnecting. +2017-07-19 15:46:40.505 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" sending FIN. +2017-07-19 15:46:40.512 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" disconnecting. +2017-07-19 15:46:40.508 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" disconnecting. +2017-07-19 15:46:40.510 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" received FIN. +2017-07-19 15:46:40.514 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" disconnecting. +2017-07-19 15:46:40.514 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" sending FIN. +2017-07-19 15:46:40.514 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" sending FIN. +2017-07-19 15:46:40.514 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" sending FIN. +2017-07-19 15:46:40.515 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" sending FIN. +2017-07-19 15:46:40.515 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" sending FIN. +2017-07-19 15:46:40.520 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" sent FIN with status "0". +2017-07-19 15:46:40.520 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" sent FIN with status "0". +2017-07-19 15:46:40.522 +05:30 [Debug] Connection id ""0HL6EHQO57IMV"" stopped. +2017-07-19 15:46:40.522 +05:30 [Debug] Connection id ""0HL6EHQO57IMT"" stopped. +2017-07-19 15:46:40.522 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" sent FIN with status "0". +2017-07-19 15:46:40.523 +05:30 [Debug] Connection id ""0HL6EHQO57IMS"" stopped. +2017-07-19 15:46:40.523 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" sent FIN with status "0". +2017-07-19 15:46:40.524 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" sent FIN with status "0". +2017-07-19 15:46:40.524 +05:30 [Debug] Connection id ""0HL6EHQO57IMR"" stopped. +2017-07-19 15:46:40.525 +05:30 [Debug] Connection id ""0HL6EHQO57IMU"" stopped. +2017-07-19 15:46:40.525 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" sent FIN with status "0". +2017-07-19 15:46:40.527 +05:30 [Debug] Connection id ""0HL6EHQO57IN0"" stopped. +2017-07-19 15:50:36.079 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" started. +2017-07-19 15:50:36.096 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:50:36.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:50:36.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:50:40.167 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" started. +2017-07-19 15:50:40.297 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:50:40.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:50:40.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:50:41.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:50:41.611 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:41.611 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:41.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:41.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5518.5663ms +2017-07-19 15:50:41.623 +05:30 [Information] Request finished in 5537.0988ms 200 application/json; charset=utf-8 +2017-07-19 15:50:41.624 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" completed keep alive response. +2017-07-19 15:50:41.628 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:50:41.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:50:41.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:50:43.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:50:43.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:43.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:43.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:43.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3253.351ms +2017-07-19 15:50:43.561 +05:30 [Information] Request finished in 3392.6072ms 200 application/json; charset=utf-8 +2017-07-19 15:50:43.562 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" completed keep alive response. +2017-07-19 15:50:43.578 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:50:43.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:50:43.580 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:50:44.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:50:44.800 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:44.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:44.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:44.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3172.4399ms +2017-07-19 15:50:44.806 +05:30 [Information] Request finished in 3177.9584ms 200 application/json; charset=utf-8 +2017-07-19 15:50:44.806 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" completed keep alive response. +2017-07-19 15:50:44.843 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 15:50:44.844 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 15:50:44.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 15:50:45.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:50:45.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:45.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:45.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:45.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2263.9536ms +2017-07-19 15:50:45.851 +05:30 [Information] Request finished in 2285.7852ms 200 application/json; charset=utf-8 +2017-07-19 15:50:45.851 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" completed keep alive response. +2017-07-19 15:50:46.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:50:46.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:50:46.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:50:48.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["57", "8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:50:48.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:50:48.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:48.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:48.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:48.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2165.378ms +2017-07-19 15:50:48.192 +05:30 [Information] Request finished in 2221.5742ms 200 application/json; charset=utf-8 +2017-07-19 15:50:48.193 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" completed keep alive response. +2017-07-19 15:50:48.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 15:50:48.230 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 15:50:48.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3383.203ms +2017-07-19 15:50:48.241 +05:30 [Information] Request finished in 3396.2581ms 200 +2017-07-19 15:50:48.242 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" completed keep alive response. +2017-07-19 15:50:50.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:50:50.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:50:50.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:50:53.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 15:50:53.194 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:50:53.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:50:53.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:50:53.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.2836ms +2017-07-19 15:50:53.201 +05:30 [Information] Request finished in 3050.9419ms 200 application/json; charset=utf-8 +2017-07-19 15:50:53.201 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" completed keep alive response. +2017-07-19 15:52:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" received FIN. +2017-07-19 15:52:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" disconnecting. +2017-07-19 15:52:40.490 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" received FIN. +2017-07-19 15:52:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" sending FIN. +2017-07-19 15:52:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" disconnecting. +2017-07-19 15:52:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" sending FIN. +2017-07-19 15:52:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" sent FIN with status "0". +2017-07-19 15:52:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" sent FIN with status "0". +2017-07-19 15:52:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IN2"" stopped. +2017-07-19 15:52:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IN1"" stopped. +2017-07-19 15:58:06.466 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" started. +2017-07-19 15:58:06.470 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 15:58:06.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 15:58:06.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 15:58:08.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:58:08.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:08.762 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:08.764 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:08.767 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2292.1277ms +2017-07-19 15:58:08.771 +05:30 [Information] Request finished in 2300.8638ms 200 application/json; charset=utf-8 +2017-07-19 15:58:08.773 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:58:12.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:58:12.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:58:12.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:58:15.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:15.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:15.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:15.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:15.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3126.1163ms +2017-07-19 15:58:15.778 +05:30 [Information] Request finished in 3132.6061ms 200 application/json; charset=utf-8 +2017-07-19 15:58:15.779 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:58:15.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:58:15.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:58:15.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:58:18.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:18.924 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:18.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:18.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:18.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3140.0944ms +2017-07-19 15:58:18.933 +05:30 [Information] Request finished in 3148.6461ms 200 application/json; charset=utf-8 +2017-07-19 15:58:18.933 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:58:20.571 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" started. +2017-07-19 15:58:20.576 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:58:20.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:58:20.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:58:20.585 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:58:20.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:58:20.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:58:21.037 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" started. +2017-07-19 15:58:21.042 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" started. +2017-07-19 15:58:21.043 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" started. +2017-07-19 15:58:21.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:58:21.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:58:21.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:58:21.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:58:21.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:58:21.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:58:25.945 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" started. +2017-07-19 15:58:26.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:58:26.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:58:26.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:58:27.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:58:27.195 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:58:27.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:58:28.258 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:28.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:28.330 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:58:28.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:28.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:28.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 7267.0149ms +2017-07-19 15:58:28.335 +05:30 [Information] Request finished in 7287.4743ms 200 application/json; charset=utf-8 +2017-07-19 15:58:28.336 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" completed keep alive response. +2017-07-19 15:58:29.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:29.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:29.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:29.356 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:29.361 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:58:29.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:29.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:29.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8776.7478ms +2017-07-19 15:58:29.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:29.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:58:29.373 +05:30 [Information] Request finished in 8797.2333ms 200 application/json; charset=utf-8 +2017-07-19 15:58:29.374 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:58:29.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:29.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:29.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8802.0728ms +2017-07-19 15:58:29.390 +05:30 [Information] Request finished in 8814.0384ms 200 application/json; charset=utf-8 +2017-07-19 15:58:29.391 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" completed keep alive response. +2017-07-19 15:58:30.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:30.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:58:30.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:30.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:58:30.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:30.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:30.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4299.2306ms +2017-07-19 15:58:30.481 +05:30 [Information] Request finished in 4306.3918ms 200 application/json; charset=utf-8 +2017-07-19 15:58:30.481 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" completed keep alive response. +2017-07-19 15:58:30.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:30.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:30.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:30.523 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3312.6363ms +2017-07-19 15:58:30.532 +05:30 [Information] Request finished in 3340.1811ms 200 application/json; charset=utf-8 +2017-07-19 15:58:30.533 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" completed keep alive response. +2017-07-19 15:58:30.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:30.900 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:58:30.901 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:30.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:30.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9855.2531ms +2017-07-19 15:58:30.913 +05:30 [Information] Request finished in 9867.2001ms 200 application/json; charset=utf-8 +2017-07-19 15:58:30.914 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" completed keep alive response. +2017-07-19 15:58:41.337 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:58:41.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:58:41.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:58:44.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 15:58:44.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:44.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:44.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:44.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.392ms +2017-07-19 15:58:44.405 +05:30 [Information] Request finished in 3073.7217ms 200 application/json; charset=utf-8 +2017-07-19 15:58:44.406 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" completed keep alive response. +2017-07-19 15:58:44.417 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:58:44.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:58:44.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:58:47.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:58:47.475 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:47.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:47.477 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:47.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3054.3489ms +2017-07-19 15:58:47.485 +05:30 [Information] Request finished in 3068.123ms 200 application/json; charset=utf-8 +2017-07-19 15:58:47.486 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:58:47.511 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 15:58:47.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 15:58:47.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 15:58:47.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 15:58:47.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 15:58:47.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 15:58:50.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 15:58:50.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:50.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:50.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:50.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:50.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:50.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:50.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3158.6293ms +2017-07-19 15:58:50.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:50.680 +05:30 [Information] Request finished in 3185.8234ms 200 application/json; charset=utf-8 +2017-07-19 15:58:50.680 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" completed keep alive response. +2017-07-19 15:58:50.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3160.6802ms +2017-07-19 15:58:50.685 +05:30 [Information] Request finished in 3172.6634ms 200 application/json; charset=utf-8 +2017-07-19 15:58:50.686 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" completed keep alive response. +2017-07-19 15:58:50.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:58:50.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:58:50.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:58:53.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:58:53.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:58:53.807 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:58:53.808 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:58:53.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.8774ms +2017-07-19 15:58:53.813 +05:30 [Information] Request finished in 3121.3642ms 200 application/json; charset=utf-8 +2017-07-19 15:58:53.814 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" completed keep alive response. +2017-07-19 15:58:55.013 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 15:58:55.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 15:58:55.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 15:58:55.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 15:58:55.017 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 15:58:55.018 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 15:58:55.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 15:58:55.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 15:58:55.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 15:58:55.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 15:58:55.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 15:58:55.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 15:58:55.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 15:58:55.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 15:58:55.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 15:59:03.243 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 15:59:03.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 15:59:03.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 15:59:04.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:59:04.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:59:04.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:59:04.652 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:04.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:59:04.685 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:59:04.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:04.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 15:59:04.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:04.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:04.749 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:59:04.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:04.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 9728.5885ms +2017-07-19 15:59:04.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:04.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:59:04.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:04.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:04.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:04.844 +05:30 [Information] Request finished in 9778.5551ms 200 application/json; charset=utf-8 +2017-07-19 15:59:04.845 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" completed keep alive response. +2017-07-19 15:59:04.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 9209.6752ms +2017-07-19 15:59:04.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9777.2921ms +2017-07-19 15:59:04.927 +05:30 [Information] Request finished in 9303.0587ms 200 application/json; charset=utf-8 +2017-07-19 15:59:04.931 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 15:59:05.043 +05:30 [Information] Request finished in 9914.946ms 200 application/json; charset=utf-8 +2017-07-19 15:59:05.047 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" completed keep alive response. +2017-07-19 15:59:05.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:05.130 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:59:05.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:05.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:05.135 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 9521.0734ms +2017-07-19 15:59:05.137 +05:30 [Information] Request finished in 9555.2553ms 200 application/json; charset=utf-8 +2017-07-19 15:59:05.138 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" completed keep alive response. +2017-07-19 15:59:05.430 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:05.431 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 15:59:05.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:05.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:05.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 9822.6874ms +2017-07-19 15:59:05.445 +05:30 [Information] Request finished in 9859.0295ms 200 application/json; charset=utf-8 +2017-07-19 15:59:05.446 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" completed keep alive response. +2017-07-19 15:59:06.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 15:59:06.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:06.629 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:06.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:06.636 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3386.3594ms +2017-07-19 15:59:06.639 +05:30 [Information] Request finished in 3461.6967ms 200 application/json; charset=utf-8 +2017-07-19 15:59:06.640 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" completed keep alive response. +2017-07-19 15:59:06.662 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 15:59:06.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 15:59:06.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 15:59:09.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 15:59:09.741 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:09.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:09.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:09.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3079.4868ms +2017-07-19 15:59:09.747 +05:30 [Information] Request finished in 3097.2344ms 200 application/json; charset=utf-8 +2017-07-19 15:59:09.747 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" completed keep alive response. +2017-07-19 15:59:09.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 15:59:09.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 15:59:09.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 15:59:12.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 15:59:12.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 15:59:12.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 15:59:12.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 15:59:12.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3086.5033ms +2017-07-19 15:59:12.855 +05:30 [Information] Request finished in 3099.7862ms 200 application/json; charset=utf-8 +2017-07-19 15:59:12.855 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" completed keep alive response. +2017-07-19 16:00:14.135 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" received FIN. +2017-07-19 16:00:14.142 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" received FIN. +2017-07-19 16:00:14.144 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" received FIN. +2017-07-19 16:00:14.143 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" disconnecting. +2017-07-19 16:00:14.145 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" sending FIN. +2017-07-19 16:00:14.145 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" disconnecting. +2017-07-19 16:00:14.136 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" received FIN. +2017-07-19 16:00:14.147 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" received FIN. +2017-07-19 16:00:14.147 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" received FIN. +2017-07-19 16:00:14.147 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" started. +2017-07-19 16:00:14.148 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" disconnecting. +2017-07-19 16:00:14.145 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" disconnecting. +2017-07-19 16:00:14.148 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" sending FIN. +2017-07-19 16:00:14.152 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" disconnecting. +2017-07-19 16:00:14.146 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" sent FIN with status "0". +2017-07-19 16:00:14.154 +05:30 [Debug] Connection id ""0HL6EHQO57IN4"" stopped. +2017-07-19 16:00:14.148 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" disconnecting. +2017-07-19 16:00:14.152 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" sent FIN with status "0". +2017-07-19 16:00:14.155 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" sending FIN. +2017-07-19 16:00:14.155 +05:30 [Debug] Connection id ""0HL6EHQO57IN5"" stopped. +2017-07-19 16:00:14.156 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" sending FIN. +2017-07-19 16:00:14.157 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" sent FIN with status "0". +2017-07-19 16:00:14.158 +05:30 [Debug] Connection id ""0HL6EHQO57IN8"" stopped. +2017-07-19 16:00:14.156 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" sending FIN. +2017-07-19 16:00:14.160 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" sent FIN with status "0". +2017-07-19 16:00:14.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:00:14.162 +05:30 [Debug] Connection id ""0HL6EHQO57IN6"" stopped. +2017-07-19 16:00:14.160 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" sending FIN. +2017-07-19 16:00:14.163 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" sent FIN with status "0". +2017-07-19 16:00:14.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:00:14.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:00:14.164 +05:30 [Debug] Connection id ""0HL6EHQO57IN7"" stopped. +2017-07-19 16:00:14.166 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" sent FIN with status "0". +2017-07-19 16:00:14.166 +05:30 [Debug] Connection id ""0HL6EHQO57IN3"" stopped. +2017-07-19 16:00:17.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:00:17.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:17.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:17.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:17.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.7858ms +2017-07-19 16:00:17.218 +05:30 [Information] Request finished in 3060.1256ms 200 application/json; charset=utf-8 +2017-07-19 16:00:17.218 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" completed keep alive response. +2017-07-19 16:00:17.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:00:17.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:00:17.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:00:19.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:00:19.351 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:19.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:19.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:19.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2127.6273ms +2017-07-19 16:00:19.359 +05:30 [Information] Request finished in 2135.9919ms 200 application/json; charset=utf-8 +2017-07-19 16:00:19.361 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" completed keep alive response. +2017-07-19 16:00:19.385 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:00:19.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:00:19.386 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" started. +2017-07-19 16:00:19.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:00:19.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:00:19.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:00:19.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:00:22.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:22.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:00:22.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:22.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:22.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:22.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:22.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:22.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:22.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3189.5552ms +2017-07-19 16:00:22.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3192.9555ms +2017-07-19 16:00:22.592 +05:30 [Information] Request finished in 3196.7717ms 200 application/json; charset=utf-8 +2017-07-19 16:00:22.592 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:00:22.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:00:22.622 +05:30 [Information] Request finished in 3230.8533ms 200 application/json; charset=utf-8 +2017-07-19 16:00:22.623 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" completed keep alive response. +2017-07-19 16:00:22.623 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:00:22.625 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:00:25.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:25.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:25.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:25.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:25.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3089.6458ms +2017-07-19 16:00:25.719 +05:30 [Information] Request finished in 3117.3693ms 200 application/json; charset=utf-8 +2017-07-19 16:00:25.720 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:00:27.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:00:27.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:00:27.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:00:27.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:00:27.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:00:27.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:00:27.730 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" started. +2017-07-19 16:00:27.734 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" started. +2017-07-19 16:00:27.736 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" started. +2017-07-19 16:00:27.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:00:27.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:00:27.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:00:27.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:00:27.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:00:27.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:00:29.489 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" started. +2017-07-19 16:00:29.677 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:00:29.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:00:29.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:00:30.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:00:30.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:00:30.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:00:32.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:32.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:32.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:32.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:32.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:32.889 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:00:32.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:32.929 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:32.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5764.7763ms +2017-07-19 16:00:33.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:33.000 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:33.004 +05:30 [Information] Request finished in 5831.8151ms 200 application/json; charset=utf-8 +2017-07-19 16:00:33.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:00:33.004 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" completed keep alive response. +2017-07-19 16:00:33.003 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:00:33.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:33.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:33.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:33.029 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:33.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5850.8794ms +2017-07-19 16:00:33.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5288.969ms +2017-07-19 16:00:33.041 +05:30 [Information] Request finished in 5869.9787ms 200 application/json; charset=utf-8 +2017-07-19 16:00:33.043 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:00:33.052 +05:30 [Information] Request finished in 5308.995ms 200 application/json; charset=utf-8 +2017-07-19 16:00:33.055 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" completed keep alive response. +2017-07-19 16:00:33.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:33.525 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:00:33.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:33.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:33.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5788.4204ms +2017-07-19 16:00:33.544 +05:30 [Information] Request finished in 5806.1803ms 200 application/json; charset=utf-8 +2017-07-19 16:00:33.544 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" completed keep alive response. +2017-07-19 16:00:33.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:00:33.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:33.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:33.863 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:33.872 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:00:33.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3182.8671ms +2017-07-19 16:00:33.921 +05:30 [Information] Request finished in 3240.52ms 200 application/json; charset=utf-8 +2017-07-19 16:00:33.922 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" completed keep alive response. +2017-07-19 16:00:33.966 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:00:33.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:00:33.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:00:34.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:34.104 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:00:34.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:34.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:34.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4430.638ms +2017-07-19 16:00:34.116 +05:30 [Information] Request finished in 4439.0013ms 200 application/json; charset=utf-8 +2017-07-19 16:00:34.117 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" completed keep alive response. +2017-07-19 16:00:37.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:00:37.053 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:37.053 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:37.054 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:37.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3086.737ms +2017-07-19 16:00:37.058 +05:30 [Information] Request finished in 3116.5456ms 200 application/json; charset=utf-8 +2017-07-19 16:00:37.059 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" completed keep alive response. +2017-07-19 16:00:37.092 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:00:37.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:00:37.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:00:40.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:00:40.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:00:40.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:00:40.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:00:40.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3109.7108ms +2017-07-19 16:00:40.210 +05:30 [Information] Request finished in 3125.3363ms 200 application/json; charset=utf-8 +2017-07-19 16:00:40.210 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:37.690 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" received FIN. +2017-07-19 16:01:37.692 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" received FIN. +2017-07-19 16:01:37.691 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" received FIN. +2017-07-19 16:01:37.694 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" received FIN. +2017-07-19 16:01:37.694 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" received FIN. +2017-07-19 16:01:37.692 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" disconnecting. +2017-07-19 16:01:37.695 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" disconnecting. +2017-07-19 16:01:37.706 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" disconnecting. +2017-07-19 16:01:37.704 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" disconnecting. +2017-07-19 16:01:37.704 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" sending FIN. +2017-07-19 16:01:37.706 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" sending FIN. +2017-07-19 16:01:37.708 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" sending FIN. +2017-07-19 16:01:37.708 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" sent FIN with status "0". +2017-07-19 16:01:37.707 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" sending FIN. +2017-07-19 16:01:37.708 +05:30 [Debug] Connection id ""0HL6EHQO57IND"" stopped. +2017-07-19 16:01:37.710 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" sent FIN with status "0". +2017-07-19 16:01:37.710 +05:30 [Debug] Connection id ""0HL6EHQO57IN9"" stopped. +2017-07-19 16:01:37.709 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" sent FIN with status "0". +2017-07-19 16:01:37.711 +05:30 [Debug] Connection id ""0HL6EHQO57INE"" stopped. +2017-07-19 16:01:37.704 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" disconnecting. +2017-07-19 16:01:37.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:01:37.713 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" sending FIN. +2017-07-19 16:01:37.713 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" sent FIN with status "0". +2017-07-19 16:01:37.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:01:37.714 +05:30 [Debug] Connection id ""0HL6EHQO57INB"" stopped. +2017-07-19 16:01:37.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:01:37.713 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" sent FIN with status "0". +2017-07-19 16:01:37.716 +05:30 [Debug] Connection id ""0HL6EHQO57INC"" stopped. +2017-07-19 16:01:40.805 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:01:40.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:40.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:40.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:40.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3096.5534ms +2017-07-19 16:01:40.815 +05:30 [Information] Request finished in 3110.3779ms 200 application/json; charset=utf-8 +2017-07-19 16:01:40.816 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:40.819 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:01:40.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:01:40.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:01:43.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:01:43.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:43.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:43.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:43.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3073.5008ms +2017-07-19 16:01:43.910 +05:30 [Information] Request finished in 3091.6146ms 200 application/json; charset=utf-8 +2017-07-19 16:01:43.911 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:43.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:01:43.932 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" started. +2017-07-19 16:01:43.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:01:43.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:01:43.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:01:43.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:01:43.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:01:47.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:01:47.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:47.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:47.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:47.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:47.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:47.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:47.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3197.307ms +2017-07-19 16:01:47.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:47.157 +05:30 [Information] Request finished in 3230.4216ms 200 application/json; charset=utf-8 +2017-07-19 16:01:47.159 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:47.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3213.2027ms +2017-07-19 16:01:47.186 +05:30 [Information] Request finished in 3248.7353ms 200 application/json; charset=utf-8 +2017-07-19 16:01:47.186 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" completed keep alive response. +2017-07-19 16:01:47.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:01:47.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:01:47.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:01:50.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:50.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:50.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:50.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:50.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.6991ms +2017-07-19 16:01:50.330 +05:30 [Information] Request finished in 3118.3323ms 200 application/json; charset=utf-8 +2017-07-19 16:01:50.331 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:52.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:01:52.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:01:52.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:01:52.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:01:52.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:01:52.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:01:52.901 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" started. +2017-07-19 16:01:52.904 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" started. +2017-07-19 16:01:52.904 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" started. +2017-07-19 16:01:52.920 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:01:52.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:01:52.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:01:52.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:01:52.960 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:01:52.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:01:52.961 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:01:52.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:01:52.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:01:55.597 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" started. +2017-07-19 16:01:55.675 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:01:55.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:01:55.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:01:56.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:56.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:56.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:56.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:56.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:56.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:01:56.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:56.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:01:56.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:56.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:56.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:01:56.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:56.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4669.9781ms +2017-07-19 16:01:57.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:57.052 +05:30 [Information] Request finished in 4745.0605ms 200 application/json; charset=utf-8 +2017-07-19 16:01:57.061 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" completed keep alive response. +2017-07-19 16:01:57.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4057.4668ms +2017-07-19 16:01:57.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:57.168 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:01:57.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:57.210 +05:30 [Information] Request finished in 4262.873ms 200 application/json; charset=utf-8 +2017-07-19 16:01:57.211 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" completed keep alive response. +2017-07-19 16:01:57.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:57.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4947.0544ms +2017-07-19 16:01:57.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:57.302 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:01:57.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:57.303 +05:30 [Information] Request finished in 5025.2696ms 200 application/json; charset=utf-8 +2017-07-19 16:01:57.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:57.305 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:01:57.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4339.2621ms +2017-07-19 16:01:57.313 +05:30 [Information] Request finished in 4391.9937ms 200 application/json; charset=utf-8 +2017-07-19 16:01:57.313 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" completed keep alive response. +2017-07-19 16:01:57.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:57.425 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:01:57.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:57.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:57.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4502.2158ms +2017-07-19 16:01:57.435 +05:30 [Information] Request finished in 4526.0258ms 200 application/json; charset=utf-8 +2017-07-19 16:01:57.436 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" completed keep alive response. +2017-07-19 16:01:58.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:01:58.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:01:58.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:01:58.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:01:58.993 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3314.686ms +2017-07-19 16:01:58.995 +05:30 [Information] Request finished in 3387.4701ms 200 application/json; charset=utf-8 +2017-07-19 16:01:58.996 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" completed keep alive response. +2017-07-19 16:01:58.999 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:01:59.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:01:59.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:02:02.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:02:02.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:02.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:02.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:02.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.5532ms +2017-07-19 16:02:02.064 +05:30 [Information] Request finished in 3065.2342ms 200 application/json; charset=utf-8 +2017-07-19 16:02:02.065 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" completed keep alive response. +2017-07-19 16:02:02.074 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:02:02.074 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:02:02.075 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:02:05.124 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:02:05.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:05.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:05.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:05.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3094.039ms +2017-07-19 16:02:05.179 +05:30 [Information] Request finished in 3102.5572ms 200 application/json; charset=utf-8 +2017-07-19 16:02:05.180 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" completed keep alive response. +2017-07-19 16:02:34.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:02:34.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:02:34.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:02:37.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:02:37.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:37.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:37.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:37.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3151.0403ms +2017-07-19 16:02:37.437 +05:30 [Information] Request finished in 3167.3392ms 200 application/json; charset=utf-8 +2017-07-19 16:02:37.437 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:02:37.440 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:02:37.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:02:37.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:02:40.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:02:40.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:40.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:40.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:40.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3070.6729ms +2017-07-19 16:02:40.529 +05:30 [Information] Request finished in 3089.6319ms 200 application/json; charset=utf-8 +2017-07-19 16:02:40.531 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" completed keep alive response. +2017-07-19 16:02:40.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:02:40.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:02:40.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:02:40.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:02:40.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:02:40.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:02:43.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:43.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:02:43.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:43.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:43.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:43.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:43.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:43.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3192.0524ms +2017-07-19 16:02:43.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:43.764 +05:30 [Information] Request finished in 3202.0813ms 200 application/json; charset=utf-8 +2017-07-19 16:02:43.764 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" completed keep alive response. +2017-07-19 16:02:43.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3205.7862ms +2017-07-19 16:02:43.775 +05:30 [Information] Request finished in 3216.89ms 200 application/json; charset=utf-8 +2017-07-19 16:02:43.776 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" completed keep alive response. +2017-07-19 16:02:43.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:02:43.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:02:43.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:02:46.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:46.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:46.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:46.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:46.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3119.1415ms +2017-07-19 16:02:46.909 +05:30 [Information] Request finished in 3136.0929ms 200 application/json; charset=utf-8 +2017-07-19 16:02:46.910 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" completed keep alive response. +2017-07-19 16:02:48.588 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:02:48.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:02:48.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:02:48.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:02:48.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:02:48.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:02:49.366 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:02:49.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:02:49.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:02:49.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:02:49.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:02:49.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:02:49.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:02:49.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:02:49.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:02:51.764 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:02:51.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:02:51.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:02:52.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:52.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:52.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:52.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:53.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:53.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:02:53.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:53.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:53.099 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:02:53.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:53.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:53.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:53.118 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:02:53.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:53.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3734.5665ms +2017-07-19 16:02:53.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:53.125 +05:30 [Information] Request finished in 3758.1173ms 200 application/json; charset=utf-8 +2017-07-19 16:02:53.126 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" completed keep alive response. +2017-07-19 16:02:53.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:53.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4532.603ms +2017-07-19 16:02:53.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4534.214ms +2017-07-19 16:02:53.147 +05:30 [Information] Request finished in 4558.4799ms 200 application/json; charset=utf-8 +2017-07-19 16:02:53.149 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:02:53.148 +05:30 [Information] Request finished in 4567.3451ms 200 application/json; charset=utf-8 +2017-07-19 16:02:53.168 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" completed keep alive response. +2017-07-19 16:02:53.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:02:53.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:53.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:02:53.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:53.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:53.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4561.1562ms +2017-07-19 16:02:53.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:53.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:02:53.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:53.986 +05:30 [Information] Request finished in 4636.2663ms 200 application/json; charset=utf-8 +2017-07-19 16:02:53.988 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" completed keep alive response. +2017-07-19 16:02:53.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:53.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4615.3783ms +2017-07-19 16:02:54.006 +05:30 [Information] Request finished in 4650.6533ms 200 application/json; charset=utf-8 +2017-07-19 16:02:54.007 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" completed keep alive response. +2017-07-19 16:02:54.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:02:54.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:54.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:54.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:54.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3101.0234ms +2017-07-19 16:02:54.873 +05:30 [Information] Request finished in 3111.4449ms 200 application/json; charset=utf-8 +2017-07-19 16:02:54.874 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" completed keep alive response. +2017-07-19 16:02:54.876 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:02:54.876 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:02:54.877 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:02:56.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:02:56.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:02:56.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:02:56.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:02:56.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2100.0809ms +2017-07-19 16:02:56.985 +05:30 [Information] Request finished in 2109.3317ms 200 application/json; charset=utf-8 +2017-07-19 16:02:56.986 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" completed keep alive response. +2017-07-19 16:02:56.998 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:02:56.999 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:02:56.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:03:00.043 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:03:00.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:03:00.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:03:00.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:03:00.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3101.0092ms +2017-07-19 16:03:00.105 +05:30 [Information] Request finished in 3108.0383ms 200 application/json; charset=utf-8 +2017-07-19 16:03:00.105 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" completed keep alive response. +2017-07-19 16:04:40.535 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" received FIN. +2017-07-19 16:04:40.536 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" disconnecting. +2017-07-19 16:04:40.536 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" received FIN. +2017-07-19 16:04:40.536 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" received FIN. +2017-07-19 16:04:40.537 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" sending FIN. +2017-07-19 16:04:40.537 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" sent FIN with status "0". +2017-07-19 16:04:40.538 +05:30 [Debug] Connection id ""0HL6EHQO57INI"" stopped. +2017-07-19 16:04:40.558 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" disconnecting. +2017-07-19 16:04:40.558 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" sending FIN. +2017-07-19 16:04:40.558 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" disconnecting. +2017-07-19 16:04:40.559 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" sent FIN with status "0". +2017-07-19 16:04:40.560 +05:30 [Debug] Connection id ""0HL6EHQO57ING"" stopped. +2017-07-19 16:04:40.560 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" sending FIN. +2017-07-19 16:04:40.561 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" sent FIN with status "0". +2017-07-19 16:04:40.561 +05:30 [Debug] Connection id ""0HL6EHQO57INA"" stopped. +2017-07-19 16:04:40.757 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" received FIN. +2017-07-19 16:04:40.757 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" received FIN. +2017-07-19 16:04:40.757 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" received FIN. +2017-07-19 16:04:40.821 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" disconnecting. +2017-07-19 16:04:40.821 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" disconnecting. +2017-07-19 16:04:40.822 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" disconnecting. +2017-07-19 16:04:40.822 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" sending FIN. +2017-07-19 16:04:40.823 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" sending FIN. +2017-07-19 16:04:40.823 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" sending FIN. +2017-07-19 16:04:40.824 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" sent FIN with status "0". +2017-07-19 16:04:40.824 +05:30 [Debug] Connection id ""0HL6EHQO57INJ"" stopped. +2017-07-19 16:04:40.824 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" sent FIN with status "0". +2017-07-19 16:04:40.825 +05:30 [Debug] Connection id ""0HL6EHQO57INF"" stopped. +2017-07-19 16:04:40.825 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" sent FIN with status "0". +2017-07-19 16:04:40.825 +05:30 [Debug] Connection id ""0HL6EHQO57INH"" stopped. +2017-07-19 16:05:19.197 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" started. +2017-07-19 16:05:19.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:05:19.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:05:19.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:05:21.377 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" started. +2017-07-19 16:05:21.379 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:05:21.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:05:21.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:05:22.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:22.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:22.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:22.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:23.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3780.1528ms +2017-07-19 16:05:23.004 +05:30 [Information] Request finished in 3797.3744ms 200 application/json; charset=utf-8 +2017-07-19 16:05:23.004 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:05:23.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:05:23.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:05:23.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:05:24.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:24.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:24.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:24.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:24.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3127.4376ms +2017-07-19 16:05:24.516 +05:30 [Information] Request finished in 3137.916ms 200 application/json; charset=utf-8 +2017-07-19 16:05:24.517 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:05:24.520 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:05:24.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:05:24.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:05:26.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:05:26.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:26.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:26.122 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:26.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3075.3121ms +2017-07-19 16:05:26.126 +05:30 [Information] Request finished in 3103.0012ms 200 application/json; charset=utf-8 +2017-07-19 16:05:26.127 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:05:26.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 16:05:26.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 16:05:26.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 16:05:27.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:05:27.562 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:27.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:27.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:27.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3042.2303ms +2017-07-19 16:05:27.570 +05:30 [Information] Request finished in 3050.1454ms 200 application/json; charset=utf-8 +2017-07-19 16:05:27.571 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:05:27.597 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:05:27.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:05:27.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:05:27.751 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" started. +2017-07-19 16:05:27.759 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:05:27.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:05:27.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:05:29.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["58", "8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:29.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 16:05:29.389 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 16:05:29.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3237.5152ms +2017-07-19 16:05:29.396 +05:30 [Information] Request finished in 3251.3629ms 200 +2017-07-19 16:05:29.396 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:05:30.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:30.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:30.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:30.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:30.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3043.5976ms +2017-07-19 16:05:30.648 +05:30 [Information] Request finished in 3053.7016ms 200 application/json; charset=utf-8 +2017-07-19 16:05:30.649 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:05:30.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:30.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:30.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:30.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:30.856 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3093.5924ms +2017-07-19 16:05:30.858 +05:30 [Information] Request finished in 3104.0169ms 200 application/json; charset=utf-8 +2017-07-19 16:05:30.858 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:05:32.309 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:05:32.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:05:32.312 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:05:35.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce90e6890810"]) - ModelState is Valid +2017-07-19 16:05:35.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:35.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:35.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:35.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3075.1214ms +2017-07-19 16:05:35.392 +05:30 [Information] Request finished in 3085.9789ms 200 application/json; charset=utf-8 +2017-07-19 16:05:35.392 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:05:44.362 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:05:44.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:05:44.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:05:47.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:05:47.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:47.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:47.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:47.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3348.5163ms +2017-07-19 16:05:47.724 +05:30 [Information] Request finished in 3362.3646ms 200 application/json; charset=utf-8 +2017-07-19 16:05:47.725 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:05:47.841 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:05:47.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:05:47.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:05:50.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:05:50.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:50.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:50.949 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:50.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3107.2831ms +2017-07-19 16:05:50.955 +05:30 [Information] Request finished in 3114.013ms 200 application/json; charset=utf-8 +2017-07-19 16:05:50.956 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:05:50.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:05:50.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:05:50.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:05:54.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:05:54.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:05:54.079 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:05:54.087 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:05:54.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.165ms +2017-07-19 16:05:54.092 +05:30 [Information] Request finished in 3132.0731ms 200 application/json; charset=utf-8 +2017-07-19 16:05:54.093 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:05:55.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:05:55.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:05:55.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:05:55.693 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:05:55.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:05:55.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:05:56.087 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" started. +2017-07-19 16:05:56.088 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" started. +2017-07-19 16:05:56.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:05:56.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:05:56.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:05:56.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:05:56.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:05:56.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:05:56.791 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" started. +2017-07-19 16:05:57.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:05:57.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:05:57.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:05:58.183 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:05:58.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:05:58.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:06:00.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:06:00.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:06:00.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:00.305 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:06:00.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:00.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:00.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:00.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:06:00.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:00.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4645.7116ms +2017-07-19 16:06:00.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:00.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4658.432ms +2017-07-19 16:06:00.359 +05:30 [Information] Request finished in 4682.6681ms 200 application/json; charset=utf-8 +2017-07-19 16:06:00.360 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:06:00.372 +05:30 [Information] Request finished in 4687.0553ms 200 application/json; charset=utf-8 +2017-07-19 16:06:00.373 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:06:01.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:06:01.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:06:01.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:06:02.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:06:03.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:03.042 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:06:03.064 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:03.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:03.093 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:03.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 7029.977ms +2017-07-19 16:06:03.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:03.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:03.180 +05:30 [Information] Request finished in 7039.5874ms 200 application/json; charset=utf-8 +2017-07-19 16:06:03.181 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" completed keep alive response. +2017-07-19 16:06:03.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:06:03.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:03.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:03.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:03.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4999.7652ms +2017-07-19 16:06:03.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7097.4075ms +2017-07-19 16:06:03.202 +05:30 [Information] Request finished in 5019.0503ms 200 application/json; charset=utf-8 +2017-07-19 16:06:03.204 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" completed keep alive response. +2017-07-19 16:06:03.206 +05:30 [Information] Request finished in 7113.5041ms 200 application/json; charset=utf-8 +2017-07-19 16:06:03.213 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" completed keep alive response. +2017-07-19 16:06:04.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:06:04.674 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:06:04.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:06:04.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:06:04.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7497.374ms +2017-07-19 16:06:04.688 +05:30 [Information] Request finished in 7513.5149ms 200 application/json; charset=utf-8 +2017-07-19 16:06:04.689 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" completed keep alive response. +2017-07-19 16:06:57.107 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:06:57.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:06:57.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:07:00.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:07:00.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:00.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:00.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:00.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3173.0458ms +2017-07-19 16:07:00.286 +05:30 [Information] Request finished in 3179.2244ms 200 application/json; charset=utf-8 +2017-07-19 16:07:00.286 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:07:00.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:07:00.342 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:07:00.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:07:03.396 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:03.458 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:03.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:03.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:03.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3116.2947ms +2017-07-19 16:07:03.463 +05:30 [Information] Request finished in 3122.4905ms 200 application/json; charset=utf-8 +2017-07-19 16:07:03.464 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:07:03.466 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" received FIN. +2017-07-19 16:07:03.467 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" received FIN. +2017-07-19 16:07:03.468 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" disconnecting. +2017-07-19 16:07:03.468 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" disconnecting. +2017-07-19 16:07:03.468 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" received FIN. +2017-07-19 16:07:03.471 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" sending FIN. +2017-07-19 16:07:03.471 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" sent FIN with status "0". +2017-07-19 16:07:03.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:07:03.474 +05:30 [Debug] Connection id ""0HL6EHQO57INO"" stopped. +2017-07-19 16:07:03.469 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" sending FIN. +2017-07-19 16:07:03.475 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" sent FIN with status "0". +2017-07-19 16:07:03.475 +05:30 [Debug] Connection id ""0HL6EHQO57INP"" stopped. +2017-07-19 16:07:03.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:07:03.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:07:03.473 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" disconnecting. +2017-07-19 16:07:03.477 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" sending FIN. +2017-07-19 16:07:03.478 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" sent FIN with status "0". +2017-07-19 16:07:03.478 +05:30 [Debug] Connection id ""0HL6EHQO57INK"" stopped. +2017-07-19 16:07:06.519 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:06.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:06.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:06.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:06.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.1643ms +2017-07-19 16:07:06.587 +05:30 [Information] Request finished in 3116.8849ms 200 application/json; charset=utf-8 +2017-07-19 16:07:06.588 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" completed keep alive response. +2017-07-19 16:07:09.778 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:07:09.778 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:07:09.779 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:07:09.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:07:09.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:07:09.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:07:09.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:07:09.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:07:09.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:07:11.305 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" started. +2017-07-19 16:07:11.308 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:07:11.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:07:11.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:07:13.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:13.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:13.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:13.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:13.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:07:13.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:13.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:13.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:13.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3473.361ms +2017-07-19 16:07:13.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:07:13.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:13.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:13.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:13.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:13.324 +05:30 [Information] Request finished in 3523.8348ms 200 application/json; charset=utf-8 +2017-07-19 16:07:13.325 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:07:13.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:13.329 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3423.201ms +2017-07-19 16:07:13.350 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3548.8622ms +2017-07-19 16:07:13.352 +05:30 [Information] Request finished in 3543.4155ms 200 application/json; charset=utf-8 +2017-07-19 16:07:13.353 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" completed keep alive response. +2017-07-19 16:07:13.361 +05:30 [Information] Request finished in 3594.0678ms 200 application/json; charset=utf-8 +2017-07-19 16:07:13.362 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:07:13.368 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:07:13.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:07:13.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:07:14.467 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:07:14.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:14.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:14.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:14.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3205.3071ms +2017-07-19 16:07:14.523 +05:30 [Information] Request finished in 3216.7066ms 200 application/json; charset=utf-8 +2017-07-19 16:07:14.524 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" completed keep alive response. +2017-07-19 16:07:16.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:16.476 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:16.477 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:16.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:16.480 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.7145ms +2017-07-19 16:07:16.482 +05:30 [Information] Request finished in 3114.878ms 200 application/json; charset=utf-8 +2017-07-19 16:07:16.482 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" completed keep alive response. +2017-07-19 16:07:17.262 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:07:17.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:07:17.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:07:17.273 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:07:17.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:07:17.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:07:18.089 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:07:18.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:07:18.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:07:19.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:19.415 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:19.415 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:07:19.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:19.424 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:19.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2147.9207ms +2017-07-19 16:07:19.429 +05:30 [Information] Request finished in 2170.4323ms 200 application/json; charset=utf-8 +2017-07-19 16:07:19.430 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" completed keep alive response. +2017-07-19 16:07:20.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:07:20.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:20.372 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:07:20.373 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:20.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:20.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3098.2097ms +2017-07-19 16:07:20.379 +05:30 [Information] Request finished in 3119.1577ms 200 application/json; charset=utf-8 +2017-07-19 16:07:20.379 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" completed keep alive response. +2017-07-19 16:07:21.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:07:21.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:07:21.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:07:21.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:07:21.186 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3094.3336ms +2017-07-19 16:07:21.188 +05:30 [Information] Request finished in 3100.9625ms 200 application/json; charset=utf-8 +2017-07-19 16:07:21.188 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" completed keep alive response. +2017-07-19 16:08:26.674 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" received FIN. +2017-07-19 16:08:26.675 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" received FIN. +2017-07-19 16:08:26.676 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" received FIN. +2017-07-19 16:08:26.676 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" received FIN. +2017-07-19 16:08:26.678 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" started. +2017-07-19 16:08:26.676 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" disconnecting. +2017-07-19 16:08:26.682 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" sending FIN. +2017-07-19 16:08:26.683 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" sent FIN with status "0". +2017-07-19 16:08:26.684 +05:30 [Debug] Connection id ""0HL6EHQO57INM"" stopped. +2017-07-19 16:08:26.677 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" disconnecting. +2017-07-19 16:08:26.686 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" disconnecting. +2017-07-19 16:08:26.686 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" sending FIN. +2017-07-19 16:08:26.686 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" disconnecting. +2017-07-19 16:08:26.693 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" sending FIN. +2017-07-19 16:08:26.694 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" sending FIN. +2017-07-19 16:08:26.694 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" sent FIN with status "0". +2017-07-19 16:08:26.697 +05:30 [Debug] Connection id ""0HL6EHQO57INL"" stopped. +2017-07-19 16:08:26.697 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" sent FIN with status "0". +2017-07-19 16:08:26.698 +05:30 [Debug] Connection id ""0HL6EHQO57INN"" stopped. +2017-07-19 16:08:26.696 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" sent FIN with status "0". +2017-07-19 16:08:26.699 +05:30 [Debug] Connection id ""0HL6EHQO57INQ"" stopped. +2017-07-19 16:08:26.692 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:08:26.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:08:26.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:08:29.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:08:29.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:29.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:29.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:29.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3087.2184ms +2017-07-19 16:08:29.797 +05:30 [Information] Request finished in 3104.7273ms 200 application/json; charset=utf-8 +2017-07-19 16:08:29.798 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:29.812 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:08:29.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:08:29.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:08:32.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:08:32.945 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:32.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:32.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:32.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3126.6625ms +2017-07-19 16:08:32.962 +05:30 [Information] Request finished in 3157.512ms 200 application/json; charset=utf-8 +2017-07-19 16:08:32.969 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:32.992 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" started. +2017-07-19 16:08:32.995 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:08:32.996 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:08:32.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:08:32.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:08:33.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:08:32.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:08:36.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:08:36.106 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:08:36.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:36.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:36.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:36.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3181.2227ms +2017-07-19 16:08:36.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:36.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:36.193 +05:30 [Information] Request finished in 3199.5768ms 200 application/json; charset=utf-8 +2017-07-19 16:08:36.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:36.196 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:36.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3196.5906ms +2017-07-19 16:08:36.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:08:36.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:08:36.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:08:36.214 +05:30 [Information] Request finished in 3215.8078ms 200 application/json; charset=utf-8 +2017-07-19 16:08:36.216 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:08:39.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:08:39.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:39.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:39.313 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:39.315 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.1696ms +2017-07-19 16:08:39.318 +05:30 [Information] Request finished in 3112.4586ms 200 application/json; charset=utf-8 +2017-07-19 16:08:39.318 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:40.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:08:40.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:08:40.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:08:40.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:08:40.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:08:40.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:08:42.466 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" started. +2017-07-19 16:08:42.468 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:08:42.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:08:42.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:08:44.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:08:44.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:44.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:08:44.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:44.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:08:44.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:44.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3179.2423ms +2017-07-19 16:08:44.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:44.132 +05:30 [Information] Request finished in 3259.4349ms 200 application/json; charset=utf-8 +2017-07-19 16:08:44.133 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:44.133 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:08:44.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:44.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:44.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3213.64ms +2017-07-19 16:08:44.149 +05:30 [Information] Request finished in 3278.3048ms 200 application/json; charset=utf-8 +2017-07-19 16:08:44.150 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:08:45.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:08:45.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:45.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:45.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:45.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3162.9483ms +2017-07-19 16:08:45.643 +05:30 [Information] Request finished in 3172.7938ms 200 application/json; charset=utf-8 +2017-07-19 16:08:45.643 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:08:45.648 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:08:45.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:08:45.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:08:48.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:08:48.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:48.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:48.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:48.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3036.98ms +2017-07-19 16:08:48.693 +05:30 [Information] Request finished in 3045.5671ms 200 application/json; charset=utf-8 +2017-07-19 16:08:48.694 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:08:48.706 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:08:48.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:08:48.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:08:51.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:08:51.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:08:51.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:08:51.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:08:51.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3134.3392ms +2017-07-19 16:08:51.848 +05:30 [Information] Request finished in 3140.6344ms 200 application/json; charset=utf-8 +2017-07-19 16:08:51.848 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:09:21.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:09:21.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:09:21.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:09:24.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:09:24.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:24.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:24.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:24.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.518ms +2017-07-19 16:09:24.720 +05:30 [Information] Request finished in 3094.8769ms 200 application/json; charset=utf-8 +2017-07-19 16:09:24.721 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:09:24.724 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:09:24.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:09:24.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:09:27.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:09:27.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:27.773 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:27.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:27.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3047.3965ms +2017-07-19 16:09:27.780 +05:30 [Information] Request finished in 3055.0812ms 200 application/json; charset=utf-8 +2017-07-19 16:09:27.781 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:09:27.805 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:09:27.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:09:27.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:09:27.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:09:27.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:09:27.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:09:30.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:30.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:09:30.929 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:30.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:30.932 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:30.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:30.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:30.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3123.823ms +2017-07-19 16:09:30.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:30.947 +05:30 [Information] Request finished in 3151.2562ms 200 application/json; charset=utf-8 +2017-07-19 16:09:30.948 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:09:30.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3130.5221ms +2017-07-19 16:09:30.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:09:30.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:09:30.980 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:09:30.981 +05:30 [Information] Request finished in 3192.0368ms 200 application/json; charset=utf-8 +2017-07-19 16:09:30.982 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:09:33.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:33.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:33.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:33.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:33.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2175.6843ms +2017-07-19 16:09:33.159 +05:30 [Information] Request finished in 2200.1992ms 200 application/json; charset=utf-8 +2017-07-19 16:09:33.160 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:09:34.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:09:34.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:09:34.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:09:34.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:09:34.499 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:09:34.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:09:35.222 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" started. +2017-07-19 16:09:35.228 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:09:35.228 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" started. +2017-07-19 16:09:35.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:09:35.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:09:35.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:09:35.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:09:35.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:09:35.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:09:35.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:09:35.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:09:36.164 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" started. +2017-07-19 16:09:36.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:09:36.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:09:36.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:09:37.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:37.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:37.749 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:09:37.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:37.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:37.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3249.306ms +2017-07-19 16:09:37.757 +05:30 [Information] Request finished in 3259.4571ms 200 application/json; charset=utf-8 +2017-07-19 16:09:37.758 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:09:37.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:37.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:37.921 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:09:37.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:37.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:37.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3423.8267ms +2017-07-19 16:09:37.928 +05:30 [Information] Request finished in 3430.5999ms 200 application/json; charset=utf-8 +2017-07-19 16:09:37.928 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:09:38.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:38.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:40.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:40.858 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:09:40.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:40.908 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:09:40.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:40.938 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:40.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:40.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:40.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5686.7643ms +2017-07-19 16:09:40.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:41.019 +05:30 [Information] Request finished in 5765.055ms 200 application/json; charset=utf-8 +2017-07-19 16:09:41.019 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:09:41.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4818.9689ms +2017-07-19 16:09:41.044 +05:30 [Information] Request finished in 4873.9147ms 200 application/json; charset=utf-8 +2017-07-19 16:09:41.045 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" completed keep alive response. +2017-07-19 16:09:41.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:41.079 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:09:41.079 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:09:41.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:41.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:09:41.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:41.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:09:41.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5840.5784ms +2017-07-19 16:09:41.087 +05:30 [Information] Request finished in 5858.33ms 200 application/json; charset=utf-8 +2017-07-19 16:09:41.088 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" completed keep alive response. +2017-07-19 16:09:41.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:41.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:09:41.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:41.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:41.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6734.5559ms +2017-07-19 16:09:41.981 +05:30 [Information] Request finished in 6752.5756ms 200 application/json; charset=utf-8 +2017-07-19 16:09:41.982 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:09:44.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:09:44.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:44.121 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:44.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:44.124 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3040.1138ms +2017-07-19 16:09:44.126 +05:30 [Information] Request finished in 3061.8868ms 200 application/json; charset=utf-8 +2017-07-19 16:09:44.127 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:09:44.134 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:09:44.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:09:44.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:09:46.763 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:09:46.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:09:46.765 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:09:47.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:09:47.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:47.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:47.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:47.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3169.6822ms +2017-07-19 16:09:47.314 +05:30 [Information] Request finished in 3180.5314ms 200 application/json; charset=utf-8 +2017-07-19 16:09:47.315 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:09:48.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:09:48.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:48.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:48.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:48.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2096.3693ms +2017-07-19 16:09:48.866 +05:30 [Information] Request finished in 2103.2061ms 200 application/json; charset=utf-8 +2017-07-19 16:09:48.866 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:09:48.874 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:09:48.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:09:48.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:09:51.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:09:51.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:51.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:51.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:51.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3051.5669ms +2017-07-19 16:09:51.932 +05:30 [Information] Request finished in 3062.9379ms 200 application/json; charset=utf-8 +2017-07-19 16:09:51.933 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" completed keep alive response. +2017-07-19 16:09:51.948 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:09:51.949 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:09:51.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:09:51.955 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:09:51.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:09:51.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:09:54.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:55.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:09:55.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:55.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:55.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:55.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:55.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3115.2118ms +2017-07-19 16:09:55.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:55.078 +05:30 [Information] Request finished in 3131.9903ms 200 application/json; charset=utf-8 +2017-07-19 16:09:55.081 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:09:55.095 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:55.096 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:09:55.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3127.8802ms +2017-07-19 16:09:55.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:09:55.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:09:55.115 +05:30 [Information] Request finished in 3171.3653ms 200 application/json; charset=utf-8 +2017-07-19 16:09:55.116 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" completed keep alive response. +2017-07-19 16:09:58.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:09:58.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:09:58.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:09:58.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:09:58.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.2231ms +2017-07-19 16:09:58.220 +05:30 [Information] Request finished in 3132.5866ms 200 application/json; charset=utf-8 +2017-07-19 16:09:58.221 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:09:59.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:09:59.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:09:59.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:09:59.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:09:59.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:09:59.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:10:00.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:10:00.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:10:00.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:10:00.354 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:10:00.356 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:10:00.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:10:00.476 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:10:00.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:10:00.481 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:10:01.286 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:10:01.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:10:01.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:10:01.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:01.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:01.906 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:01.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:01.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:01.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2365.4912ms +2017-07-19 16:10:01.912 +05:30 [Information] Request finished in 2376.2063ms 200 application/json; charset=utf-8 +2017-07-19 16:10:01.913 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:10:02.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:03.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:03.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:03.519 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:03.519 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:03.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:03.579 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:03.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:03.579 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3171.2451ms +2017-07-19 16:10:03.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:03.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:03.602 +05:30 [Information] Request finished in 3331.1699ms 200 application/json; charset=utf-8 +2017-07-19 16:10:03.603 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" completed keep alive response. +2017-07-19 16:10:03.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3272.0481ms +2017-07-19 16:10:03.643 +05:30 [Information] Request finished in 3397.7489ms 200 application/json; charset=utf-8 +2017-07-19 16:10:03.644 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" completed keep alive response. +2017-07-19 16:10:03.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:07.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:10:07.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:07.929 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:07.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:07.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:08.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6662.6199ms +2017-07-19 16:10:08.036 +05:30 [Information] Request finished in 6803.8827ms 200 application/json; charset=utf-8 +2017-07-19 16:10:08.037 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:10:08.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:08.115 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:10:08.115 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:08.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:10:08.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:08.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:10:08.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:08.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8606.1641ms +2017-07-19 16:10:08.169 +05:30 [Information] Request finished in 8633.2689ms 200 application/json; charset=utf-8 +2017-07-19 16:10:08.170 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:10:08.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:08.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:08.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:08.219 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:08.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7738.0161ms +2017-07-19 16:10:08.224 +05:30 [Information] Request finished in 7952.3862ms 200 application/json; charset=utf-8 +2017-07-19 16:10:08.225 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:10:11.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:10:11.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:11.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:11.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:11.229 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3108.9884ms +2017-07-19 16:10:11.232 +05:30 [Information] Request finished in 3142.931ms 200 application/json; charset=utf-8 +2017-07-19 16:10:11.233 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:10:11.240 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:10:11.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:10:11.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:10:14.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:10:14.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:14.416 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:14.417 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:14.419 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3176.5802ms +2017-07-19 16:10:14.422 +05:30 [Information] Request finished in 3182.1261ms 200 application/json; charset=utf-8 +2017-07-19 16:10:14.422 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" completed keep alive response. +2017-07-19 16:10:16.587 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:10:16.588 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:10:16.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:10:19.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:10:19.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:19.634 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:19.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:19.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.5689ms +2017-07-19 16:10:19.641 +05:30 [Information] Request finished in 3054.2211ms 200 application/json; charset=utf-8 +2017-07-19 16:10:19.642 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" completed keep alive response. +2017-07-19 16:10:19.659 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:10:19.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:10:19.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:10:22.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:10:22.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:22.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:22.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:22.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.5394ms +2017-07-19 16:10:22.708 +05:30 [Information] Request finished in 3063.47ms 200 application/json; charset=utf-8 +2017-07-19 16:10:22.708 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" completed keep alive response. +2017-07-19 16:10:22.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:10:22.740 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:10:22.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:10:22.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:10:22.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:10:22.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:10:25.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:10:25.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:25.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:25.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:25.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3057.2221ms +2017-07-19 16:10:25.806 +05:30 [Information] Request finished in 3088.8969ms 200 application/json; charset=utf-8 +2017-07-19 16:10:25.806 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" completed keep alive response. +2017-07-19 16:10:25.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:25.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:25.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:25.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:25.940 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3193.5538ms +2017-07-19 16:10:25.948 +05:30 [Information] Request finished in 3227.6913ms 200 application/json; charset=utf-8 +2017-07-19 16:10:25.949 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" completed keep alive response. +2017-07-19 16:10:25.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:10:25.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:10:25.974 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:10:29.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:29.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:29.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:29.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:29.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3085.8869ms +2017-07-19 16:10:29.066 +05:30 [Information] Request finished in 3093.2663ms 200 application/json; charset=utf-8 +2017-07-19 16:10:29.067 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:10:30.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:10:30.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:10:30.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:10:30.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:10:30.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:10:30.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:10:32.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:32.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:32.874 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:32.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:32.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:32.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2275.2908ms +2017-07-19 16:10:32.880 +05:30 [Information] Request finished in 2286.8936ms 200 application/json; charset=utf-8 +2017-07-19 16:10:32.881 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" completed keep alive response. +2017-07-19 16:10:33.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:33.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:33.814 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:10:33.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:33.826 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:33.831 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3223.1604ms +2017-07-19 16:10:33.837 +05:30 [Information] Request finished in 3242.2127ms 200 application/json; charset=utf-8 +2017-07-19 16:10:33.838 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" completed keep alive response. +2017-07-19 16:10:46.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:10:46.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:10:46.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:10:46.261 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:10:46.262 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:10:46.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:10:46.276 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:10:46.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:10:46.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:10:47.012 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:10:47.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:10:47.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:10:49.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:10:49.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:10:49.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:10:49.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:10:49.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2132.0092ms +2017-07-19 16:10:49.165 +05:30 [Information] Request finished in 2157.2385ms 200 application/json; charset=utf-8 +2017-07-19 16:10:49.166 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" completed keep alive response. +2017-07-19 16:10:49.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:10:49.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:10:49.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:10:50.103 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:10:50.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:13:03.524 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" received FIN. +2017-07-19 16:13:03.524 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" received FIN. +2017-07-19 16:13:03.525 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" received FIN. +2017-07-19 16:13:03.528 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" received FIN. +2017-07-19 16:13:03.566 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" received FIN. +2017-07-19 16:13:03.562 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:13:03.570 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" received FIN. +2017-07-19 16:13:03.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:13:03.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:03.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:03.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:03.719 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" disconnecting. +2017-07-19 16:13:03.720 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" disconnecting. +2017-07-19 16:13:03.721 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" sending FIN. +2017-07-19 16:13:03.724 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" sent FIN with status "0". +2017-07-19 16:13:03.724 +05:30 [Debug] Connection id ""0HL6EHQO57INV"" stopped. +2017-07-19 16:13:03.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 134539.8119ms +2017-07-19 16:13:03.778 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" disconnecting. +2017-07-19 16:13:03.811 +05:30 [Information] Connection id ""0HL6EHQO57INU"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 16:13:03.811 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" sending FIN. +2017-07-19 16:13:03.814 +05:30 [Debug] Connection id ""0HL6EHQO57INU"" stopped. +2017-07-19 16:13:03.836 +05:30 [Information] Request finished in 134638.2554ms 200 application/json; charset=utf-8 +2017-07-19 16:13:03.837 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" sent FIN with status "0". +2017-07-19 16:13:03.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:03.880 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:13:03.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:03.878 +05:30 [Debug] Connection id ""0HL6EHQO57IO0"" stopped. +2017-07-19 16:13:03.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:03.899 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" disconnecting. +2017-07-19 16:13:03.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 137628.6261ms +2017-07-19 16:13:03.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:03.923 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:13:03.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:03.929 +05:30 [Information] Connection id ""0HL6EHQO57INR"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 16:13:03.931 +05:30 [Debug] Connection id ""0HL6EHQO57INR"" stopped. +2017-07-19 16:13:03.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:03.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:03.938 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" disconnecting. +2017-07-19 16:13:03.942 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:13:03.945 +05:30 [Information] Request finished in 137706.453ms 200 application/json; charset=utf-8 +2017-07-19 16:13:03.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:03.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 137685.1944ms +2017-07-19 16:13:03.955 +05:30 [Information] Connection id ""0HL6EHQO57INS"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 16:13:03.957 +05:30 [Debug] Connection id ""0HL6EHQO57INS"" stopped. +2017-07-19 16:13:03.959 +05:30 [Information] Request finished in 137730.168ms 200 application/json; charset=utf-8 +2017-07-19 16:13:03.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:03.961 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" disconnecting. +2017-07-19 16:13:04.002 +05:30 [Information] Connection id ""0HL6EHQO57INT"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 16:13:03.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 137678.786ms +2017-07-19 16:13:04.003 +05:30 [Debug] Connection id ""0HL6EHQO57INT"" stopped. +2017-07-19 16:13:04.006 +05:30 [Information] Request finished in 137776.3042ms 200 application/json; charset=utf-8 +2017-07-19 16:13:41.506 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" started. +2017-07-19 16:13:41.509 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:13:41.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:13:41.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:13:44.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:13:44.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:44.582 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:44.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:44.584 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.1226ms +2017-07-19 16:13:44.587 +05:30 [Information] Request finished in 3078.2688ms 200 application/json; charset=utf-8 +2017-07-19 16:13:44.588 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:13:44.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:13:44.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:13:44.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:13:47.647 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:13:47.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:47.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:47.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:47.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.2967ms +2017-07-19 16:13:47.658 +05:30 [Information] Request finished in 3060.6847ms 200 application/json; charset=utf-8 +2017-07-19 16:13:47.658 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:13:48.505 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:13:48.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:13:48.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:13:51.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:13:51.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:51.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:51.626 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:51.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3116.5602ms +2017-07-19 16:13:51.630 +05:30 [Information] Request finished in 3132.7428ms 200 application/json; charset=utf-8 +2017-07-19 16:13:51.630 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:13:51.633 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:13:51.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:13:51.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:13:54.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:13:54.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:54.691 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:54.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:54.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.2981ms +2017-07-19 16:13:54.726 +05:30 [Information] Request finished in 3093.3639ms 200 application/json; charset=utf-8 +2017-07-19 16:13:54.728 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:13:54.840 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:13:54.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:13:54.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:13:56.768 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" started. +2017-07-19 16:13:56.771 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:13:56.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:13:56.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:13:57.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:13:57.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:57.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:57.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:57.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.0358ms +2017-07-19 16:13:57.902 +05:30 [Information] Request finished in 3074.3199ms 200 application/json; charset=utf-8 +2017-07-19 16:13:57.904 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:13:57.906 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:13:57.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:13:57.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:13:59.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:13:59.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:13:59.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:13:59.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:13:59.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.6142ms +2017-07-19 16:13:59.826 +05:30 [Information] Request finished in 3055.8592ms 200 application/json; charset=utf-8 +2017-07-19 16:13:59.827 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:13:59.831 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:13:59.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:13:59.835 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:14:00.813 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" started. +2017-07-19 16:14:00.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:14:00.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:14:00.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:14:00.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:00.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:00.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:00.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:00.971 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.6345ms +2017-07-19 16:14:00.974 +05:30 [Information] Request finished in 3067.2007ms 200 application/json; charset=utf-8 +2017-07-19 16:14:00.974 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:01.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:14:01.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:14:01.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:14:02.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:02.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:02.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:02.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:02.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:02.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3116.1106ms +2017-07-19 16:14:02.960 +05:30 [Information] Request finished in 3130.1702ms 200 application/json; charset=utf-8 +2017-07-19 16:14:02.961 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:02.972 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" started. +2017-07-19 16:14:02.973 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:14:02.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:14:02.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:14:02.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:14:02.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:14:02.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:14:03.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:03.024 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:03.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:03.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2210.6141ms +2017-07-19 16:14:03.029 +05:30 [Information] Request finished in 2215.483ms 200 application/json; charset=utf-8 +2017-07-19 16:14:03.030 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:03.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:14:03.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:14:03.085 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:14:04.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:04.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:04.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:04.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:04.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3108.2631ms +2017-07-19 16:14:04.150 +05:30 [Information] Request finished in 3121.445ms 200 application/json; charset=utf-8 +2017-07-19 16:14:04.151 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:04.158 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:14:04.159 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:14:04.160 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:14:06.227 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:06.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:06.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:06.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:06.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:06.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:06.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:06.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:06.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3278.4071ms +2017-07-19 16:14:06.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:06.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3212.5071ms +2017-07-19 16:14:06.303 +05:30 [Information] Request finished in 3329.1249ms 200 application/json; charset=utf-8 +2017-07-19 16:14:06.304 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:06.320 +05:30 [Information] Request finished in 3220.5973ms 200 application/json; charset=utf-8 +2017-07-19 16:14:06.336 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:06.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:06.338 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:14:06.341 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:14:06.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:06.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:14:06.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:06.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3356.7617ms +2017-07-19 16:14:06.354 +05:30 [Information] Request finished in 3376.6142ms 200 application/json; charset=utf-8 +2017-07-19 16:14:06.355 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:14:06.362 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:14:06.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:14:06.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:14:07.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:07.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:07.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:07.241 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:07.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3080.4813ms +2017-07-19 16:14:07.253 +05:30 [Information] Request finished in 3094.4644ms 200 application/json; charset=utf-8 +2017-07-19 16:14:07.254 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:07.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:14:07.295 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:14:07.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:14:07.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:14:07.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:14:07.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:14:09.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:09.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:09.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:09.482 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:09.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:09.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:09.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:09.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:09.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3123.8515ms +2017-07-19 16:14:09.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3146.3876ms +2017-07-19 16:14:09.499 +05:30 [Information] Request finished in 3136.4067ms 200 application/json; charset=utf-8 +2017-07-19 16:14:09.502 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:09.515 +05:30 [Information] Request finished in 3162.8606ms 200 application/json; charset=utf-8 +2017-07-19 16:14:09.518 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:09.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:14:09.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:14:09.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:14:09.566 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:14:09.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:14:09.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:14:10.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:10.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:10.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:10.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:10.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:10.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3119.8536ms +2017-07-19 16:14:10.428 +05:30 [Information] Request finished in 3138.7467ms 200 application/json; charset=utf-8 +2017-07-19 16:14:10.428 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:10.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:10.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:10.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:10.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3159.6179ms +2017-07-19 16:14:10.464 +05:30 [Information] Request finished in 3182.8104ms 200 application/json; charset=utf-8 +2017-07-19 16:14:10.465 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:14:10.470 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:14:10.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:14:10.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:14:11.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:11.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:11.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:11.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:11.805 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2232.5248ms +2017-07-19 16:14:11.808 +05:30 [Information] Request finished in 2256.3335ms 200 application/json; charset=utf-8 +2017-07-19 16:14:11.808 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:11.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:14:11.813 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:14:11.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:14:12.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:12.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:12.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:12.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:12.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.6749ms +2017-07-19 16:14:12.663 +05:30 [Information] Request finished in 3108.6315ms 200 application/json; charset=utf-8 +2017-07-19 16:14:12.664 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:13.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:13.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:13.576 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:13.578 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:13.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3107.6569ms +2017-07-19 16:14:13.584 +05:30 [Information] Request finished in 3114.6195ms 200 application/json; charset=utf-8 +2017-07-19 16:14:13.585 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:14.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:14.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:14.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:14.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:14.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3140.5784ms +2017-07-19 16:14:14.959 +05:30 [Information] Request finished in 3146.767ms 200 application/json; charset=utf-8 +2017-07-19 16:14:14.959 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:14:16.484 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:14:16.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:14:16.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:14:16.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:14:16.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:14:16.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:14:17.092 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" started. +2017-07-19 16:14:17.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:14:17.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:14:17.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:14:17.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:14:17.127 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:14:17.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:14:17.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:14:17.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:14:17.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:14:17.777 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" started. +2017-07-19 16:14:17.778 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:14:17.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:14:17.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:14:19.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:19.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:19.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:19.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:19.661 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:19.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3170.768ms +2017-07-19 16:14:19.666 +05:30 [Information] Request finished in 3185.6222ms 200 application/json; charset=utf-8 +2017-07-19 16:14:19.667 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:19.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:19.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:19.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:19.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:19.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:19.717 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3226.1356ms +2017-07-19 16:14:19.720 +05:30 [Information] Request finished in 3239.9032ms 200 application/json; charset=utf-8 +2017-07-19 16:14:19.725 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:20.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:20.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:20.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:21.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:21.769 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:21.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:21.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:21.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:21.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4699.8062ms +2017-07-19 16:14:21.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:21.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:21.900 +05:30 [Information] Request finished in 4788.9568ms 200 application/json; charset=utf-8 +2017-07-19 16:14:21.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:21.969 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:14:22.013 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4215.9253ms +2017-07-19 16:14:22.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:22.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:22.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:22.030 +05:30 [Information] Request finished in 4252.4002ms 200 application/json; charset=utf-8 +2017-07-19 16:14:22.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:22.032 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:14:22.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4922.0453ms +2017-07-19 16:14:22.039 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:14:22.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:14:22.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:14:22.042 +05:30 [Information] Request finished in 4952.5285ms 200 application/json; charset=utf-8 +2017-07-19 16:14:22.044 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:22.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:22.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:22.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:22.134 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:22.145 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4993.4337ms +2017-07-19 16:14:22.151 +05:30 [Information] Request finished in 5060.3345ms 200 application/json; charset=utf-8 +2017-07-19 16:14:22.152 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:14:25.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:25.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:25.101 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:25.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:25.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3060.0478ms +2017-07-19 16:14:25.107 +05:30 [Information] Request finished in 3070.417ms 200 application/json; charset=utf-8 +2017-07-19 16:14:25.108 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:25.130 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:14:25.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:14:25.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:14:27.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=10 +2017-07-19 16:14:27.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-19 16:14:27.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-19 16:14:28.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:14:28.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:28.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:28.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:28.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3106.7528ms +2017-07-19 16:14:28.243 +05:30 [Information] Request finished in 3112.6871ms 200 application/json; charset=utf-8 +2017-07-19 16:14:28.245 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:30.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "10"]) - ModelState is Valid +2017-07-19 16:14:39.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:14:39.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:14:39.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:14:39.062 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:14:39.063 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:14:39.064 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:14:39.590 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:14:39.592 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:14:39.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:14:41.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:14:41.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:41.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:41.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:41.682 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2083.3946ms +2017-07-19 16:14:41.684 +05:30 [Information] Request finished in 2094.0751ms 200 application/json; charset=utf-8 +2017-07-19 16:14:41.685 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:14:41.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:14:41.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:14:41.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:14:42.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:42.256 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:14:42.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:42.324 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:42.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:42.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:42.329 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3262.6806ms +2017-07-19 16:14:42.332 +05:30 [Information] Request finished in 3299.7418ms 200 application/json; charset=utf-8 +2017-07-19 16:14:42.332 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:14:43.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:43.804 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:43.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:43.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:43.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4750.2684ms +2017-07-19 16:14:43.816 +05:30 [Information] Request finished in 4781.4138ms 200 application/json; charset=utf-8 +2017-07-19 16:14:43.816 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" completed keep alive response. +2017-07-19 16:14:44.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:14:44.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:44.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:44.753 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:44.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3063.3455ms +2017-07-19 16:14:44.758 +05:30 [Information] Request finished in 3070.61ms 200 application/json; charset=utf-8 +2017-07-19 16:14:44.758 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" completed keep alive response. +2017-07-19 16:14:44.764 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:14:44.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:14:44.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:14:47.820 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:14:47.867 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:47.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:47.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:47.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3104.0258ms +2017-07-19 16:14:47.880 +05:30 [Information] Request finished in 3116.2662ms 200 application/json; charset=utf-8 +2017-07-19 16:14:47.882 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:14:48.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:14:48.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:14:48.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:14:48.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:14:48.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 21167.365ms +2017-07-19 16:14:48.394 +05:30 [Information] Request finished in 21176.2855ms 200 application/json; charset=utf-8 +2017-07-19 16:14:48.395 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:15:34.466 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:15:34.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:15:34.467 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:15:41.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:15:41.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:41.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:41.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:41.731 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7261.8149ms +2017-07-19 16:15:41.736 +05:30 [Information] Request finished in 7268.7576ms 200 application/json; charset=utf-8 +2017-07-19 16:15:41.738 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:15:41.741 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:15:41.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:15:41.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:15:44.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:15:44.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:44.807 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:44.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:44.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3106.2992ms +2017-07-19 16:15:44.854 +05:30 [Information] Request finished in 3113.9077ms 200 application/json; charset=utf-8 +2017-07-19 16:15:44.855 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:15:44.867 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" received FIN. +2017-07-19 16:15:44.867 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" received FIN. +2017-07-19 16:15:44.885 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" disconnecting. +2017-07-19 16:15:44.886 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" sending FIN. +2017-07-19 16:15:44.887 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" sent FIN with status "0". +2017-07-19 16:15:44.887 +05:30 [Debug] Connection id ""0HL6EHQO57IO1"" stopped. +2017-07-19 16:15:44.883 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" disconnecting. +2017-07-19 16:15:44.888 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" sending FIN. +2017-07-19 16:15:44.889 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" sent FIN with status "0". +2017-07-19 16:15:44.894 +05:30 [Debug] Connection id ""0HL6EHQO57IO2"" stopped. +2017-07-19 16:15:44.897 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:15:44.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:15:44.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:15:44.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:15:44.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:15:44.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:15:47.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:15:47.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:47.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:47.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:47.995 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3066.3267ms +2017-07-19 16:15:48.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:48.017 +05:30 [Information] Request finished in 3129.4034ms 200 application/json; charset=utf-8 +2017-07-19 16:15:48.018 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:15:48.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:48.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:48.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:48.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3207.1194ms +2017-07-19 16:15:48.110 +05:30 [Information] Request finished in 3220.7396ms 200 application/json; charset=utf-8 +2017-07-19 16:15:48.111 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:15:48.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:15:48.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:15:48.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:15:51.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:51.272 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:51.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:51.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:51.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3131.0551ms +2017-07-19 16:15:51.279 +05:30 [Information] Request finished in 3157.2276ms 200 application/json; charset=utf-8 +2017-07-19 16:15:51.279 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:15:52.816 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:15:52.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:15:52.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:15:52.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:15:52.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:15:52.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:15:53.520 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" started. +2017-07-19 16:15:53.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:15:53.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:15:53.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:15:53.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:15:53.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:15:53.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:15:53.582 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:15:53.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:15:53.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:15:54.349 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" started. +2017-07-19 16:15:54.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:15:54.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:15:54.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:15:56.083 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:56.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:56.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:56.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:15:56.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:56.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:56.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3360.8318ms +2017-07-19 16:15:56.182 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:56.183 +05:30 [Information] Request finished in 3374.6487ms 200 application/json; charset=utf-8 +2017-07-19 16:15:56.187 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:15:56.183 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:15:56.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:56.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:56.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3360.954ms +2017-07-19 16:15:56.197 +05:30 [Information] Request finished in 3386.3541ms 200 application/json; charset=utf-8 +2017-07-19 16:15:56.198 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:15:56.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:58.354 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:15:58.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:58.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:58.362 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:58.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:15:58.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:58.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4070.7666ms +2017-07-19 16:15:58.492 +05:30 [Information] Request finished in 4125.4985ms 200 application/json; charset=utf-8 +2017-07-19 16:15:58.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:58.492 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" completed keep alive response. +2017-07-19 16:15:58.517 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:15:58.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:58.536 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:15:58.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:15:58.537 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:15:58.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:58.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4973.8549ms +2017-07-19 16:15:58.654 +05:30 [Information] Request finished in 5127.8074ms 200 application/json; charset=utf-8 +2017-07-19 16:15:58.700 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:15:58.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:58.717 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:15:58.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:58.719 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:58.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5154.3937ms +2017-07-19 16:15:58.728 +05:30 [Information] Request finished in 5193.7786ms 200 application/json; charset=utf-8 +2017-07-19 16:15:58.728 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" completed keep alive response. +2017-07-19 16:15:59.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:15:59.177 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:15:59.178 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:15:59.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:15:59.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5610.7033ms +2017-07-19 16:15:59.185 +05:30 [Information] Request finished in 5652.7655ms 200 application/json; charset=utf-8 +2017-07-19 16:15:59.186 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:16:00.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:16:00.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:00.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:00.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:00.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2207.7626ms +2017-07-19 16:16:00.768 +05:30 [Information] Request finished in 2249.9649ms 200 application/json; charset=utf-8 +2017-07-19 16:16:00.769 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:16:00.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:16:00.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:16:00.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:16:02.238 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-19 16:16:02.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-19 16:16:02.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-19 16:16:03.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:16:03.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:03.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:03.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:03.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3125.3923ms +2017-07-19 16:16:03.927 +05:30 [Information] Request finished in 3134.9636ms 200 application/json; charset=utf-8 +2017-07-19 16:16:03.928 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:16:04.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:16:04.131 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:16:04.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:16:04.132 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:16:04.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:16:04.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:16:04.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:16:04.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:16:04.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:16:05.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:05.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:05.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:05.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:05.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:05.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 3058.9675ms +2017-07-19 16:16:05.303 +05:30 [Information] Request finished in 3066.3092ms 200 application/json; charset=utf-8 +2017-07-19 16:16:05.304 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" completed keep alive response. +2017-07-19 16:16:07.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:07.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:07.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:07.320 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:07.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:07.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:07.324 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3186.5369ms +2017-07-19 16:16:07.326 +05:30 [Information] Request finished in 3195.9857ms 200 application/json; charset=utf-8 +2017-07-19 16:16:07.327 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:16:07.641 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:16:07.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:07.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:07.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:07.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.2679ms +2017-07-19 16:16:07.652 +05:30 [Information] Request finished in 3075.959ms 200 application/json; charset=utf-8 +2017-07-19 16:16:07.653 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:16:07.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:16:07.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:16:07.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:16:07.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:07.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:07.945 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:07.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:07.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3827.3133ms +2017-07-19 16:16:07.978 +05:30 [Information] Request finished in 3840.2394ms 200 application/json; charset=utf-8 +2017-07-19 16:16:07.978 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" completed keep alive response. +2017-07-19 16:16:10.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:16:10.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:10.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:10.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:10.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3063.8262ms +2017-07-19 16:16:10.726 +05:30 [Information] Request finished in 3070.0128ms 200 application/json; charset=utf-8 +2017-07-19 16:16:10.726 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:16:10.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:16:10.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:16:10.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:16:12.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-19 16:16:12.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-19 16:16:12.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-19 16:16:13.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:16:13.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:13.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:13.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:13.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3126.6778ms +2017-07-19 16:16:13.868 +05:30 [Information] Request finished in 3135.5615ms 200 application/json; charset=utf-8 +2017-07-19 16:16:13.868 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:16:14.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:16:14.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:16:14.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:16:14.097 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:16:14.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:16:14.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:16:14.609 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:16:14.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:16:14.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:16:15.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:15.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:15.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:15.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:15.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:15.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 3093.446ms +2017-07-19 16:16:15.521 +05:30 [Information] Request finished in 3098.9145ms 200 application/json; charset=utf-8 +2017-07-19 16:16:15.521 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" completed keep alive response. +2017-07-19 16:16:16.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:16.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:16:16.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:16.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:16.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:16.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:16.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2297.3429ms +2017-07-19 16:16:16.399 +05:30 [Information] Request finished in 2307.442ms 200 application/json; charset=utf-8 +2017-07-19 16:16:16.400 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" completed keep alive response. +2017-07-19 16:16:17.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:17.045 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:16:17.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:17.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:17.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2950.4031ms +2017-07-19 16:16:17.057 +05:30 [Information] Request finished in 2965.103ms 200 application/json; charset=utf-8 +2017-07-19 16:16:17.058 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" completed keep alive response. +2017-07-19 16:16:17.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:16:17.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:17.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:17.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:17.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3029.0848ms +2017-07-19 16:16:17.643 +05:30 [Information] Request finished in 3033.629ms 200 application/json; charset=utf-8 +2017-07-19 16:16:17.643 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" completed keep alive response. +2017-07-19 16:16:17.646 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:16:17.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:16:17.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:16:20.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:16:20.684 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:20.685 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:20.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:20.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3039.9857ms +2017-07-19 16:16:20.701 +05:30 [Information] Request finished in 3053.6126ms 200 application/json; charset=utf-8 +2017-07-19 16:16:20.703 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" completed keep alive response. +2017-07-19 16:16:20.721 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:16:20.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:16:20.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:16:23.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:16:23.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:16:23.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:16:23.873 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:16:23.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3150.9109ms +2017-07-19 16:16:23.880 +05:30 [Information] Request finished in 3164.8662ms 200 application/json; charset=utf-8 +2017-07-19 16:16:23.881 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" completed keep alive response. +2017-07-19 16:18:40.487 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" received FIN. +2017-07-19 16:18:40.487 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" received FIN. +2017-07-19 16:18:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" received FIN. +2017-07-19 16:18:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" received FIN. +2017-07-19 16:18:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" received FIN. +2017-07-19 16:18:40.490 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" disconnecting. +2017-07-19 16:18:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" disconnecting. +2017-07-19 16:18:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" sending FIN. +2017-07-19 16:18:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" sent FIN with status "0". +2017-07-19 16:18:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IO5"" stopped. +2017-07-19 16:18:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" received FIN. +2017-07-19 16:18:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" sending FIN. +2017-07-19 16:18:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" sent FIN with status "0". +2017-07-19 16:18:40.490 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" disconnecting. +2017-07-19 16:18:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" disconnecting. +2017-07-19 16:18:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" sending FIN. +2017-07-19 16:18:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" sent FIN with status "0". +2017-07-19 16:18:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IO7"" stopped. +2017-07-19 16:18:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" disconnecting. +2017-07-19 16:18:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" disconnecting. +2017-07-19 16:18:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" sending FIN. +2017-07-19 16:18:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" sent FIN with status "0". +2017-07-19 16:18:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IO4"" stopped. +2017-07-19 16:18:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IO3"" stopped. +2017-07-19 16:18:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" sending FIN. +2017-07-19 16:18:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" sending FIN. +2017-07-19 16:18:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" sent FIN with status "0". +2017-07-19 16:18:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IO8"" stopped. +2017-07-19 16:18:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" sent FIN with status "0". +2017-07-19 16:18:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IO6"" stopped. +2017-07-19 16:39:27.188 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" started. +2017-07-19 16:39:27.196 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:39:27.196 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:39:27.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:39:30.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:39:30.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:39:30.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:39:30.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:39:30.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3172.5415ms +2017-07-19 16:39:30.374 +05:30 [Information] Request finished in 3183.4315ms 200 application/json; charset=utf-8 +2017-07-19 16:39:30.375 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" completed keep alive response. +2017-07-19 16:39:30.388 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:39:30.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:39:30.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:39:33.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:39:33.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:39:33.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:39:33.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:39:33.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.3345ms +2017-07-19 16:39:33.456 +05:30 [Information] Request finished in 3069.9979ms 200 application/json; charset=utf-8 +2017-07-19 16:39:33.457 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" completed keep alive response. +2017-07-19 16:40:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" received FIN. +2017-07-19 16:40:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" disconnecting. +2017-07-19 16:40:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" sending FIN. +2017-07-19 16:40:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" sent FIN with status "0". +2017-07-19 16:40:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IO9"" stopped. +2017-07-19 16:42:00.161 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" started. +2017-07-19 16:42:00.162 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:00.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:00.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:42:03.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:03.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:03.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:03.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:03.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3103.8268ms +2017-07-19 16:42:03.279 +05:30 [Information] Request finished in 3112.2276ms 200 application/json; charset=utf-8 +2017-07-19 16:42:03.279 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:03.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:42:03.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:42:03.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:42:06.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:42:06.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:06.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:06.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:06.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3041.9151ms +2017-07-19 16:42:06.337 +05:30 [Information] Request finished in 3053.1382ms 200 application/json; charset=utf-8 +2017-07-19 16:42:06.338 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:06.347 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" started. +2017-07-19 16:42:06.360 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:42:06.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:42:06.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:42:06.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:42:06.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:42:06.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:42:09.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:09.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:09.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:09.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:09.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:09.504 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3141.8514ms +2017-07-19 16:42:09.506 +05:30 [Information] Request finished in 3160.7365ms 200 application/json; charset=utf-8 +2017-07-19 16:42:09.507 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:09.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:09.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:09.550 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:09.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3184.7968ms +2017-07-19 16:42:09.555 +05:30 [Information] Request finished in 3194.8264ms 200 application/json; charset=utf-8 +2017-07-19 16:42:09.556 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:42:09.574 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:42:09.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:42:09.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:42:12.619 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:12.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:12.702 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:12.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:12.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.1137ms +2017-07-19 16:42:12.707 +05:30 [Information] Request finished in 3134.669ms 200 application/json; charset=utf-8 +2017-07-19 16:42:12.708 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:14.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:42:14.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:42:14.598 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:42:14.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:42:14.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:42:14.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:42:15.029 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" started. +2017-07-19 16:42:15.031 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" started. +2017-07-19 16:42:15.031 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" started. +2017-07-19 16:42:15.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:42:15.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:42:15.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:42:15.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:42:15.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:42:15.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:42:15.040 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:42:15.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:42:15.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:42:15.972 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" started. +2017-07-19 16:42:15.999 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:16.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:16.000 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:42:18.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:18.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:18.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:18.272 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:42:18.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:18.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:18.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3675.0219ms +2017-07-19 16:42:18.291 +05:30 [Information] Request finished in 3698.0301ms 200 application/json; charset=utf-8 +2017-07-19 16:42:18.292 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:42:18.318 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:18.319 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:42:18.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:18.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:18.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3720.7324ms +2017-07-19 16:42:18.325 +05:30 [Information] Request finished in 3737.3868ms 200 application/json; charset=utf-8 +2017-07-19 16:42:18.325 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:18.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:18.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:18.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:18.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:42:18.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:18.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:18.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3420.7872ms +2017-07-19 16:42:18.482 +05:30 [Information] Request finished in 3448.3783ms 200 application/json; charset=utf-8 +2017-07-19 16:42:18.483 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:42:19.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:19.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:19.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:19.386 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:42:19.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:19.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:19.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:19.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:19.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4343.9747ms +2017-07-19 16:42:19.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:19.413 +05:30 [Information] Request finished in 4359.7009ms 200 application/json; charset=utf-8 +2017-07-19 16:42:19.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3391.6696ms +2017-07-19 16:42:19.414 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:42:19.418 +05:30 [Information] Request finished in 3439.7912ms 200 application/json; charset=utf-8 +2017-07-19 16:42:19.419 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:42:19.442 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:42:19.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:42:19.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:42:20.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:20.724 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:42:20.724 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:20.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:20.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5684.136ms +2017-07-19 16:42:20.741 +05:30 [Information] Request finished in 5705.8514ms 200 application/json; charset=utf-8 +2017-07-19 16:42:20.742 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:42:22.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:42:22.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:22.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:22.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:22.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.2659ms +2017-07-19 16:42:22.510 +05:30 [Information] Request finished in 3084.5421ms 200 application/json; charset=utf-8 +2017-07-19 16:42:22.510 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:42:22.524 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:42:22.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:42:22.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:42:25.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:42:25.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:25.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:25.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:25.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3065.4457ms +2017-07-19 16:42:25.595 +05:30 [Information] Request finished in 3072.3434ms 200 application/json; charset=utf-8 +2017-07-19 16:42:25.596 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:36.365 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:36.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:36.367 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:42:37.416 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:37.417 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:37.418 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:42:39.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:39.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:39.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:39.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:39.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3280.27ms +2017-07-19 16:42:39.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:39.685 +05:30 [Information] Request finished in 3333.4834ms 200 application/json; charset=utf-8 +2017-07-19 16:42:39.686 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:39.686 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:42:39.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:39.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:39.696 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2270.165ms +2017-07-19 16:42:39.711 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:42:39.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:42:39.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:42:39.723 +05:30 [Information] Request finished in 2301.0508ms 200 application/json; charset=utf-8 +2017-07-19 16:42:39.724 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:42:39.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:42:39.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:42:39.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:42:41.925 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:42:41.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:41.933 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:41.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:41.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2199.9022ms +2017-07-19 16:42:41.942 +05:30 [Information] Request finished in 2214.7292ms 200 application/json; charset=utf-8 +2017-07-19 16:42:41.943 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:42:42.032 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:42.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:42.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:42:42.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:42:42.786 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:42.787 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:42.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:42.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3078.187ms +2017-07-19 16:42:42.796 +05:30 [Information] Request finished in 3103.5322ms 200 application/json; charset=utf-8 +2017-07-19 16:42:42.797 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:42:42.834 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 16:42:42.835 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 16:42:42.835 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 16:42:45.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:45.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:45.068 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:45.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:45.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3035.9636ms +2017-07-19 16:42:45.074 +05:30 [Information] Request finished in 3041.4649ms 200 application/json; charset=utf-8 +2017-07-19 16:42:45.075 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:42:45.086 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:42:45.086 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:42:45.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:42:45.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["59", "8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:45.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 16:42:45.912 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 16:42:45.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3077.313ms +2017-07-19 16:42:45.916 +05:30 [Information] Request finished in 3083.6502ms 200 +2017-07-19 16:42:45.916 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:42:48.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:42:48.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:48.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:48.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:48.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3144.1337ms +2017-07-19 16:42:48.239 +05:30 [Information] Request finished in 3157.6196ms 200 application/json; charset=utf-8 +2017-07-19 16:42:48.240 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:42:48.251 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:42:48.253 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:42:48.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:42:48.255 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:42:48.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:42:48.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:42:51.315 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:51.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:42:51.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:51.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:51.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:51.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:51.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:51.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:51.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3257.1231ms +2017-07-19 16:42:51.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3265.3467ms +2017-07-19 16:42:51.534 +05:30 [Information] Request finished in 3276.2019ms 200 application/json; charset=utf-8 +2017-07-19 16:42:51.535 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:42:51.552 +05:30 [Information] Request finished in 3288.87ms 200 application/json; charset=utf-8 +2017-07-19 16:42:51.557 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:42:51.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:42:51.559 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:42:51.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:42:53.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:42:53.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:42:53.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:42:53.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:42:53.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2309.2873ms +2017-07-19 16:42:53.879 +05:30 [Information] Request finished in 2328.9743ms 200 application/json; charset=utf-8 +2017-07-19 16:42:53.879 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:42:58.078 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:42:58.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:42:58.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:43:01.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce91f44aefbc"]) - ModelState is Valid +2017-07-19 16:43:01.195 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:01.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:01.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:01.200 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3118.3817ms +2017-07-19 16:43:01.202 +05:30 [Information] Request finished in 3125.7597ms 200 application/json; charset=utf-8 +2017-07-19 16:43:01.203 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:43:10.474 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:43:10.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:43:10.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:43:13.566 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:43:13.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:13.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:13.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:13.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3228.3034ms +2017-07-19 16:43:13.722 +05:30 [Information] Request finished in 3245.1757ms 200 application/json; charset=utf-8 +2017-07-19 16:43:13.723 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:43:13.815 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:43:13.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:43:13.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:43:16.992 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:17.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:17.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:17.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:17.089 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3267.9333ms +2017-07-19 16:43:17.100 +05:30 [Information] Request finished in 3282.1855ms 200 application/json; charset=utf-8 +2017-07-19 16:43:17.101 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:43:17.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:43:17.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:43:17.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:43:20.180 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:20.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:20.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:20.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:20.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3141.173ms +2017-07-19 16:43:20.285 +05:30 [Information] Request finished in 3157.4454ms 200 application/json; charset=utf-8 +2017-07-19 16:43:20.286 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:43:21.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:43:21.721 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:43:21.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:43:21.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:43:21.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:43:21.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:43:22.363 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:43:22.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:43:22.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:43:22.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:43:22.371 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:43:22.372 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:43:22.426 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:43:22.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:43:22.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:43:25.431 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:43:25.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:43:25.433 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:43:28.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:28.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:28.534 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:43:28.537 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:28.652 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:28.719 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6929.7528ms +2017-07-19 16:43:29.393 +05:30 [Information] Request finished in 7447.4169ms 200 application/json; charset=utf-8 +2017-07-19 16:43:29.394 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:43:29.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:29.576 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:29.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:29.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:43:29.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:29.836 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:43:29.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:29.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:30.427 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:30.428 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:43:30.428 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:30.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 8195.0889ms +2017-07-19 16:43:30.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:30.496 +05:30 [Information] Request finished in 8747.3193ms 200 application/json; charset=utf-8 +2017-07-19 16:43:30.497 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:43:30.543 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 8095.6867ms +2017-07-19 16:43:30.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:43:30.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:30.646 +05:30 [Information] Request finished in 8238.6637ms 200 application/json; charset=utf-8 +2017-07-19 16:43:30.646 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:43:30.649 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:43:30.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:30.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:30.679 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8305.295ms +2017-07-19 16:43:30.682 +05:30 [Information] Request finished in 8328.5452ms 200 application/json; charset=utf-8 +2017-07-19 16:43:30.682 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:43:30.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:30.794 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:43:30.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:30.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:30.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8369.5324ms +2017-07-19 16:43:30.801 +05:30 [Information] Request finished in 8442.3778ms 200 application/json; charset=utf-8 +2017-07-19 16:43:30.802 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:43:30.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:30.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:30.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:30.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5406.7694ms +2017-07-19 16:43:30.846 +05:30 [Information] Request finished in 5432.0232ms 200 application/json; charset=utf-8 +2017-07-19 16:43:30.847 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:43:42.424 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:43:42.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:43:42.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:43:44.749 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:43:44.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:43:44.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:43:45.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce972ff6a60a"]) - ModelState is Valid +2017-07-19 16:43:45.108 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:45.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:45.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:45.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2685.2981ms +2017-07-19 16:43:45.128 +05:30 [Information] Request finished in 2720.0298ms 200 application/json; charset=utf-8 +2017-07-19 16:43:45.129 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:43:45.166 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:43:45.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:43:45.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:43:47.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce972ff6a60a"]) - ModelState is Valid +2017-07-19 16:43:47.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:47.953 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:47.954 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:47.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3199.8655ms +2017-07-19 16:43:47.958 +05:30 [Information] Request finished in 3237.0196ms 200 application/json; charset=utf-8 +2017-07-19 16:43:47.960 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:43:47.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:43:47.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:43:47.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:43:48.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:43:48.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:48.355 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:48.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:48.362 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3185.4427ms +2017-07-19 16:43:48.368 +05:30 [Information] Request finished in 3228.517ms 200 application/json; charset=utf-8 +2017-07-19 16:43:48.368 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:43:48.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 16:43:48.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 16:43:48.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 16:43:51.024 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:43:51.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:51.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:51.029 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:51.032 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3064.9379ms +2017-07-19 16:43:51.039 +05:30 [Information] Request finished in 3074.6403ms 200 application/json; charset=utf-8 +2017-07-19 16:43:51.039 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:43:51.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:43:51.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:43:51.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:43:51.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["60", "8d4ce972ff6a60a"]) - ModelState is Valid +2017-07-19 16:43:51.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 16:43:51.523 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 16:43:51.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3119.7649ms +2017-07-19 16:43:51.529 +05:30 [Information] Request finished in 3146.5902ms 200 +2017-07-19 16:43:51.530 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:43:54.133 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce972ff6a60a"]) - ModelState is Valid +2017-07-19 16:43:54.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:54.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:54.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:54.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.6367ms +2017-07-19 16:43:54.143 +05:30 [Information] Request finished in 3060.2352ms 200 application/json; charset=utf-8 +2017-07-19 16:43:54.144 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:43:55.486 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:43:55.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:43:55.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:43:57.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce972ff6a60a"]) - ModelState is Valid +2017-07-19 16:43:57.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:43:57.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:43:57.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:43:57.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2110.2279ms +2017-07-19 16:43:57.610 +05:30 [Information] Request finished in 2123.7028ms 200 application/json; charset=utf-8 +2017-07-19 16:43:57.610 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:44:07.177 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:44:07.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:44:07.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:44:10.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:44:10.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:10.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:10.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:10.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3180.3891ms +2017-07-19 16:44:10.371 +05:30 [Information] Request finished in 3194.5705ms 200 application/json; charset=utf-8 +2017-07-19 16:44:10.372 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:44:10.425 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:44:10.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:44:10.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:44:13.517 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:13.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:13.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:13.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:13.594 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3166.308ms +2017-07-19 16:44:13.597 +05:30 [Information] Request finished in 3171.4613ms 200 application/json; charset=utf-8 +2017-07-19 16:44:13.597 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:44:13.601 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:44:13.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:44:13.602 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:44:16.632 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:16.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:16.693 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:16.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:16.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3096.0988ms +2017-07-19 16:44:16.724 +05:30 [Information] Request finished in 3122.5289ms 200 application/json; charset=utf-8 +2017-07-19 16:44:16.725 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:44:17.933 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:44:17.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:44:17.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:44:17.937 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:44:17.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:44:17.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:44:18.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:44:18.446 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:44:18.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:44:18.479 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:44:18.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:44:18.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:44:18.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:44:18.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:44:18.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:44:19.227 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:44:19.228 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:44:19.228 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:44:21.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:21.073 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:21.074 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:44:21.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:21.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:21.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3136.604ms +2017-07-19 16:44:21.081 +05:30 [Information] Request finished in 3146.8097ms 200 application/json; charset=utf-8 +2017-07-19 16:44:21.082 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:44:21.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:21.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:21.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:44:21.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:21.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:21.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3224.2138ms +2017-07-19 16:44:21.168 +05:30 [Information] Request finished in 3235.511ms 200 application/json; charset=utf-8 +2017-07-19 16:44:21.169 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:44:21.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:21.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:21.678 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:44:21.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:21.836 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:44:21.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:21.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:21.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3363.8276ms +2017-07-19 16:44:21.895 +05:30 [Information] Request finished in 3461.0759ms 200 application/json; charset=utf-8 +2017-07-19 16:44:21.896 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:44:21.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:21.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:44:21.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:21.934 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:21.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3452.6785ms +2017-07-19 16:44:21.938 +05:30 [Information] Request finished in 3502.4306ms 200 application/json; charset=utf-8 +2017-07-19 16:44:21.939 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:44:22.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:44:22.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:22.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:22.335 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:22.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3107.5549ms +2017-07-19 16:44:22.346 +05:30 [Information] Request finished in 3117.2011ms 200 application/json; charset=utf-8 +2017-07-19 16:44:22.348 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:44:22.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:22.384 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:44:22.384 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:22.385 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:22.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3885.8085ms +2017-07-19 16:44:22.389 +05:30 [Information] Request finished in 3948.085ms 200 application/json; charset=utf-8 +2017-07-19 16:44:22.389 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:44:35.562 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:44:35.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:44:35.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:44:37.423 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:44:37.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:44:37.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:44:39.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce974ec5c1e7"]) - ModelState is Valid +2017-07-19 16:44:39.196 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:39.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:39.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:39.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3643.7788ms +2017-07-19 16:44:39.509 +05:30 [Information] Request finished in 3896.4336ms 200 application/json; charset=utf-8 +2017-07-19 16:44:39.510 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:44:39.525 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:44:39.527 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:44:39.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:44:40.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce974ec5c1e7"]) - ModelState is Valid +2017-07-19 16:44:40.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:40.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:40.618 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:40.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3194.1199ms +2017-07-19 16:44:40.632 +05:30 [Information] Request finished in 3209.61ms 200 application/json; charset=utf-8 +2017-07-19 16:44:40.633 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:44:40.640 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:44:40.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:44:40.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:44:42.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:44:42.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:42.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:42.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:42.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3080.668ms +2017-07-19 16:44:42.613 +05:30 [Information] Request finished in 3095.9611ms 200 application/json; charset=utf-8 +2017-07-19 16:44:42.614 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:44:42.628 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 16:44:42.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 16:44:42.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 16:44:43.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:44:43.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:43.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:43.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:43.734 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3085.8044ms +2017-07-19 16:44:43.737 +05:30 [Information] Request finished in 3100.1514ms 200 application/json; charset=utf-8 +2017-07-19 16:44:43.737 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:44:43.794 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:44:43.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:44:43.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:44:45.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["61", "8d4ce974ec5c1e7"]) - ModelState is Valid +2017-07-19 16:44:45.690 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 16:44:45.691 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 16:44:45.694 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3060.4795ms +2017-07-19 16:44:45.697 +05:30 [Information] Request finished in 3071.1655ms 200 +2017-07-19 16:44:45.698 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:44:46.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce974ec5c1e7"]) - ModelState is Valid +2017-07-19 16:44:46.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:46.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:46.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:46.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3044.7113ms +2017-07-19 16:44:46.852 +05:30 [Information] Request finished in 3054.3214ms 200 application/json; charset=utf-8 +2017-07-19 16:44:46.853 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:44:48.248 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:44:48.250 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:44:48.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:44:51.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce974ec5c1e7"]) - ModelState is Valid +2017-07-19 16:44:51.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:44:51.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:44:51.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:44:51.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3075.183ms +2017-07-19 16:44:51.330 +05:30 [Information] Request finished in 3081.5228ms 200 application/json; charset=utf-8 +2017-07-19 16:44:51.330 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:45:28.632 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:45:28.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:45:28.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:45:31.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:45:31.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:31.805 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:31.806 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:31.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3171.9311ms +2017-07-19 16:45:31.817 +05:30 [Information] Request finished in 3185.2315ms 200 application/json; charset=utf-8 +2017-07-19 16:45:31.818 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:45:31.936 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:45:31.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:45:31.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:45:34.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:35.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:35.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:35.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:35.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3138.6301ms +2017-07-19 16:45:35.081 +05:30 [Information] Request finished in 3144.2218ms 200 application/json; charset=utf-8 +2017-07-19 16:45:35.082 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:45:35.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:45:35.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:45:35.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:45:38.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:38.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:38.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:38.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:38.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.019ms +2017-07-19 16:45:38.219 +05:30 [Information] Request finished in 3126.8099ms 200 application/json; charset=utf-8 +2017-07-19 16:45:38.220 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:45:39.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:45:39.566 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:45:39.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:45:39.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:45:39.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:45:39.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:45:40.149 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:45:40.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:45:40.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:45:40.158 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:45:40.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:45:40.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:45:40.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:45:40.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:45:40.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:45:41.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:45:41.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:45:41.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:45:42.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:42.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:42.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:42.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:42.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:42.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:42.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3409.6745ms +2017-07-19 16:45:42.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:42.983 +05:30 [Information] Request finished in 3437.5552ms 200 application/json; charset=utf-8 +2017-07-19 16:45:42.983 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:42.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:42.983 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:45:42.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:43.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3427.5555ms +2017-07-19 16:45:43.015 +05:30 [Information] Request finished in 3468.4477ms 200 application/json; charset=utf-8 +2017-07-19 16:45:43.016 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:45:43.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:43.415 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:43.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:43.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:43.638 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:43.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:43.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:43.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3457.0201ms +2017-07-19 16:45:43.686 +05:30 [Information] Request finished in 3535.7133ms 200 application/json; charset=utf-8 +2017-07-19 16:45:43.701 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:45:43.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:43.738 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:43.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:43.739 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:43.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3557.1347ms +2017-07-19 16:45:43.745 +05:30 [Information] Request finished in 3611.2943ms 200 application/json; charset=utf-8 +2017-07-19 16:45:43.746 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:45:44.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:44.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:44.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:44.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:44.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3934.234ms +2017-07-19 16:45:44.096 +05:30 [Information] Request finished in 3946.0841ms 200 application/json; charset=utf-8 +2017-07-19 16:45:44.097 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:45:44.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:45:44.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:44.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:44.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:44.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3354.1658ms +2017-07-19 16:45:44.434 +05:30 [Information] Request finished in 3461.5536ms 200 application/json; charset=utf-8 +2017-07-19 16:45:44.435 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:45:52.589 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=1 +2017-07-19 16:45:52.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-07-19 16:45:52.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-07-19 16:45:55.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:55.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:55.720 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:55.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:55.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:55.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 3130.0771ms +2017-07-19 16:45:55.737 +05:30 [Information] Request finished in 3153.521ms 200 application/json; charset=utf-8 +2017-07-19 16:45:55.738 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:45:56.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:45:56.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:45:56.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:45:56.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:45:56.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:45:56.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:45:56.438 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:45:56.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:45:56.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:45:58.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 16:45:58.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 16:45:58.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 16:45:58.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 16:45:58.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 16:45:58.341 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 16:45:58.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 16:45:58.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 16:45:58.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 16:45:59.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:59.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:45:59.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:59.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:59.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:59.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:59.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3138.0931ms +2017-07-19 16:45:59.169 +05:30 [Information] Request finished in 3145.0964ms 200 application/json; charset=utf-8 +2017-07-19 16:45:59.170 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:45:59.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce977fb2e34c"]) - ModelState is Valid +2017-07-19 16:45:59.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:59.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:59.499 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:59.501 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.5328ms +2017-07-19 16:45:59.503 +05:30 [Information] Request finished in 3090.5363ms 200 application/json; charset=utf-8 +2017-07-19 16:45:59.504 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:45:59.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:45:59.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:45:59.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:45:59.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:45:59.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:45:59.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:45:59.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:45:59.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3821.5936ms +2017-07-19 16:45:59.858 +05:30 [Information] Request finished in 3832.8169ms 200 application/json; charset=utf-8 +2017-07-19 16:45:59.862 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" completed keep alive response. +2017-07-19 16:46:00.491 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:46:00.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:46:00.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:46:00.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:46:00.508 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:46:00.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:46:00.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 2255.0814ms +2017-07-19 16:46:00.626 +05:30 [Information] Request finished in 2332.6842ms 200 application/json; charset=utf-8 +2017-07-19 16:46:00.641 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" completed keep alive response. +2017-07-19 16:46:00.640 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:46:00.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:46:00.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:46:00.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:46:00.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 2348.2958ms +2017-07-19 16:46:00.656 +05:30 [Information] Request finished in 2373.3771ms 200 application/json; charset=utf-8 +2017-07-19 16:46:00.657 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" completed keep alive response. +2017-07-19 16:46:01.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:46:01.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:46:01.554 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:46:01.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:46:01.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:46:01.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3201.7946ms +2017-07-19 16:46:01.565 +05:30 [Information] Request finished in 3283.3032ms 200 application/json; charset=utf-8 +2017-07-19 16:46:01.566 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" completed keep alive response. +2017-07-19 16:46:02.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:46:02.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:46:02.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:46:02.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:46:02.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3098.6834ms +2017-07-19 16:46:02.611 +05:30 [Information] Request finished in 3105.4474ms 200 application/json; charset=utf-8 +2017-07-19 16:46:02.612 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" completed keep alive response. +2017-07-19 16:46:02.619 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:46:02.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:46:02.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:46:05.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:46:05.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:46:05.698 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:46:05.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:46:05.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3081.8787ms +2017-07-19 16:46:05.717 +05:30 [Information] Request finished in 3094.4475ms 200 application/json; charset=utf-8 +2017-07-19 16:46:05.718 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" completed keep alive response. +2017-07-19 16:47:22.009 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" received FIN. +2017-07-19 16:47:22.010 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" disconnecting. +2017-07-19 16:47:22.010 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" received FIN. +2017-07-19 16:47:22.011 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" disconnecting. +2017-07-19 16:47:22.011 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" received FIN. +2017-07-19 16:47:22.012 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" sending FIN. +2017-07-19 16:47:22.012 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" disconnecting. +2017-07-19 16:47:22.009 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" received FIN. +2017-07-19 16:47:22.013 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" sending FIN. +2017-07-19 16:47:22.014 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" sending FIN. +2017-07-19 16:47:22.016 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" sent FIN with status "0". +2017-07-19 16:47:22.015 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" disconnecting. +2017-07-19 16:47:22.014 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" received FIN. +2017-07-19 16:47:22.018 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" received FIN. +2017-07-19 16:47:22.016 +05:30 [Debug] Connection id ""0HL6EHQO57IOF"" stopped. +2017-07-19 16:47:22.018 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" disconnecting. +2017-07-19 16:47:22.019 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" sent FIN with status "0". +2017-07-19 16:47:22.018 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" started. +2017-07-19 16:47:22.020 +05:30 [Debug] Connection id ""0HL6EHQO57IOE"" stopped. +2017-07-19 16:47:22.018 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" disconnecting. +2017-07-19 16:47:22.021 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" sent FIN with status "0". +2017-07-19 16:47:22.021 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" sending FIN. +2017-07-19 16:47:22.022 +05:30 [Debug] Connection id ""0HL6EHQO57IOB"" stopped. +2017-07-19 16:47:22.042 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" sending FIN. +2017-07-19 16:47:22.043 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" sending FIN. +2017-07-19 16:47:22.044 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" sent FIN with status "0". +2017-07-19 16:47:22.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:47:22.044 +05:30 [Debug] Connection id ""0HL6EHQO57IOD"" stopped. +2017-07-19 16:47:22.046 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:47:22.047 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" sent FIN with status "0". +2017-07-19 16:47:22.049 +05:30 [Debug] Connection id ""0HL6EHQO57IOC"" stopped. +2017-07-19 16:47:22.050 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" sent FIN with status "0". +2017-07-19 16:47:22.050 +05:30 [Debug] Connection id ""0HL6EHQO57IOA"" stopped. +2017-07-19 16:47:22.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:47:25.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce977fb2e34c"]) - ModelState is Valid +2017-07-19 16:47:25.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:25.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:25.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:25.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3097.8869ms +2017-07-19 16:47:25.157 +05:30 [Information] Request finished in 3134.6388ms 200 application/json; charset=utf-8 +2017-07-19 16:47:25.157 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" completed keep alive response. +2017-07-19 16:47:25.193 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:47:25.194 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:47:25.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:47:28.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:47:28.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:28.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:28.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:28.249 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3048.7509ms +2017-07-19 16:47:28.253 +05:30 [Information] Request finished in 3090.1659ms 200 application/json; charset=utf-8 +2017-07-19 16:47:28.254 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" completed keep alive response. +2017-07-19 16:47:28.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:47:28.286 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" started. +2017-07-19 16:47:28.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:47:28.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:47:28.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:47:28.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:47:28.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:47:31.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:31.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:31.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:31.505 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce977fb2e34c"]) - ModelState is Valid +2017-07-19 16:47:31.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:31.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3204.9632ms +2017-07-19 16:47:31.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:31.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:31.514 +05:30 [Information] Request finished in 3220.8972ms 200 application/json; charset=utf-8 +2017-07-19 16:47:31.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:31.516 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:47:31.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3227.4307ms +2017-07-19 16:47:31.524 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:47:31.525 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:47:31.526 +05:30 [Information] Request finished in 3243.1834ms 200 application/json; charset=utf-8 +2017-07-19 16:47:31.529 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" completed keep alive response. +2017-07-19 16:47:31.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:47:34.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:34.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:34.635 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:34.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:34.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3102.4208ms +2017-07-19 16:47:34.643 +05:30 [Information] Request finished in 3120.7441ms 200 application/json; charset=utf-8 +2017-07-19 16:47:34.644 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:47:37.262 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:47:37.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:47:37.263 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:47:37.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:47:37.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:47:37.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:47:40.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:40.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:40.410 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:40.412 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:47:40.412 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:40.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:40.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3125.9034ms +2017-07-19 16:47:40.420 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:40.421 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:47:40.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:40.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:40.445 +05:30 [Information] Request finished in 3161.5231ms 200 application/json; charset=utf-8 +2017-07-19 16:47:40.446 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:47:40.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3179.2158ms +2017-07-19 16:47:40.496 +05:30 [Information] Request finished in 3216.6447ms 200 application/json; charset=utf-8 +2017-07-19 16:47:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" completed keep alive response. +2017-07-19 16:47:43.015 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" started. +2017-07-19 16:47:43.073 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 16:47:43.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 16:47:43.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 16:47:43.110 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 16:47:43.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 16:47:43.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 16:47:43.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 16:47:43.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 16:47:43.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 16:47:46.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:46.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:46.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:46.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:47:46.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:46.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:47:46.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:46.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3350.9333ms +2017-07-19 16:47:46.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:46.498 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:47:46.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:46.520 +05:30 [Information] Request finished in 3526.0731ms 200 application/json; charset=utf-8 +2017-07-19 16:47:46.522 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:47:46.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:46.705 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3577.702ms +2017-07-19 16:47:46.708 +05:30 [Information] Request finished in 3691.1281ms 200 application/json; charset=utf-8 +2017-07-19 16:47:46.708 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" completed keep alive response. +2017-07-19 16:47:46.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:47:46.750 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:47:46.751 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:47:46.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:47:46.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3633.2414ms +2017-07-19 16:47:46.767 +05:30 [Information] Request finished in 3749.4921ms 200 application/json; charset=utf-8 +2017-07-19 16:47:46.768 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" completed keep alive response. +2017-07-19 16:48:35.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 16:48:35.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 16:48:35.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 16:48:41.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", ""]) - ModelState is Valid +2017-07-19 16:48:42.100 +05:30 [Fatal] Sequence contains no elements +2017-07-19 16:48:42.225 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 16:48:42.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 16:48:42.229 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:48:42.230 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 16:48:42.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:48:42.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 6314.1003ms +2017-07-19 16:48:42.406 +05:30 [Information] Request finished in 6392.6449ms 400 text/plain; charset=utf-8 +2017-07-19 16:48:42.409 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:01.231 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" received FIN. +2017-07-19 16:49:01.232 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" received FIN. +2017-07-19 16:49:01.232 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" disconnecting. +2017-07-19 16:49:01.252 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" sending FIN. +2017-07-19 16:49:01.253 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" sent FIN with status "0". +2017-07-19 16:49:01.233 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" disconnecting. +2017-07-19 16:49:01.254 +05:30 [Debug] Connection id ""0HL6EHQO57IOG"" stopped. +2017-07-19 16:49:01.255 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" sending FIN. +2017-07-19 16:49:01.256 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" sent FIN with status "0". +2017-07-19 16:49:01.257 +05:30 [Debug] Connection id ""0HL6EHQO57IOI"" stopped. +2017-07-19 16:49:01.265 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 16:49:01.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 16:49:01.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 16:49:04.342 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:49:04.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:04.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:04.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:04.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3165.4939ms +2017-07-19 16:49:04.443 +05:30 [Information] Request finished in 3208.5403ms 200 application/json; charset=utf-8 +2017-07-19 16:49:04.444 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:04.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:49:04.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:49:04.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:49:07.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:07.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:07.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:07.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:07.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3261.5037ms +2017-07-19 16:49:07.844 +05:30 [Information] Request finished in 3271.9163ms 200 application/json; charset=utf-8 +2017-07-19 16:49:07.845 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:07.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:49:07.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:49:07.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:49:15.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:15.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:15.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:15.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:15.136 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 7282.9149ms +2017-07-19 16:49:15.143 +05:30 [Information] Request finished in 7291.055ms 200 application/json; charset=utf-8 +2017-07-19 16:49:15.145 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:18.869 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:49:18.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:49:18.870 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:49:19.178 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" started. +2017-07-19 16:49:19.178 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" started. +2017-07-19 16:49:19.196 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:49:19.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:49:19.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:49:19.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:49:19.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:49:19.231 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:49:19.622 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" started. +2017-07-19 16:49:19.624 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" started. +2017-07-19 16:49:19.628 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" started. +2017-07-19 16:49:19.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:49:19.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:49:19.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:49:19.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:49:19.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:49:19.645 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:49:19.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:49:19.645 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:49:19.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:49:20.801 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" started. +2017-07-19 16:49:20.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:49:20.817 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:49:20.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:49:21.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:21.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:21.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:21.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:21.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:21.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2145.751ms +2017-07-19 16:49:21.474 +05:30 [Information] Request finished in 2278.8279ms 200 application/json; charset=utf-8 +2017-07-19 16:49:21.476 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" completed keep alive response. +2017-07-19 16:49:21.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:22.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:22.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:22.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:22.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3201.8466ms +2017-07-19 16:49:22.077 +05:30 [Information] Request finished in 3214.3084ms 200 application/json; charset=utf-8 +2017-07-19 16:49:22.078 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:22.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:49:22.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:49:22.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:49:22.390 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:22.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:22.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:22.453 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:22.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:22.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3255.0182ms +2017-07-19 16:49:22.469 +05:30 [Information] Request finished in 3274.9157ms 200 application/json; charset=utf-8 +2017-07-19 16:49:22.470 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" completed keep alive response. +2017-07-19 16:49:22.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:22.919 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:22.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:22.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:22.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:22.956 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:22.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:22.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3327.7398ms +2017-07-19 16:49:23.013 +05:30 [Information] Request finished in 3359.1268ms 200 application/json; charset=utf-8 +2017-07-19 16:49:23.040 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" completed keep alive response. +2017-07-19 16:49:23.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:23.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:23.139 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:23.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:23.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3504.6987ms +2017-07-19 16:49:23.145 +05:30 [Information] Request finished in 3516.0618ms 200 application/json; charset=utf-8 +2017-07-19 16:49:23.146 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" completed keep alive response. +2017-07-19 16:49:23.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:49:24.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:24.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:24.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:24.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3195.4491ms +2017-07-19 16:49:24.024 +05:30 [Information] Request finished in 3219.8739ms 200 application/json; charset=utf-8 +2017-07-19 16:49:24.025 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" completed keep alive response. +2017-07-19 16:49:24.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:24.644 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:24.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:24.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:24.655 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5003.3914ms +2017-07-19 16:49:24.659 +05:30 [Information] Request finished in 5024.2298ms 200 application/json; charset=utf-8 +2017-07-19 16:49:24.659 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" completed keep alive response. +2017-07-19 16:49:25.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:25.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:25.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:25.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:25.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3116.5579ms +2017-07-19 16:49:25.205 +05:30 [Information] Request finished in 3122.5713ms 200 application/json; charset=utf-8 +2017-07-19 16:49:25.205 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" completed keep alive response. +2017-07-19 16:49:25.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:49:25.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:49:25.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:49:25.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:49:25.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:49:25.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:49:26.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 16:49:26.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 16:49:26.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 16:49:26.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 16:49:26.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 16:49:26.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 16:49:26.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:49:26.407 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:49:26.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:49:26.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 16:49:26.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 16:49:26.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 16:49:29.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:29.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:29.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:29.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:29.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:29.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:29.140 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3181.5776ms +2017-07-19 16:49:29.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:29.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:29.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:29.149 +05:30 [Information] Request finished in 3198.7111ms 200 application/json; charset=utf-8 +2017-07-19 16:49:29.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:29.151 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:49:29.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3195.9212ms +2017-07-19 16:49:29.158 +05:30 [Information] Request finished in 3206.9969ms 200 application/json; charset=utf-8 +2017-07-19 16:49:29.159 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" completed keep alive response. +2017-07-19 16:49:29.560 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:29.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:29.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:29.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:29.755 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:29.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:29.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:29.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3362.4792ms +2017-07-19 16:49:29.816 +05:30 [Information] Request finished in 3436.7574ms 200 application/json; charset=utf-8 +2017-07-19 16:49:29.830 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" completed keep alive response. +2017-07-19 16:49:29.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:29.855 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:29.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:29.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:29.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3457.0859ms +2017-07-19 16:49:29.863 +05:30 [Information] Request finished in 3480.6553ms 200 application/json; charset=utf-8 +2017-07-19 16:49:29.863 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" completed keep alive response. +2017-07-19 16:49:30.008 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 16:49:30.048 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:30.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:30.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:30.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3122.0492ms +2017-07-19 16:49:30.069 +05:30 [Information] Request finished in 3136.504ms 200 application/json; charset=utf-8 +2017-07-19 16:49:30.071 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" completed keep alive response. +2017-07-19 16:49:30.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:30.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:30.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:30.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:30.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4105.794ms +2017-07-19 16:49:30.507 +05:30 [Information] Request finished in 4129.2581ms 200 application/json; charset=utf-8 +2017-07-19 16:49:30.508 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" completed keep alive response. +2017-07-19 16:49:31.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 16:49:31.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 16:49:31.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 16:49:31.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 16:49:31.694 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 16:49:31.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 16:49:31.700 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 16:49:31.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 16:49:31.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 16:49:34.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:34.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:34.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:49:34.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:34.869 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:34.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:34.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:34.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3229.2589ms +2017-07-19 16:49:34.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:34.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:34.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:34.987 +05:30 [Information] Request finished in 3309.2118ms 200 application/json; charset=utf-8 +2017-07-19 16:49:34.994 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" completed keep alive response. +2017-07-19 16:49:35.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:35.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:49:35.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3341.6004ms +2017-07-19 16:49:35.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:49:35.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:49:35.052 +05:30 [Information] Request finished in 3375.3757ms 200 application/json; charset=utf-8 +2017-07-19 16:49:35.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:49:35.054 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" completed keep alive response. +2017-07-19 16:49:35.061 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3352.2106ms +2017-07-19 16:49:35.065 +05:30 [Information] Request finished in 3382.2112ms 200 application/json; charset=utf-8 +2017-07-19 16:49:35.066 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" completed keep alive response. +2017-07-19 16:50:40.487 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" received FIN. +2017-07-19 16:50:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" received FIN. +2017-07-19 16:50:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" received FIN. +2017-07-19 16:50:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" disconnecting. +2017-07-19 16:50:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" disconnecting. +2017-07-19 16:50:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" sending FIN. +2017-07-19 16:50:40.490 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" sending FIN. +2017-07-19 16:50:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" sent FIN with status "0". +2017-07-19 16:50:40.491 +05:30 [Debug] Connection id ""0HL6EHQO57IOJ"" stopped. +2017-07-19 16:50:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" sent FIN with status "0". +2017-07-19 16:50:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IOO"" stopped. +2017-07-19 16:50:40.488 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" disconnecting. +2017-07-19 16:50:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" received FIN. +2017-07-19 16:50:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" received FIN. +2017-07-19 16:50:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" received FIN. +2017-07-19 16:50:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" received FIN. +2017-07-19 16:50:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" disconnecting. +2017-07-19 16:50:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" sending FIN. +2017-07-19 16:50:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" sent FIN with status "0". +2017-07-19 16:50:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57ION"" stopped. +2017-07-19 16:50:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" disconnecting. +2017-07-19 16:50:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" sending FIN. +2017-07-19 16:50:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" sent FIN with status "0". +2017-07-19 16:50:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IOK"" stopped. +2017-07-19 16:50:40.497 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" disconnecting. +2017-07-19 16:50:40.500 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" sending FIN. +2017-07-19 16:50:40.500 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" sent FIN with status "0". +2017-07-19 16:50:40.500 +05:30 [Debug] Connection id ""0HL6EHQO57IOM"" stopped. +2017-07-19 16:50:40.498 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" disconnecting. +2017-07-19 16:50:40.501 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" sending FIN. +2017-07-19 16:50:40.501 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" sent FIN with status "0". +2017-07-19 16:50:40.501 +05:30 [Debug] Connection id ""0HL6EHQO57IOH"" stopped. +2017-07-19 16:50:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" sending FIN. +2017-07-19 16:50:40.502 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" sent FIN with status "0". +2017-07-19 16:50:40.503 +05:30 [Debug] Connection id ""0HL6EHQO57IOL"" stopped. +2017-07-19 16:58:24.209 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" started. +2017-07-19 16:58:24.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 16:58:24.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 16:58:24.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 16:58:24.261 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" started. +2017-07-19 16:58:24.264 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 16:58:24.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 16:58:24.265 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 16:58:27.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", ""]) - ModelState is Valid +2017-07-19 16:58:27.362 +05:30 [Fatal] Sequence contains no elements +2017-07-19 16:58:27.363 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 16:58:27.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 16:58:27.364 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:27.378 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 16:58:27.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce977fb2e34c"]) - ModelState is Valid +2017-07-19 16:58:27.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:27.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 3155.9798ms +2017-07-19 16:58:27.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:27.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:27.391 +05:30 [Information] Request finished in 3181.0644ms 400 text/plain; charset=utf-8 +2017-07-19 16:58:27.392 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" completed keep alive response. +2017-07-19 16:58:27.415 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:27.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3149.9217ms +2017-07-19 16:58:27.442 +05:30 [Information] Request finished in 3174.9103ms 200 application/json; charset=utf-8 +2017-07-19 16:58:27.444 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" completed keep alive response. +2017-07-19 16:58:27.476 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 16:58:27.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 16:58:27.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 16:58:30.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 16:58:30.535 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:30.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:30.537 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:30.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3059.0056ms +2017-07-19 16:58:30.544 +05:30 [Information] Request finished in 3090.7836ms 200 application/json; charset=utf-8 +2017-07-19 16:58:30.544 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" completed keep alive response. +2017-07-19 16:58:30.578 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 16:58:30.579 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 16:58:30.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 16:58:30.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 16:58:30.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 16:58:30.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 16:58:33.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:33.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce977fb2e34c"]) - ModelState is Valid +2017-07-19 16:58:33.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:33.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:33.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:33.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3159.0531ms +2017-07-19 16:58:33.753 +05:30 [Information] Request finished in 3174.4958ms 200 application/json; charset=utf-8 +2017-07-19 16:58:33.755 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" completed keep alive response. +2017-07-19 16:58:33.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:33.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:33.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:33.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3244.5023ms +2017-07-19 16:58:33.830 +05:30 [Information] Request finished in 3259.3647ms 200 application/json; charset=utf-8 +2017-07-19 16:58:33.830 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" completed keep alive response. +2017-07-19 16:58:33.873 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 16:58:33.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 16:58:33.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 16:58:36.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:37.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:37.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:37.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:37.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3188.8282ms +2017-07-19 16:58:37.070 +05:30 [Information] Request finished in 3196.5876ms 200 application/json; charset=utf-8 +2017-07-19 16:58:37.071 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" completed keep alive response. +2017-07-19 16:58:38.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 16:58:38.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 16:58:38.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 16:58:39.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 16:58:39.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 16:58:39.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 16:58:41.542 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" started. +2017-07-19 16:58:41.543 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" started. +2017-07-19 16:58:41.563 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" started. +2017-07-19 16:58:41.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 16:58:41.617 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 16:58:41.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 16:58:41.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 16:58:41.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 16:58:41.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 16:58:41.750 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 16:58:41.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 16:58:41.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 16:58:42.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:42.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:42.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:42.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:42.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:42.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3290.0887ms +2017-07-19 16:58:42.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:42.282 +05:30 [Information] Request finished in 3352.0911ms 200 application/json; charset=utf-8 +2017-07-19 16:58:42.283 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" completed keep alive response. +2017-07-19 16:58:42.292 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:42.293 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:42.293 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:42.302 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:42.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3277.1805ms +2017-07-19 16:58:42.329 +05:30 [Information] Request finished in 3399.2321ms 200 application/json; charset=utf-8 +2017-07-19 16:58:42.330 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" completed keep alive response. +2017-07-19 16:58:42.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:43.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:43.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:43.048 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:43.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:43.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 1391.3856ms +2017-07-19 16:58:43.053 +05:30 [Information] Request finished in 1472.4569ms 200 application/json; charset=utf-8 +2017-07-19 16:58:43.054 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" completed keep alive response. +2017-07-19 16:58:44.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:44.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:44.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:44.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:44.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:44.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3242.1736ms +2017-07-19 16:58:44.864 +05:30 [Information] Request finished in 3300.1957ms 200 application/json; charset=utf-8 +2017-07-19 16:58:44.864 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" completed keep alive response. +2017-07-19 16:58:44.926 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 16:58:44.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 16:58:44.930 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 16:58:44.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 16:58:44.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 16:58:44.933 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3176.9907ms +2017-07-19 16:58:44.936 +05:30 [Information] Request finished in 3314.7929ms 200 application/json; charset=utf-8 +2017-07-19 16:58:44.937 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" completed keep alive response. +2017-07-19 17:00:40.487 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" received FIN. +2017-07-19 17:00:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" received FIN. +2017-07-19 17:00:40.489 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" disconnecting. +2017-07-19 17:00:40.487 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" received FIN. +2017-07-19 17:00:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" received FIN. +2017-07-19 17:00:40.493 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" received FIN. +2017-07-19 17:00:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" disconnecting. +2017-07-19 17:00:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" sending FIN. +2017-07-19 17:00:40.495 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" disconnecting. +2017-07-19 17:00:40.492 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" sending FIN. +2017-07-19 17:00:40.496 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" sent FIN with status "0". +2017-07-19 17:00:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IOP"" stopped. +2017-07-19 17:00:40.499 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" sent FIN with status "0". +2017-07-19 17:00:40.502 +05:30 [Debug] Connection id ""0HL6EHQO57IOQ"" stopped. +2017-07-19 17:00:40.500 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" sending FIN. +2017-07-19 17:00:40.490 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" disconnecting. +2017-07-19 17:00:40.494 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" disconnecting. +2017-07-19 17:00:40.505 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" sending FIN. +2017-07-19 17:00:40.503 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" sent FIN with status "0". +2017-07-19 17:00:40.506 +05:30 [Debug] Connection id ""0HL6EHQO57IOT"" stopped. +2017-07-19 17:00:40.506 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" sent FIN with status "0". +2017-07-19 17:00:40.507 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" sending FIN. +2017-07-19 17:00:40.508 +05:30 [Debug] Connection id ""0HL6EHQO57IOS"" stopped. +2017-07-19 17:00:40.509 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" sent FIN with status "0". +2017-07-19 17:00:40.512 +05:30 [Debug] Connection id ""0HL6EHQO57IOR"" stopped. +2017-07-19 17:05:24.530 +05:30 [Debug] Hosting starting +2017-07-19 17:05:24.749 +05:30 [Debug] Hosting started +2017-07-19 17:05:24.787 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" started. +2017-07-19 17:05:24.788 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" started. +2017-07-19 17:05:25.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 17:05:25.255 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 17:05:25.553 +05:30 [Information] Request finished in 406.9842ms 200 +2017-07-19 17:05:25.654 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:05:26.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 17:05:26.795 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d2123d0a-60f3-4a2a-bcf0-0b95987c409c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 17:05:26.984 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 17:05:27.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 17:05:27.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 17:05:27.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:05:27.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:05:27.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:05:32.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5220.9177ms +2017-07-19 17:05:32.335 +05:30 [Information] Request finished in 7389.6213ms 200 application/json; charset=utf-8 +2017-07-19 17:05:32.341 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" completed keep alive response. +2017-07-19 17:06:04.481 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 17:06:04.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 17:06:04.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 17:06:08.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 17:06:14.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:14.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:14.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:14.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9881.0849ms +2017-07-19 17:06:14.379 +05:30 [Information] Request finished in 9939.3152ms 200 application/json; charset=utf-8 +2017-07-19 17:06:14.381 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:06:14.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:06:14.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:06:14.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:06:17.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:18.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:18.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:18.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:18.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3256.4686ms +2017-07-19 17:06:18.191 +05:30 [Information] Request finished in 3264.8746ms 200 application/json; charset=utf-8 +2017-07-19 17:06:18.191 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" completed keep alive response. +2017-07-19 17:06:18.249 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:06:18.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:06:18.253 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:06:21.316 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:21.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:21.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:21.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:21.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3214.9384ms +2017-07-19 17:06:21.472 +05:30 [Information] Request finished in 3223.0753ms 200 application/json; charset=utf-8 +2017-07-19 17:06:21.473 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:06:26.898 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:06:26.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:06:26.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:06:27.303 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" started. +2017-07-19 17:06:27.353 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:06:27.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:06:27.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:06:27.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:06:27.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:06:27.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:06:28.213 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" started. +2017-07-19 17:06:28.214 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" started. +2017-07-19 17:06:28.214 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" started. +2017-07-19 17:06:28.283 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:06:28.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:06:28.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:06:29.445 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" started. +2017-07-19 17:06:31.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:06:31.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:06:31.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:06:31.608 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:06:31.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:06:31.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:06:32.143 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:06:32.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:06:32.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:06:33.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:33.257 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:33.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:33.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:33.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 6302.3774ms +2017-07-19 17:06:33.264 +05:30 [Information] Request finished in 6376.7271ms 200 application/json; charset=utf-8 +2017-07-19 17:06:33.264 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" completed keep alive response. +2017-07-19 17:06:33.274 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:06:33.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:06:33.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:06:34.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:34.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:34.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:34.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:34.386 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:34.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:34.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:34.477 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:34.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:34.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:34.484 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:34.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7080.4492ms +2017-07-19 17:06:34.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7130.9326ms +2017-07-19 17:06:34.524 +05:30 [Information] Request finished in 7208.1311ms 200 application/json; charset=utf-8 +2017-07-19 17:06:34.540 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" completed keep alive response. +2017-07-19 17:06:34.570 +05:30 [Information] Request finished in 7213.2924ms 200 application/json; charset=utf-8 +2017-07-19 17:06:34.571 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:06:34.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:34.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:34.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:34.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:34.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:34.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:34.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:34.914 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:34.915 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:34.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:34.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3315.6646ms +2017-07-19 17:06:34.945 +05:30 [Information] Request finished in 3335.6472ms 200 application/json; charset=utf-8 +2017-07-19 17:06:34.947 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" completed keep alive response. +2017-07-19 17:06:35.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6724.4449ms +2017-07-19 17:06:35.019 +05:30 [Information] Request finished in 6740.5941ms 200 application/json; charset=utf-8 +2017-07-19 17:06:35.020 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" completed keep alive response. +2017-07-19 17:06:35.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:06:35.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:35.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:35.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:35.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3403.3528ms +2017-07-19 17:06:35.558 +05:30 [Information] Request finished in 3413.1218ms 200 application/json; charset=utf-8 +2017-07-19 17:06:35.560 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" completed keep alive response. +2017-07-19 17:06:36.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:36.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:36.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:36.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:36.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3277.5652ms +2017-07-19 17:06:36.567 +05:30 [Information] Request finished in 3292.3127ms 200 application/json; charset=utf-8 +2017-07-19 17:06:36.568 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" completed keep alive response. +2017-07-19 17:06:36.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:36.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:36.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:36.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:36.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5585.4767ms +2017-07-19 17:06:36.670 +05:30 [Information] Request finished in 5594.2068ms 200 application/json; charset=utf-8 +2017-07-19 17:06:36.671 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" completed keep alive response. +2017-07-19 17:06:37.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:06:37.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:06:37.611 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:06:37.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:06:37.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:06:37.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:06:38.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:06:38.199 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:06:38.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:06:38.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:06:38.179 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:06:38.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:06:38.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:06:38.206 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:06:38.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:06:39.276 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:06:39.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:06:39.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:06:40.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:40.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:40.819 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:40.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:40.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:40.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3208.6843ms +2017-07-19 17:06:40.868 +05:30 [Information] Request finished in 3255.6035ms 200 application/json; charset=utf-8 +2017-07-19 17:06:40.869 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" completed keep alive response. +2017-07-19 17:06:40.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:40.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:40.944 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:40.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:40.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:40.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3331.8297ms +2017-07-19 17:06:40.958 +05:30 [Information] Request finished in 3349.625ms 200 application/json; charset=utf-8 +2017-07-19 17:06:40.959 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:06:41.286 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:41.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:41.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:41.633 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:41.671 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:41.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:41.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:41.708 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:41.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:41.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:41.713 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:41.715 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3506.5623ms +2017-07-19 17:06:41.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3502.9974ms +2017-07-19 17:06:41.722 +05:30 [Information] Request finished in 3547.915ms 200 application/json; charset=utf-8 +2017-07-19 17:06:41.723 +05:30 [Information] Request finished in 3549.0413ms 200 application/json; charset=utf-8 +2017-07-19 17:06:41.725 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" completed keep alive response. +2017-07-19 17:06:41.731 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" completed keep alive response. +2017-07-19 17:06:42.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:42.031 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:06:42.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:42.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:42.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3824.3182ms +2017-07-19 17:06:42.037 +05:30 [Information] Request finished in 3861.9187ms 200 application/json; charset=utf-8 +2017-07-19 17:06:42.037 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" completed keep alive response. +2017-07-19 17:06:42.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:06:42.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:42.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:42.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:42.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3248.7605ms +2017-07-19 17:06:42.536 +05:30 [Information] Request finished in 3269.7141ms 200 application/json; charset=utf-8 +2017-07-19 17:06:42.536 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" completed keep alive response. +2017-07-19 17:06:42.655 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:06:42.657 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:06:42.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:06:45.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:06:45.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:45.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:45.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:45.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.3634ms +2017-07-19 17:06:45.777 +05:30 [Information] Request finished in 3131.4226ms 200 application/json; charset=utf-8 +2017-07-19 17:06:45.777 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" completed keep alive response. +2017-07-19 17:06:45.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:06:45.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:06:45.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:06:45.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:06:45.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:06:45.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:06:48.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:48.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:06:49.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:49.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:49.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:49.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3287.9401ms +2017-07-19 17:06:49.096 +05:30 [Information] Request finished in 3306.1869ms 200 application/json; charset=utf-8 +2017-07-19 17:06:49.098 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" completed keep alive response. +2017-07-19 17:06:49.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:06:49.111 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:06:49.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:06:49.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:49.118 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:49.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:49.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3319.7959ms +2017-07-19 17:06:49.130 +05:30 [Information] Request finished in 3338.3063ms 200 application/json; charset=utf-8 +2017-07-19 17:06:49.130 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" completed keep alive response. +2017-07-19 17:06:52.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:06:52.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:06:52.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:06:52.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:06:52.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3122.8811ms +2017-07-19 17:06:52.242 +05:30 [Information] Request finished in 3137.7604ms 200 application/json; charset=utf-8 +2017-07-19 17:06:52.243 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" completed keep alive response. +2017-07-19 17:09:24.760 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" received FIN. +2017-07-19 17:09:24.761 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" disconnecting. +2017-07-19 17:09:24.762 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" sending FIN. +2017-07-19 17:09:24.767 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" sent FIN with status "0". +2017-07-19 17:09:24.769 +05:30 [Debug] Connection id ""0HL6EJ8VK50GJ"" stopped. +2017-07-19 17:09:24.770 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" received FIN. +2017-07-19 17:09:24.770 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" received FIN. +2017-07-19 17:09:24.781 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" disconnecting. +2017-07-19 17:09:24.786 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" sending FIN. +2017-07-19 17:09:24.788 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" sent FIN with status "0". +2017-07-19 17:09:24.788 +05:30 [Debug] Connection id ""0HL6EJ8VK50GK"" stopped. +2017-07-19 17:09:24.789 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" disconnecting. +2017-07-19 17:09:24.790 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" sending FIN. +2017-07-19 17:09:24.790 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" sent FIN with status "0". +2017-07-19 17:09:24.791 +05:30 [Debug] Connection id ""0HL6EJ8VK50GG"" stopped. +2017-07-19 17:09:24.793 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" received FIN. +2017-07-19 17:09:24.794 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" received FIN. +2017-07-19 17:09:24.794 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" received FIN. +2017-07-19 17:09:24.795 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" received FIN. +2017-07-19 17:09:24.795 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" disconnecting. +2017-07-19 17:09:24.796 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" sending FIN. +2017-07-19 17:09:24.797 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" sent FIN with status "0". +2017-07-19 17:09:24.797 +05:30 [Debug] Connection id ""0HL6EJ8VK50GM"" stopped. +2017-07-19 17:09:24.796 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" disconnecting. +2017-07-19 17:09:24.798 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" sending FIN. +2017-07-19 17:09:24.799 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" sent FIN with status "0". +2017-07-19 17:09:24.800 +05:30 [Debug] Connection id ""0HL6EJ8VK50GH"" stopped. +2017-07-19 17:09:24.798 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" disconnecting. +2017-07-19 17:09:24.801 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" sending FIN. +2017-07-19 17:09:24.801 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" sent FIN with status "0". +2017-07-19 17:09:24.802 +05:30 [Debug] Connection id ""0HL6EJ8VK50GI"" stopped. +2017-07-19 17:09:24.801 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" disconnecting. +2017-07-19 17:09:24.802 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" sending FIN. +2017-07-19 17:09:24.803 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" sent FIN with status "0". +2017-07-19 17:09:24.803 +05:30 [Debug] Connection id ""0HL6EJ8VK50GL"" stopped. +2017-07-19 17:11:55.982 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" started. +2017-07-19 17:11:55.984 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" started. +2017-07-19 17:11:55.989 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" started. +2017-07-19 17:11:56.002 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 17:11:56.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 17:11:56.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 17:11:56.014 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 17:11:56.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 17:11:56.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 17:11:56.041 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 17:11:56.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 17:11:56.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 17:11:58.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:11:58.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:11:58.421 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:11:58.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:11:58.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:11:58.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 2418.4917ms +2017-07-19 17:11:58.429 +05:30 [Information] Request finished in 2443.3498ms 200 application/json; charset=utf-8 +2017-07-19 17:11:58.430 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" completed keep alive response. +2017-07-19 17:11:59.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:11:59.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:11:59.080 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:11:59.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:11:59.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:11:59.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3068.1264ms +2017-07-19 17:11:59.089 +05:30 [Information] Request finished in 3086.4444ms 200 application/json; charset=utf-8 +2017-07-19 17:11:59.090 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" completed keep alive response. +2017-07-19 17:11:59.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:11:59.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:11:59.355 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:11:59.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:11:59.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:11:59.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3316.2324ms +2017-07-19 17:11:59.364 +05:30 [Information] Request finished in 3359.0368ms 200 application/json; charset=utf-8 +2017-07-19 17:11:59.365 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" completed keep alive response. +2017-07-19 17:13:24.759 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" received FIN. +2017-07-19 17:13:24.760 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" received FIN. +2017-07-19 17:13:24.761 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" disconnecting. +2017-07-19 17:13:24.762 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" sending FIN. +2017-07-19 17:13:24.765 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" sent FIN with status "0". +2017-07-19 17:13:24.761 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" disconnecting. +2017-07-19 17:13:24.762 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" received FIN. +2017-07-19 17:13:24.766 +05:30 [Debug] Connection id ""0HL6EJ8VK50GN"" stopped. +2017-07-19 17:13:24.767 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" sending FIN. +2017-07-19 17:13:24.768 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" sent FIN with status "0". +2017-07-19 17:13:24.771 +05:30 [Debug] Connection id ""0HL6EJ8VK50GP"" stopped. +2017-07-19 17:13:24.795 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" disconnecting. +2017-07-19 17:13:24.796 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" sending FIN. +2017-07-19 17:13:24.797 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" sent FIN with status "0". +2017-07-19 17:13:24.797 +05:30 [Debug] Connection id ""0HL6EJ8VK50GO"" stopped. +2017-07-19 17:34:21.889 +05:30 [Debug] Hosting starting +2017-07-19 17:34:22.154 +05:30 [Debug] Hosting started +2017-07-19 17:34:22.275 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" started. +2017-07-19 17:34:22.275 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" started. +2017-07-19 17:34:22.468 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 17:34:22.468 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 17:34:22.532 +05:30 [Information] Request finished in 96.4852ms 200 +2017-07-19 17:34:22.591 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:34:23.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 17:34:23.739 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"18aa58a4-e1b8-47e2-aac7-9eed58d398c6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 17:34:23.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 17:34:24.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 17:34:24.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 17:34:24.067 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:34:24.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:24.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:24.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 517.4665ms +2017-07-19 17:34:24.489 +05:30 [Information] Request finished in 2065.5838ms 200 application/json; charset=utf-8 +2017-07-19 17:34:24.493 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:34:26.666 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:34:26.669 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:34:26.674 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:34:30.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:34:33.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:33.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:33.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:34.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7423.6443ms +2017-07-19 17:34:34.118 +05:30 [Information] Request finished in 7451.3059ms 200 application/json; charset=utf-8 +2017-07-19 17:34:34.119 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:34:34.439 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 17:34:34.440 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 17:34:34.441 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 17:34:37.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 17:34:37.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:37.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:37.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:37.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3205.9881ms +2017-07-19 17:34:37.652 +05:30 [Information] Request finished in 3212.5554ms 200 application/json; charset=utf-8 +2017-07-19 17:34:37.653 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:34:46.881 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:34:46.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:34:46.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:34:50.027 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:34:50.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:50.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:50.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:50.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3141.0191ms +2017-07-19 17:34:50.044 +05:30 [Information] Request finished in 3167.7852ms 200 application/json; charset=utf-8 +2017-07-19 17:34:50.045 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:34:50.246 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:34:50.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:34:50.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:34:53.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:34:53.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:53.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:53.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:53.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3060.4414ms +2017-07-19 17:34:53.316 +05:30 [Information] Request finished in 3080.9031ms 200 application/json; charset=utf-8 +2017-07-19 17:34:53.316 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:34:53.360 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:34:53.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:34:53.364 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:34:53.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:34:53.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:34:53.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:34:54.649 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" started. +2017-07-19 17:34:54.650 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:34:54.651 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:34:54.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:34:55.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:34:55.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:55.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:55.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:55.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2177.145ms +2017-07-19 17:34:55.558 +05:30 [Information] Request finished in 2200.0419ms 200 application/json; charset=utf-8 +2017-07-19 17:34:55.559 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:34:56.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:34:56.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:56.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:56.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:56.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3244.786ms +2017-07-19 17:34:56.619 +05:30 [Information] Request finished in 3257.3495ms 200 application/json; charset=utf-8 +2017-07-19 17:34:56.620 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:34:56.729 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:34:56.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:34:56.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:34:57.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:34:57.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:57.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:57.757 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:57.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3105.17ms +2017-07-19 17:34:57.764 +05:30 [Information] Request finished in 3113.5478ms 200 application/json; charset=utf-8 +2017-07-19 17:34:57.765 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" completed keep alive response. +2017-07-19 17:34:57.829 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:34:57.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:34:57.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:34:59.794 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:34:59.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:34:59.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:34:59.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:34:59.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3135.4979ms +2017-07-19 17:34:59.875 +05:30 [Information] Request finished in 3155.0124ms 200 application/json; charset=utf-8 +2017-07-19 17:34:59.876 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:00.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:00.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:00.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:00.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:00.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3111.6181ms +2017-07-19 17:35:00.947 +05:30 [Information] Request finished in 3117.4249ms 200 application/json; charset=utf-8 +2017-07-19 17:35:00.948 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:35:00.960 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:35:00.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:35:00.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:35:00.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:35:00.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:35:00.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:35:02.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:03.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:03.075 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:03.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:03.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2095.4857ms +2017-07-19 17:35:03.094 +05:30 [Information] Request finished in 2132.3466ms 200 application/json; charset=utf-8 +2017-07-19 17:35:03.095 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:03.142 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:35:03.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:35:03.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:35:03.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:35:03.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:35:03.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:35:03.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:03.949 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:03.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:03.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:03.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2986.5575ms +2017-07-19 17:35:03.958 +05:30 [Information] Request finished in 2999.0432ms 200 application/json; charset=utf-8 +2017-07-19 17:35:03.959 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" completed keep alive response. +2017-07-19 17:35:06.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:06.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:06.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:06.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:06.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:06.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3153.6091ms +2017-07-19 17:35:06.310 +05:30 [Information] Request finished in 3213.0282ms 200 application/json; charset=utf-8 +2017-07-19 17:35:06.311 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:35:06.352 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:35:06.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:06.381 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:35:06.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:35:06.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:06.386 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:06.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3213.397ms +2017-07-19 17:35:06.391 +05:30 [Information] Request finished in 3245.7673ms 200 application/json; charset=utf-8 +2017-07-19 17:35:06.391 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:09.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:09.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:09.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:09.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:09.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.8149ms +2017-07-19 17:35:09.426 +05:30 [Information] Request finished in 3073.7713ms 200 application/json; charset=utf-8 +2017-07-19 17:35:09.427 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" completed keep alive response. +2017-07-19 17:35:09.447 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:35:09.447 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:35:09.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:35:09.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:35:09.450 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:35:09.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:35:12.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:12.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:12.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:12.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:12.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:12.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:12.632 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:12.634 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:12.636 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3174.0403ms +2017-07-19 17:35:12.638 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3182.4542ms +2017-07-19 17:35:12.641 +05:30 [Information] Request finished in 3199.8019ms 200 application/json; charset=utf-8 +2017-07-19 17:35:12.643 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:35:12.649 +05:30 [Information] Request finished in 3204.6119ms 200 application/json; charset=utf-8 +2017-07-19 17:35:12.650 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:12.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:35:12.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:35:12.664 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:35:14.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:14.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:14.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:14.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:14.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2198.4734ms +2017-07-19 17:35:14.868 +05:30 [Information] Request finished in 2216.071ms 200 application/json; charset=utf-8 +2017-07-19 17:35:14.869 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" completed keep alive response. +2017-07-19 17:35:16.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:35:16.394 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:35:16.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:35:16.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:35:16.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:35:16.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:35:16.967 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" started. +2017-07-19 17:35:16.969 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" started. +2017-07-19 17:35:16.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:35:16.993 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:35:16.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:35:16.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:35:16.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:35:16.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:35:17.001 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:35:17.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:35:17.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:35:17.837 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" started. +2017-07-19 17:35:17.839 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:35:17.840 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:35:17.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:35:19.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:19.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:19.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:19.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:19.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:19.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:19.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3157.4265ms +2017-07-19 17:35:19.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:19.612 +05:30 [Information] Request finished in 3215.0894ms 200 application/json; charset=utf-8 +2017-07-19 17:35:19.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:19.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:19.615 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:35:19.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:19.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3223.6268ms +2017-07-19 17:35:19.633 +05:30 [Information] Request finished in 3239.2368ms 200 application/json; charset=utf-8 +2017-07-19 17:35:19.633 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:20.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:20.128 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:20.247 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:20.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:20.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:20.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:20.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:20.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3311.5554ms +2017-07-19 17:35:20.336 +05:30 [Information] Request finished in 3359.9988ms 200 application/json; charset=utf-8 +2017-07-19 17:35:20.337 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" completed keep alive response. +2017-07-19 17:35:20.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:20.566 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:20.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:20.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:20.641 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3624.3812ms +2017-07-19 17:35:20.644 +05:30 [Information] Request finished in 3665.3327ms 200 application/json; charset=utf-8 +2017-07-19 17:35:20.645 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" completed keep alive response. +2017-07-19 17:35:20.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:35:20.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:20.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:20.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:20.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3098.4024ms +2017-07-19 17:35:20.944 +05:30 [Information] Request finished in 3105.6775ms 200 application/json; charset=utf-8 +2017-07-19 17:35:20.945 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" completed keep alive response. +2017-07-19 17:35:20.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:35:20.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:35:20.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:35:22.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:22.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:22.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:22.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:22.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5269.9948ms +2017-07-19 17:35:22.270 +05:30 [Information] Request finished in 5299.6206ms 200 application/json; charset=utf-8 +2017-07-19 17:35:22.271 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" completed keep alive response. +2017-07-19 17:35:23.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:35:24.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:24.106 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:24.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:24.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3147.5566ms +2017-07-19 17:35:24.115 +05:30 [Information] Request finished in 3157.0856ms 200 application/json; charset=utf-8 +2017-07-19 17:35:24.115 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" completed keep alive response. +2017-07-19 17:35:26.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 17:35:26.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 17:35:26.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 17:35:26.603 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 17:35:26.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 17:35:26.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 17:35:26.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 17:35:26.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 17:35:26.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 17:35:27.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:27.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:27.937 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:27.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:27.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:27.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 1340.7598ms +2017-07-19 17:35:27.952 +05:30 [Information] Request finished in 1356.9203ms 200 application/json; charset=utf-8 +2017-07-19 17:35:27.952 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" completed keep alive response. +2017-07-19 17:35:29.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:29.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:35:29.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:29.883 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:29.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:29.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:29.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:35:29.887 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:35:29.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:35:29.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:35:29.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3287.2316ms +2017-07-19 17:35:29.894 +05:30 [Information] Request finished in 3302.5773ms 200 application/json; charset=utf-8 +2017-07-19 17:35:29.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3265.7867ms +2017-07-19 17:35:29.897 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" completed keep alive response. +2017-07-19 17:35:29.907 +05:30 [Information] Request finished in 3302.5293ms 200 application/json; charset=utf-8 +2017-07-19 17:35:29.909 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" completed keep alive response. +2017-07-19 17:36:01.534 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 17:36:01.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 17:36:01.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 17:36:03.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", "", ""]) - ModelState is Valid +2017-07-19 17:36:27.543 +05:30 [Fatal] Sequence contains no elements +2017-07-19 17:36:27.557 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 17:36:29.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 17:36:29.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:36:29.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 17:36:29.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:36:29.198 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 27658.1582ms +2017-07-19 17:36:29.201 +05:30 [Information] Request finished in 27677.1748ms 400 text/plain; charset=utf-8 +2017-07-19 17:36:29.202 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" completed keep alive response. +2017-07-19 17:38:18.766 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" received FIN. +2017-07-19 17:38:18.767 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" received FIN. +2017-07-19 17:38:18.770 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" disconnecting. +2017-07-19 17:38:18.771 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" disconnecting. +2017-07-19 17:38:18.772 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" sending FIN. +2017-07-19 17:38:18.769 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" received FIN. +2017-07-19 17:38:18.778 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" sent FIN with status "0". +2017-07-19 17:38:18.819 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" received FIN. +2017-07-19 17:38:18.825 +05:30 [Debug] Connection id ""0HL6EJP5E42MC"" stopped. +2017-07-19 17:38:18.826 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" sending FIN. +2017-07-19 17:38:18.826 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" received FIN. +2017-07-19 17:38:18.828 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" received FIN. +2017-07-19 17:38:18.828 +05:30 [Debug] Connection id ""0HL6EJP5E42MG"" started. +2017-07-19 17:38:18.831 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" disconnecting. +2017-07-19 17:38:18.828 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" sent FIN with status "0". +2017-07-19 17:38:18.832 +05:30 [Debug] Connection id ""0HL6EJP5E42MA"" stopped. +2017-07-19 17:38:18.833 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" sending FIN. +2017-07-19 17:38:18.834 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" sent FIN with status "0". +2017-07-19 17:38:18.834 +05:30 [Debug] Connection id ""0HL6EJP5E42MD"" stopped. +2017-07-19 17:38:18.840 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" disconnecting. +2017-07-19 17:38:18.841 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" disconnecting. +2017-07-19 17:38:18.841 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" disconnecting. +2017-07-19 17:38:18.841 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" sending FIN. +2017-07-19 17:38:18.843 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" sending FIN. +2017-07-19 17:38:18.843 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" sent FIN with status "0". +2017-07-19 17:38:18.843 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" sending FIN. +2017-07-19 17:38:18.844 +05:30 [Debug] Connection id ""0HL6EJP5E42ME"" stopped. +2017-07-19 17:38:18.848 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" sent FIN with status "0". +2017-07-19 17:38:18.848 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" sent FIN with status "0". +2017-07-19 17:38:18.850 +05:30 [Debug] Connection id ""0HL6EJP5E42MF"" stopped. +2017-07-19 17:38:18.851 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 17:38:18.850 +05:30 [Debug] Connection id ""0HL6EJP5E42MB"" stopped. +2017-07-19 17:38:18.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 17:38:18.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 17:38:21.928 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", "", ""]) - ModelState is Valid +2017-07-19 17:42:23.293 +05:30 [Debug] Connection id ""0HL6EJP5E42MG"" received FIN. +2017-07-19 17:42:23.425 +05:30 [Fatal] Sequence contains no elements +2017-07-19 17:42:23.437 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 17:42:23.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 17:42:23.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:42:23.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 17:42:23.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:42:23.447 +05:30 [Debug] Connection id ""0HL6EJP5E42MG"" disconnecting. +2017-07-19 17:42:23.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 244581.9333ms +2017-07-19 17:42:23.451 +05:30 [Information] Connection id ""0HL6EJP5E42MG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 17:42:23.454 +05:30 [Information] Request finished in 244602.6986ms 400 text/plain; charset=utf-8 +2017-07-19 17:42:23.454 +05:30 [Debug] Connection id ""0HL6EJP5E42MG"" stopped. +2017-07-19 17:42:50.100 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" started. +2017-07-19 17:42:50.102 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 17:42:50.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 17:42:50.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 17:42:53.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 17:42:53.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:42:53.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:42:53.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:42:53.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3334.0296ms +2017-07-19 17:42:53.443 +05:30 [Information] Request finished in 3340.6058ms 200 application/json; charset=utf-8 +2017-07-19 17:42:53.444 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:42:53.500 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:42:53.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:42:53.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:42:55.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:42:55.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:42:55.662 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:42:55.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:42:55.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2166.687ms +2017-07-19 17:42:55.674 +05:30 [Information] Request finished in 2172.9779ms 200 application/json; charset=utf-8 +2017-07-19 17:42:55.674 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:42:55.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:42:55.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:42:55.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:42:58.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:42:58.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:42:58.877 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:42:58.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:42:58.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3196.5724ms +2017-07-19 17:42:58.884 +05:30 [Information] Request finished in 3203.3883ms 200 application/json; charset=utf-8 +2017-07-19 17:42:58.885 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:43:02.526 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" started. +2017-07-19 17:43:02.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:43:02.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:43:02.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:43:02.562 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:43:02.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:43:02.564 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:43:02.604 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" started. +2017-07-19 17:43:02.626 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:43:02.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:43:02.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:43:03.543 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" started. +2017-07-19 17:43:03.544 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" started. +2017-07-19 17:43:03.551 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" started. +2017-07-19 17:43:03.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:43:03.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:43:03.558 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:43:03.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:43:03.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:43:03.564 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:43:03.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:43:03.570 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:43:03.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:43:04.489 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" started. +2017-07-19 17:43:04.495 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:43:04.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:43:04.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:43:05.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:05.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:05.775 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:05.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:05.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:05.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:05.822 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:05.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3237.2309ms +2017-07-19 17:43:05.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:05.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:05.882 +05:30 [Information] Request finished in 3308.0958ms 200 application/json; charset=utf-8 +2017-07-19 17:43:05.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:05.885 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" completed keep alive response. +2017-07-19 17:43:05.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3257.0443ms +2017-07-19 17:43:05.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:05.928 +05:30 [Information] Request finished in 3319.3708ms 200 application/json; charset=utf-8 +2017-07-19 17:43:05.929 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:05.929 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" completed keep alive response. +2017-07-19 17:43:05.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:05.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:05.943 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:43:05.950 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:43:05.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:43:05.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3390.9386ms +2017-07-19 17:43:05.960 +05:30 [Information] Request finished in 3433.8732ms 200 application/json; charset=utf-8 +2017-07-19 17:43:05.961 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:43:06.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:06.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:06.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:06.730 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:06.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:06.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:06.735 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3174.0519ms +2017-07-19 17:43:06.739 +05:30 [Information] Request finished in 3191.2913ms 200 application/json; charset=utf-8 +2017-07-19 17:43:06.739 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" completed keep alive response. +2017-07-19 17:43:06.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:06.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:06.967 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:06.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:06.968 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:06.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3404.5387ms +2017-07-19 17:43:06.974 +05:30 [Information] Request finished in 3421.3712ms 200 application/json; charset=utf-8 +2017-07-19 17:43:06.975 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" completed keep alive response. +2017-07-19 17:43:07.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:43:07.700 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:07.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:07.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:07.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3207.4101ms +2017-07-19 17:43:07.712 +05:30 [Information] Request finished in 3219.9302ms 200 application/json; charset=utf-8 +2017-07-19 17:43:07.713 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" completed keep alive response. +2017-07-19 17:43:08.389 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:08.391 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:08.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:08.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:08.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4824.3361ms +2017-07-19 17:43:08.407 +05:30 [Information] Request finished in 4847.3407ms 200 application/json; charset=utf-8 +2017-07-19 17:43:08.408 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" completed keep alive response. +2017-07-19 17:43:09.020 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:09.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:09.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:09.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:09.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.8186ms +2017-07-19 17:43:09.084 +05:30 [Information] Request finished in 3149.9141ms 200 application/json; charset=utf-8 +2017-07-19 17:43:09.084 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" completed keep alive response. +2017-07-19 17:43:10.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:43:10.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:43:10.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:43:10.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:43:10.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:43:10.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:43:10.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:43:10.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:43:10.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:43:10.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:43:10.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:43:10.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:43:10.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:43:10.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:43:10.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:43:11.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:43:11.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:43:11.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:43:12.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:12.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:12.782 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:12.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:12.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:12.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2718.1514ms +2017-07-19 17:43:12.791 +05:30 [Information] Request finished in 2730.7864ms 200 application/json; charset=utf-8 +2017-07-19 17:43:12.792 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:43:13.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:13.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:13.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:13.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:14.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:14.082 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:14.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:14.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:14.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:14.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3578.1738ms +2017-07-19 17:43:14.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:14.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:14.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:14.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:14.171 +05:30 [Information] Request finished in 3629.7653ms 200 application/json; charset=utf-8 +2017-07-19 17:43:14.151 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:14.174 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" completed keep alive response. +2017-07-19 17:43:14.195 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:14.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:14.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4129.2475ms +2017-07-19 17:43:14.204 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3650.3011ms +2017-07-19 17:43:14.216 +05:30 [Information] Request finished in 4153.767ms 200 application/json; charset=utf-8 +2017-07-19 17:43:14.217 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" completed keep alive response. +2017-07-19 17:43:14.220 +05:30 [Information] Request finished in 3691.9921ms 200 application/json; charset=utf-8 +2017-07-19 17:43:14.222 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" completed keep alive response. +2017-07-19 17:43:14.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:14.538 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:14.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:14.556 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:14.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4023.5302ms +2017-07-19 17:43:14.619 +05:30 [Information] Request finished in 4079.2398ms 200 application/json; charset=utf-8 +2017-07-19 17:43:14.620 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" completed keep alive response. +2017-07-19 17:43:14.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 17:43:14.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 17:43:14.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 17:43:14.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:43:14.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 17:43:14.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 17:43:14.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 17:43:14.900 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 17:43:14.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 17:43:14.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 17:43:14.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:14.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:14.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:14.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3626.8046ms +2017-07-19 17:43:14.957 +05:30 [Information] Request finished in 3646.1787ms 200 application/json; charset=utf-8 +2017-07-19 17:43:14.958 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" completed keep alive response. +2017-07-19 17:43:17.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:17.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:18.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:18.008 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:18.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:18.010 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:43:18.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:18.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3183.3746ms +2017-07-19 17:43:18.148 +05:30 [Information] Request finished in 3306.3809ms 200 application/json; charset=utf-8 +2017-07-19 17:43:18.149 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" completed keep alive response. +2017-07-19 17:43:18.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:18.219 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:18.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:43:18.219 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:43:18.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:18.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:43:18.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:18.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:43:18.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3374.0048ms +2017-07-19 17:43:18.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3319.9293ms +2017-07-19 17:43:18.227 +05:30 [Information] Request finished in 3412.948ms 200 application/json; charset=utf-8 +2017-07-19 17:43:18.228 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" completed keep alive response. +2017-07-19 17:43:18.228 +05:30 [Information] Request finished in 3400.7199ms 200 application/json; charset=utf-8 +2017-07-19 17:43:18.230 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" completed keep alive response. +2017-07-19 17:43:31.663 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 17:43:31.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 17:43:31.665 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 17:43:34.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", "", ""]) - ModelState is Valid +2017-07-19 17:51:02.594 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" received FIN. +2017-07-19 17:51:02.594 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" received FIN. +2017-07-19 17:51:02.595 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" received FIN. +2017-07-19 17:51:02.594 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" disconnecting. +2017-07-19 17:51:02.613 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" disconnecting. +2017-07-19 17:51:02.614 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" disconnecting. +2017-07-19 17:51:02.615 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" received FIN. +2017-07-19 17:51:02.615 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" received FIN. +2017-07-19 17:51:02.613 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" sending FIN. +2017-07-19 17:51:02.616 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" sending FIN. +2017-07-19 17:51:02.616 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" received FIN. +2017-07-19 17:51:02.623 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" received FIN. +2017-07-19 17:51:02.616 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" sending FIN. +2017-07-19 17:51:02.623 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" sent FIN with status "0". +2017-07-19 17:51:02.624 +05:30 [Debug] Connection id ""0HL6EJP5E42MI"" stopped. +2017-07-19 17:51:02.624 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" sent FIN with status "0". +2017-07-19 17:51:02.624 +05:30 [Debug] Connection id ""0HL6EJP5E42MM"" stopped. +2017-07-19 17:51:02.625 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" sent FIN with status "0". +2017-07-19 17:51:02.625 +05:30 [Debug] Connection id ""0HL6EJP5E42MK"" stopped. +2017-07-19 17:51:02.676 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" disconnecting. +2017-07-19 17:51:02.676 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" disconnecting. +2017-07-19 17:51:02.676 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" disconnecting. +2017-07-19 17:51:02.676 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" sending FIN. +2017-07-19 17:51:02.678 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" sending FIN. +2017-07-19 17:51:02.678 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" sending FIN. +2017-07-19 17:51:02.679 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" sent FIN with status "0". +2017-07-19 17:51:02.680 +05:30 [Debug] Connection id ""0HL6EJP5E42MN"" stopped. +2017-07-19 17:51:02.723 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" sent FIN with status "0". +2017-07-19 17:51:02.724 +05:30 [Debug] Connection id ""0HL6EJP5E42MH"" stopped. +2017-07-19 17:51:02.758 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" sent FIN with status "0". +2017-07-19 17:51:02.762 +05:30 [Fatal] Sequence contains no elements +2017-07-19 17:51:02.763 +05:30 [Debug] Connection id ""0HL6EJP5E42ML"" stopped. +2017-07-19 17:51:02.770 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 17:51:02.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 17:51:02.773 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:51:02.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 17:51:02.776 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:51:02.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 451096.7302ms +2017-07-19 17:51:02.806 +05:30 [Information] Connection id ""0HL6EJP5E42MJ"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 17:51:02.806 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" disconnecting. +2017-07-19 17:51:02.820 +05:30 [Information] Request finished in 451142.4867ms 400 text/plain; charset=utf-8 +2017-07-19 17:51:02.822 +05:30 [Debug] Connection id ""0HL6EJP5E42MJ"" stopped. +2017-07-19 17:51:50.147 +05:30 [Debug] Connection id ""0HL6EJP5E42MO"" started. +2017-07-19 17:51:50.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?currentPassword=Asd_123!@ 0 +2017-07-19 17:51:50.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 17:51:50.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 17:51:53.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "Asd_123!@", "", "", ""]) - ModelState is Valid +2017-07-19 17:55:09.276 +05:30 [Debug] Connection id ""0HL6EJP5E42MO"" received FIN. +2017-07-19 17:55:09.376 +05:30 [Fatal] Sequence contains no elements +2017-07-19 17:55:09.379 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 17:55:09.383 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-19 17:55:09.385 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:55:09.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 17:55:09.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:55:09.389 +05:30 [Debug] Connection id ""0HL6EJP5E42MO"" disconnecting. +2017-07-19 17:55:09.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 199215.2652ms +2017-07-19 17:55:09.392 +05:30 [Information] Connection id ""0HL6EJP5E42MO"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-19 17:55:09.394 +05:30 [Debug] Connection id ""0HL6EJP5E42MO"" stopped. +2017-07-19 17:55:09.395 +05:30 [Information] Request finished in 199238.1952ms 400 text/plain; charset=utf-8 +2017-07-19 17:56:13.648 +05:30 [Debug] Hosting starting +2017-07-19 17:56:14.089 +05:30 [Debug] Hosting started +2017-07-19 17:56:14.186 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" started. +2017-07-19 17:56:14.186 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" started. +2017-07-19 17:56:14.438 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 17:56:14.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 17:56:14.592 +05:30 [Information] Request finished in 161.9091ms 200 +2017-07-19 17:56:14.665 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:15.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 17:56:15.769 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b5b0f178-ce9d-4e0e-a19c-42061e0c406a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 17:56:16.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 17:56:16.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 17:56:16.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 17:56:16.414 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:56:16.497 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:16.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:17.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1245.473ms +2017-07-19 17:56:17.433 +05:30 [Information] Request finished in 3058.6656ms 200 application/json; charset=utf-8 +2017-07-19 17:56:17.436 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:56:22.356 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:22.358 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:22.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:25.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:29.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:29.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:29.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:29.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7335.7346ms +2017-07-19 17:56:29.709 +05:30 [Information] Request finished in 7356.5912ms 200 application/json; charset=utf-8 +2017-07-19 17:56:29.711 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:30.109 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 17:56:30.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 17:56:30.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 17:56:33.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 17:56:33.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:33.320 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:33.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:33.378 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3265.6208ms +2017-07-19 17:56:33.382 +05:30 [Information] Request finished in 3271.5882ms 200 application/json; charset=utf-8 +2017-07-19 17:56:33.383 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:56:43.269 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:43.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:43.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:46.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:46.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:46.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:46.503 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:46.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3228.2134ms +2017-07-19 17:56:46.507 +05:30 [Information] Request finished in 3239.2245ms 200 application/json; charset=utf-8 +2017-07-19 17:56:46.508 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:46.627 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:46.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:46.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:46.690 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:46.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:46.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:49.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:49.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:49.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:49.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:49.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3087.9206ms +2017-07-19 17:56:49.784 +05:30 [Information] Request finished in 3094.0605ms 200 application/json; charset=utf-8 +2017-07-19 17:56:49.784 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:49.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:49.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:49.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:49.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:49.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:49.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:49.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:49.962 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3332.1952ms +2017-07-19 17:56:49.965 +05:30 [Information] Request finished in 3345.977ms 200 application/json; charset=utf-8 +2017-07-19 17:56:49.966 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:56:50.003 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:56:50.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:56:50.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:56:50.009 +05:30 [Debug] Connection id ""0HL6EK5CDFRLV"" started. +2017-07-19 17:56:50.011 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:56:50.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:56:50.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:56:51.468 +05:30 [Debug] Connection id ""0HL6EK5CDFRM0"" started. +2017-07-19 17:56:51.470 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 17:56:51.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 17:56:51.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 17:56:53.267 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:53.287 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:56:53.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:53.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:53.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:53.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:53.313 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3372.7795ms +2017-07-19 17:56:53.326 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:53.326 +05:30 [Information] Request finished in 3422.1085ms 200 application/json; charset=utf-8 +2017-07-19 17:56:53.326 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:53.327 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:53.365 +05:30 [Debug] Connection id ""0HL6EK5CDFRM1"" started. +2017-07-19 17:56:53.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:53.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:56:53.390 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:56:53.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:56:53.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:56:53.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:56:53.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:56:53.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3382.5343ms +2017-07-19 17:56:53.410 +05:30 [Information] Request finished in 3406.9948ms 200 application/json; charset=utf-8 +2017-07-19 17:56:53.411 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:56:53.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:53.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:53.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:53.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3560.9642ms +2017-07-19 17:56:53.579 +05:30 [Information] Request finished in 3567.258ms 200 application/json; charset=utf-8 +2017-07-19 17:56:53.580 +05:30 [Debug] Connection id ""0HL6EK5CDFRLV"" completed keep alive response. +2017-07-19 17:56:53.660 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:56:53.661 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:56:53.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:56:54.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 17:56:54.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:54.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:54.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:54.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3400.309ms +2017-07-19 17:56:54.896 +05:30 [Information] Request finished in 3424.7934ms 200 application/json; charset=utf-8 +2017-07-19 17:56:54.897 +05:30 [Debug] Connection id ""0HL6EK5CDFRM0"" completed keep alive response. +2017-07-19 17:56:55.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:56:55.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:56:55.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:56:56.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:56:56.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:56.548 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:56.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:56.549 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:56.553 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3147.2864ms +2017-07-19 17:56:56.557 +05:30 [Information] Request finished in 3171.12ms 200 application/json; charset=utf-8 +2017-07-19 17:56:56.559 +05:30 [Debug] Connection id ""0HL6EK5CDFRM1"" completed keep alive response. +2017-07-19 17:56:56.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:56.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:56.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:56.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3221.5445ms +2017-07-19 17:56:56.633 +05:30 [Information] Request finished in 3246.9333ms 200 application/json; charset=utf-8 +2017-07-19 17:56:56.633 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:56:56.648 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:56:56.648 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:56:56.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:56:56.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:56:56.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:56.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:56.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:56.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3249.0498ms +2017-07-19 17:56:56.917 +05:30 [Information] Request finished in 3256.3242ms 200 application/json; charset=utf-8 +2017-07-19 17:56:56.917 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:56:58.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:56:58.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:58.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:58.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:58.199 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3151.3568ms +2017-07-19 17:56:58.205 +05:30 [Information] Request finished in 3183.1789ms 200 application/json; charset=utf-8 +2017-07-19 17:56:58.206 +05:30 [Debug] Connection id ""0HL6EK5CDFRLV"" completed keep alive response. +2017-07-19 17:56:58.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 17:56:58.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 17:56:58.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 17:56:58.237 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 17:56:58.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 17:56:58.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 17:56:59.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:56:59.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:56:59.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:56:59.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:56:59.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3190.892ms +2017-07-19 17:56:59.846 +05:30 [Information] Request finished in 3202.8328ms 200 application/json; charset=utf-8 +2017-07-19 17:56:59.847 +05:30 [Debug] Connection id ""0HL6EK5CDFRM0"" completed keep alive response. +2017-07-19 17:57:01.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:01.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:57:01.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:01.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:01.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:01.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:01.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3151.6124ms +2017-07-19 17:57:01.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:01.394 +05:30 [Information] Request finished in 3165.4273ms 200 application/json; charset=utf-8 +2017-07-19 17:57:01.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:01.395 +05:30 [Debug] Connection id ""0HL6EK5CDFRM1"" completed keep alive response. +2017-07-19 17:57:01.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3154.448ms +2017-07-19 17:57:01.407 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:57:01.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:57:01.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:57:01.412 +05:30 [Information] Request finished in 3180.5152ms 200 application/json; charset=utf-8 +2017-07-19 17:57:01.413 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:57:04.461 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:04.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:04.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:04.531 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:04.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3120.2608ms +2017-07-19 17:57:04.536 +05:30 [Information] Request finished in 3129.9129ms 200 application/json; charset=utf-8 +2017-07-19 17:57:04.536 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:57:06.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 17:57:06.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 17:57:06.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 17:57:06.036 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 17:57:06.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 17:57:06.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 17:57:06.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 17:57:06.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 17:57:06.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 17:57:06.672 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 17:57:06.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 17:57:06.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 17:57:06.685 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 17:57:06.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 17:57:06.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 17:57:07.459 +05:30 [Debug] Connection id ""0HL6EK5CDFRM2"" started. +2017-07-19 17:57:07.476 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 17:57:07.481 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 17:57:07.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 17:57:09.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:09.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:09.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:09.507 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:09.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:09.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:09.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3492.4305ms +2017-07-19 17:57:09.525 +05:30 [Information] Request finished in 3501.4272ms 200 application/json; charset=utf-8 +2017-07-19 17:57:09.526 +05:30 [Debug] Connection id ""0HL6EK5CDFRM0"" completed keep alive response. +2017-07-19 17:57:09.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:09.581 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:09.581 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:09.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:09.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3546.3322ms +2017-07-19 17:57:09.594 +05:30 [Information] Request finished in 3569.834ms 200 application/json; charset=utf-8 +2017-07-19 17:57:09.595 +05:30 [Debug] Connection id ""0HL6EK5CDFRLV"" completed keep alive response. +2017-07-19 17:57:09.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 17:57:09.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:09.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:09.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:09.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2244.6655ms +2017-07-19 17:57:09.731 +05:30 [Information] Request finished in 2269.0549ms 200 application/json; charset=utf-8 +2017-07-19 17:57:09.731 +05:30 [Debug] Connection id ""0HL6EK5CDFRM2"" completed keep alive response. +2017-07-19 17:57:09.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 17:57:09.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 17:57:09.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 17:57:09.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:09.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:09.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:09.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:09.943 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:09.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:09.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:09.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3290.9299ms +2017-07-19 17:57:09.982 +05:30 [Information] Request finished in 3314.2622ms 200 application/json; charset=utf-8 +2017-07-19 17:57:09.984 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:57:10.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:10.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:10.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:10.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:10.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3749.2084ms +2017-07-19 17:57:10.428 +05:30 [Information] Request finished in 3761.9166ms 200 application/json; charset=utf-8 +2017-07-19 17:57:10.429 +05:30 [Debug] Connection id ""0HL6EK5CDFRM1"" completed keep alive response. +2017-07-19 17:57:11.872 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:11.873 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:11.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:11.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:11.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5195.7067ms +2017-07-19 17:57:11.887 +05:30 [Information] Request finished in 5218.2782ms 200 application/json; charset=utf-8 +2017-07-19 17:57:11.888 +05:30 [Debug] Connection id ""0HL6EK5CDFRLU"" completed keep alive response. +2017-07-19 17:57:12.775 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 17:57:12.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:12.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:12.822 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:12.824 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3077.6378ms +2017-07-19 17:57:12.831 +05:30 [Information] Request finished in 3087.4859ms 200 application/json; charset=utf-8 +2017-07-19 17:57:12.832 +05:30 [Debug] Connection id ""0HL6EK5CDFRM0"" completed keep alive response. +2017-07-19 17:57:13.307 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 17:57:13.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 17:57:13.309 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 17:57:13.358 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 17:57:13.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 17:57:13.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 17:57:13.412 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 17:57:13.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 17:57:13.419 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 17:57:16.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:16.532 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:16.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:16.626 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:16.627 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:16.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:16.631 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:16.631 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:16.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 17:57:16.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:16.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:16.692 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3333.6952ms +2017-07-19 17:57:16.697 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3248.2539ms +2017-07-19 17:57:16.711 +05:30 [Information] Request finished in 3428.6847ms 200 application/json; charset=utf-8 +2017-07-19 17:57:16.712 +05:30 [Debug] Connection id ""0HL6EK5CDFRM2"" completed keep alive response. +2017-07-19 17:57:16.757 +05:30 [Information] Request finished in 3478.7891ms 200 application/json; charset=utf-8 +2017-07-19 17:57:16.757 +05:30 [Debug] Connection id ""0HL6EK5CDFRLT"" completed keep alive response. +2017-07-19 17:57:16.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 17:57:16.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:57:16.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:57:16.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:57:16.876 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3507.4641ms +2017-07-19 17:57:16.879 +05:30 [Information] Request finished in 3608.3048ms 200 application/json; charset=utf-8 +2017-07-19 17:57:16.880 +05:30 [Debug] Connection id ""0HL6EK5CDFRLV"" completed keep alive response. +2017-07-19 17:57:30.083 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword application/x-www-form-urlencoded 135 +2017-07-19 17:57:30.084 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 17:57:30.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 17:57:33.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "", "", "", ""]) - ModelState is Valid +2017-07-19 17:59:23.103 +05:30 [Debug] Hosting starting +2017-07-19 17:59:23.313 +05:30 [Debug] Hosting started +2017-07-19 17:59:23.389 +05:30 [Debug] Connection id ""0HL6EK74PRLN7"" started. +2017-07-19 17:59:23.389 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" started. +2017-07-19 17:59:23.592 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 17:59:23.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 17:59:23.685 +05:30 [Information] Request finished in 131.4222ms 200 +2017-07-19 17:59:23.778 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" completed keep alive response. +2017-07-19 17:59:24.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 17:59:24.488 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"4932aada-2215-4190-8bef-0ac925b08175"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 17:59:24.667 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 17:59:24.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 17:59:24.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 17:59:24.865 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 17:59:24.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 17:59:24.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 17:59:25.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 622.4984ms +2017-07-19 17:59:25.410 +05:30 [Information] Request finished in 1889.6554ms 200 application/json; charset=utf-8 +2017-07-19 17:59:25.412 +05:30 [Debug] Connection id ""0HL6EK74PRLN7"" completed keep alive response. +2017-07-19 18:00:07.495 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 18:00:07.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 18:00:07.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 18:00:11.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:00:15.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:15.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:15.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:16.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8502.233ms +2017-07-19 18:00:16.011 +05:30 [Information] Request finished in 8517.433ms 200 application/json; charset=utf-8 +2017-07-19 18:00:16.012 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" completed keep alive response. +2017-07-19 18:00:16.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:00:16.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:00:16.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:00:19.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:19.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:19.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:19.781 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:19.792 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3240.4468ms +2017-07-19 18:00:19.795 +05:30 [Information] Request finished in 3251.6635ms 200 application/json; charset=utf-8 +2017-07-19 18:00:19.795 +05:30 [Debug] Connection id ""0HL6EK74PRLN7"" completed keep alive response. +2017-07-19 18:00:19.851 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:00:19.852 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:00:19.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:00:22.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:22.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:22.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:22.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:22.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.9569ms +2017-07-19 18:00:22.983 +05:30 [Information] Request finished in 3131.6037ms 200 application/json; charset=utf-8 +2017-07-19 18:00:22.983 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" completed keep alive response. +2017-07-19 18:00:27.827 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:00:27.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:00:27.827 +05:30 [Debug] Connection id ""0HL6EK74PRLN8"" started. +2017-07-19 18:00:27.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:00:27.833 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:00:27.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:00:27.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:00:27.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:00:27.856 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:00:27.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:00:30.650 +05:30 [Debug] Connection id ""0HL6EK74PRLN9"" started. +2017-07-19 18:00:30.653 +05:30 [Debug] Connection id ""0HL6EK74PRLNA"" started. +2017-07-19 18:00:30.657 +05:30 [Debug] Connection id ""0HL6EK74PRLNB"" started. +2017-07-19 18:00:30.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:00:30.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:00:30.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:00:31.489 +05:30 [Debug] Connection id ""0HL6EK74PRLNC"" started. +2017-07-19 18:00:32.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:00:32.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:00:32.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:00:33.678 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:00:33.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:00:33.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:00:34.726 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:00:34.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:00:34.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:00:34.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:34.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:34.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:34.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:34.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:34.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:34.921 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:34.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:34.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:34.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:34.998 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7135.8965ms +2017-07-19 18:00:35.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7123.8419ms +2017-07-19 18:00:35.003 +05:30 [Information] Request finished in 7184.2469ms 200 application/json; charset=utf-8 +2017-07-19 18:00:35.003 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" completed keep alive response. +2017-07-19 18:00:35.038 +05:30 [Information] Request finished in 7194.3467ms 200 application/json; charset=utf-8 +2017-07-19 18:00:35.057 +05:30 [Debug] Connection id ""0HL6EK74PRLN8"" completed keep alive response. +2017-07-19 18:00:35.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:35.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:35.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:35.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:35.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7247.3137ms +2017-07-19 18:00:35.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:00:35.107 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:00:35.109 +05:30 [Information] Request finished in 7291.1011ms 200 application/json; charset=utf-8 +2017-07-19 18:00:35.110 +05:30 [Debug] Connection id ""0HL6EK74PRLN7"" completed keep alive response. +2017-07-19 18:00:35.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:00:37.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:37.190 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:37.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:37.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:37.635 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:37.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:37.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:37.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6993.9763ms +2017-07-19 18:00:37.717 +05:30 [Information] Request finished in 7040.4992ms 200 application/json; charset=utf-8 +2017-07-19 18:00:37.754 +05:30 [Debug] Connection id ""0HL6EK74PRLNA"" completed keep alive response. +2017-07-19 18:00:37.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:37.908 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:37.908 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:37.909 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:37.994 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:00:38.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5354.8809ms +2017-07-19 18:00:38.043 +05:30 [Information] Request finished in 5369.4937ms 200 application/json; charset=utf-8 +2017-07-19 18:00:38.043 +05:30 [Debug] Connection id ""0HL6EK74PRLN9"" completed keep alive response. +2017-07-19 18:00:38.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:38.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:38.073 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:38.081 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3347.3403ms +2017-07-19 18:00:38.085 +05:30 [Information] Request finished in 3401.0324ms 200 application/json; charset=utf-8 +2017-07-19 18:00:38.086 +05:30 [Debug] Connection id ""0HL6EK74PRLNC"" completed keep alive response. +2017-07-19 18:00:38.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:38.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:38.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:38.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:38.537 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3417.6547ms +2017-07-19 18:00:38.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 18:00:38.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 18:00:38.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 18:00:38.638 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 18:00:38.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 18:00:38.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 18:00:38.669 +05:30 [Information] Request finished in 3534.0514ms 200 application/json; charset=utf-8 +2017-07-19 18:00:38.669 +05:30 [Debug] Connection id ""0HL6EK74PRLN6"" completed keep alive response. +2017-07-19 18:00:38.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 18:00:38.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 18:00:38.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 18:00:39.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:39.648 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:39.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:39.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:39.693 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5988.04ms +2017-07-19 18:00:39.744 +05:30 [Information] Request finished in 6062.2937ms 200 application/json; charset=utf-8 +2017-07-19 18:00:39.745 +05:30 [Debug] Connection id ""0HL6EK74PRLNB"" completed keep alive response. +2017-07-19 18:00:41.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:41.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:41.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:41.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:41.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:42.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:42.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3400.9569ms +2017-07-19 18:00:42.134 +05:30 [Information] Request finished in 3474.0195ms 200 application/json; charset=utf-8 +2017-07-19 18:00:42.150 +05:30 [Debug] Connection id ""0HL6EK74PRLN7"" completed keep alive response. +2017-07-19 18:00:42.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:42.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:42.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:42.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:00:42.180 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:42.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3541.55ms +2017-07-19 18:00:42.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:00:42.193 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:00:42.193 +05:30 [Information] Request finished in 3581.877ms 200 application/json; charset=utf-8 +2017-07-19 18:00:42.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:00:42.194 +05:30 [Debug] Connection id ""0HL6EK74PRLN8"" completed keep alive response. +2017-07-19 18:00:42.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:00:42.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3383.6407ms +2017-07-19 18:00:42.223 +05:30 [Information] Request finished in 3599.6664ms 200 application/json; charset=utf-8 +2017-07-19 18:00:42.227 +05:30 [Debug] Connection id ""0HL6EK74PRLNA"" completed keep alive response. +2017-07-19 18:00:54.144 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword text/plain;charset=UTF-8 15 +2017-07-19 18:00:54.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 18:00:54.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 18:00:56.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["0", "", "", "", ""]) - ModelState is Valid +2017-07-19 18:38:47.053 +05:30 [Debug] Hosting starting +2017-07-19 18:38:47.453 +05:30 [Debug] Hosting started +2017-07-19 18:38:47.579 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" started. +2017-07-19 18:38:47.579 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" started. +2017-07-19 18:38:47.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 18:38:47.810 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 18:38:47.909 +05:30 [Information] Request finished in 140.0626ms 200 +2017-07-19 18:38:48.041 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:38:48.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 18:38:48.779 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"dfb05b6b-3c49-4bfe-847a-396e101cce43"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 18:38:49.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 18:38:49.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 18:38:49.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 18:38:49.209 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:38:49.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:38:49.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:38:49.226 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:38:49.254 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:38:49.256 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:38:49.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 661.2391ms +2017-07-19 18:38:49.832 +05:30 [Information] Request finished in 2092.672ms 200 application/json; charset=utf-8 +2017-07-19 18:38:49.834 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:38:52.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:38:57.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:38:57.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:38:57.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:38:57.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7961.842ms +2017-07-19 18:38:57.227 +05:30 [Information] Request finished in 8003.3116ms 200 application/json; charset=utf-8 +2017-07-19 18:38:57.228 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:38:57.617 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 18:38:57.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 18:38:57.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 18:39:00.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:39:00.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:00.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:00.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:00.909 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3287.4726ms +2017-07-19 18:39:00.911 +05:30 [Information] Request finished in 3298.9837ms 200 application/json; charset=utf-8 +2017-07-19 18:39:00.912 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:11.147 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:39:11.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:39:11.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:39:14.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:14.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:14.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:14.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:14.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.949ms +2017-07-19 18:39:14.221 +05:30 [Information] Request finished in 3076.6903ms 200 application/json; charset=utf-8 +2017-07-19 18:39:14.222 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:14.347 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:39:14.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:39:14.348 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:39:14.555 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:39:14.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:39:14.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:39:17.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:17.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:17.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:17.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:17.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3168.105ms +2017-07-19 18:39:17.523 +05:30 [Information] Request finished in 3199.9807ms 200 application/json; charset=utf-8 +2017-07-19 18:39:17.524 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:17.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:17.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:17.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:17.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:17.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3140.6019ms +2017-07-19 18:39:17.700 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:39:17.702 +05:30 [Information] Request finished in 3151.9296ms 200 application/json; charset=utf-8 +2017-07-19 18:39:17.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:39:17.703 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:17.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:39:17.740 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:39:17.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:39:17.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:39:17.747 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" started. +2017-07-19 18:39:17.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:39:17.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:39:17.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:39:19.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:19.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:19.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:19.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:19.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2136.4925ms +2017-07-19 18:39:19.882 +05:30 [Information] Request finished in 2141.9649ms 200 application/json; charset=utf-8 +2017-07-19 18:39:19.883 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:20.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:20.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:20.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:20.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:20.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:20.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3178.0319ms +2017-07-19 18:39:20.888 +05:30 [Information] Request finished in 3188.4379ms 200 application/json; charset=utf-8 +2017-07-19 18:39:20.889 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:20.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:39:20.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:39:20.925 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:39:20.926 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:39:20.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:39:20.930 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:39:21.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:21.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:21.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:21.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3275.2402ms +2017-07-19 18:39:21.030 +05:30 [Information] Request finished in 3282.3881ms 200 application/json; charset=utf-8 +2017-07-19 18:39:21.031 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" completed keep alive response. +2017-07-19 18:39:21.099 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:39:21.100 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:39:21.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:39:24.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:24.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:24.098 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:24.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:24.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:24.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:24.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:24.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3174.5931ms +2017-07-19 18:39:24.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:24.111 +05:30 [Information] Request finished in 3185.4596ms 200 application/json; charset=utf-8 +2017-07-19 18:39:24.112 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:24.129 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3184.5055ms +2017-07-19 18:39:24.132 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:39:24.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:39:24.139 +05:30 [Information] Request finished in 3216.0965ms 200 application/json; charset=utf-8 +2017-07-19 18:39:24.139 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:24.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:39:24.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:24.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:24.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:24.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:24.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3192.9463ms +2017-07-19 18:39:24.299 +05:30 [Information] Request finished in 3200.7944ms 200 application/json; charset=utf-8 +2017-07-19 18:39:24.299 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" completed keep alive response. +2017-07-19 18:39:27.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:27.280 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:27.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:27.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:27.288 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3140.2229ms +2017-07-19 18:39:27.291 +05:30 [Information] Request finished in 3160.6633ms 200 application/json; charset=utf-8 +2017-07-19 18:39:27.292 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:28.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:39:28.982 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:39:28.982 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:39:28.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:39:28.984 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:39:28.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:39:29.488 +05:30 [Debug] Connection id ""0HL6EKT5CHIKP"" started. +2017-07-19 18:39:29.494 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" started. +2017-07-19 18:39:29.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:39:29.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:39:29.501 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:39:29.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:39:29.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:39:29.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:39:30.382 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" started. +2017-07-19 18:39:30.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:39:30.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:39:30.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:39:31.678 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:39:31.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:39:31.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:39:33.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:33.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:33.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:33.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:33.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:33.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:33.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4873.3807ms +2017-07-19 18:39:33.865 +05:30 [Information] Request finished in 4882.0731ms 200 application/json; charset=utf-8 +2017-07-19 18:39:33.866 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" completed keep alive response. +2017-07-19 18:39:33.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:33.882 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:33.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:33.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:33.887 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4898.4773ms +2017-07-19 18:39:33.890 +05:30 [Information] Request finished in 4907.3673ms 200 application/json; charset=utf-8 +2017-07-19 18:39:33.891 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:34.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:34.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:34.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:34.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:39:34.914 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:34.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:34.938 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:34.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:34.961 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3258.7513ms +2017-07-19 18:39:34.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:34.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:34.996 +05:30 [Information] Request finished in 3314.878ms 200 application/json; charset=utf-8 +2017-07-19 18:39:35.001 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" completed keep alive response. +2017-07-19 18:39:35.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:35.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5514.5624ms +2017-07-19 18:39:35.099 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:39:35.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:39:35.102 +05:30 [Information] Request finished in 5607.7926ms 200 application/json; charset=utf-8 +2017-07-19 18:39:35.104 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:35.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:39:35.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:35.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:35.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:35.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:35.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5897.8317ms +2017-07-19 18:39:35.407 +05:30 [Information] Request finished in 5914.215ms 200 application/json; charset=utf-8 +2017-07-19 18:39:35.408 +05:30 [Debug] Connection id ""0HL6EKT5CHIKP"" completed keep alive response. +2017-07-19 18:39:36.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:36.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:36.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:36.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:36.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6281.2175ms +2017-07-19 18:39:36.994 +05:30 [Information] Request finished in 6319.2983ms 200 application/json; charset=utf-8 +2017-07-19 18:39:36.995 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" completed keep alive response. +2017-07-19 18:39:37.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:39:37.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:37.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:37.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:37.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2283.0079ms +2017-07-19 18:39:37.440 +05:30 [Information] Request finished in 2399.4579ms 200 application/json; charset=utf-8 +2017-07-19 18:39:37.440 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" completed keep alive response. +2017-07-19 18:39:38.066 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-19 18:39:38.067 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-19 18:39:38.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-19 18:39:38.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-19 18:39:38.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-19 18:39:38.086 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-19 18:39:38.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-19 18:39:38.090 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-19 18:39:38.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-19 18:39:39.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:39.449 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:39.450 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:39.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:39.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:39.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 1359.5234ms +2017-07-19 18:39:39.458 +05:30 [Information] Request finished in 1398.8222ms 200 application/json; charset=utf-8 +2017-07-19 18:39:39.458 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" completed keep alive response. +2017-07-19 18:39:41.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:41.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:39:41.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:41.294 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:41.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:41.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:39:41.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:41.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:39:41.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:39:41.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:39:41.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3238.7048ms +2017-07-19 18:39:41.339 +05:30 [Information] Request finished in 3279.7876ms 200 application/json; charset=utf-8 +2017-07-19 18:39:41.339 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" completed keep alive response. +2017-07-19 18:39:41.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3270.9042ms +2017-07-19 18:39:41.347 +05:30 [Information] Request finished in 3290.0734ms 200 application/json; charset=utf-8 +2017-07-19 18:39:41.348 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" completed keep alive response. +2017-07-19 18:39:52.131 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/ChangePassword?userId=1 multipart/form-data; boundary=----WebKitFormBoundarycYAFbsbruA8MzU1I 603 +2017-07-19 18:39:52.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ChangePassword"'. +2017-07-19 18:39:52.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" +2017-07-19 18:39:55.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:41:00.105 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" received FIN. +2017-07-19 18:41:00.105 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" received FIN. +2017-07-19 18:41:00.106 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" received FIN. +2017-07-19 18:41:00.106 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" received FIN. +2017-07-19 18:41:00.106 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" received FIN. +2017-07-19 18:41:00.113 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" disconnecting. +2017-07-19 18:41:00.116 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" sending FIN. +2017-07-19 18:41:00.113 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" disconnecting. +2017-07-19 18:41:00.120 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" disconnecting. +2017-07-19 18:41:00.120 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" disconnecting. +2017-07-19 18:41:00.123 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" disconnecting. +2017-07-19 18:41:00.120 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" sending FIN. +2017-07-19 18:41:00.123 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" sending FIN. +2017-07-19 18:41:00.124 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" sending FIN. +2017-07-19 18:41:00.124 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" sent FIN with status "0". +2017-07-19 18:41:00.122 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" sent FIN with status "0". +2017-07-19 18:41:00.190 +05:30 [Debug] Connection id ""0HL6EKT5CHIKN"" stopped. +2017-07-19 18:41:00.191 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" sent FIN with status "0". +2017-07-19 18:41:00.192 +05:30 [Debug] Connection id ""0HL6EKT5CHIKO"" stopped. +2017-07-19 18:41:00.192 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" sent FIN with status "0". +2017-07-19 18:41:00.192 +05:30 [Debug] Connection id ""0HL6EKT5CHIKM"" stopped. +2017-07-19 18:41:00.194 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" sending FIN. +2017-07-19 18:41:00.194 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" sent FIN with status "0". +2017-07-19 18:41:00.194 +05:30 [Debug] Connection id ""0HL6EKT5CHIKR"" stopped. +2017-07-19 18:41:00.193 +05:30 [Debug] Connection id ""0HL6EKT5CHIKQ"" stopped. +2017-07-19 18:41:37.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:41:37.474 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:41:37.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 18:41:37.476 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:41:37.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ChangePassword (Api.Socioboard)" in 105342.2635ms +2017-07-19 18:41:37.484 +05:30 [Information] Request finished in 105349.8481ms 200 text/plain; charset=utf-8 +2017-07-19 18:41:37.485 +05:30 [Debug] Connection id ""0HL6EKT5CHIKP"" completed keep alive response. +2017-07-19 18:49:47.812 +05:30 [Debug] Hosting starting +2017-07-19 18:49:48.134 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" started. +2017-07-19 18:49:48.144 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" started. +2017-07-19 18:49:48.212 +05:30 [Debug] Hosting started +2017-07-19 18:49:48.342 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 18:49:48.343 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 18:49:48.419 +05:30 [Information] Request finished in 117.9857ms 200 +2017-07-19 18:49:48.494 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:49:49.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 18:49:49.289 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"aaa157bf-99e7-407a-91ea-9b0b0ae47f56"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 18:49:49.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 18:49:49.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 18:49:49.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 18:49:49.658 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:49:49.665 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:49:49.707 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:49:50.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 600.549ms +2017-07-19 18:49:50.164 +05:30 [Information] Request finished in 1895.5957ms 200 application/json; charset=utf-8 +2017-07-19 18:49:50.167 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" completed keep alive response. +2017-07-19 18:49:51.018 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:49:51.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:49:51.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:49:54.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:50:00.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:50:00.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:50:00.284 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:50:00.462 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9406.337ms +2017-07-19 18:50:00.467 +05:30 [Information] Request finished in 9452.5534ms 200 application/json; charset=utf-8 +2017-07-19 18:50:00.468 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:50:00.963 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 18:50:00.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 18:50:00.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 18:50:04.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:50:04.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-07-19 18:50:04.254 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-07-19 18:50:04.312 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3276.4767ms +2017-07-19 18:50:04.322 +05:30 [Information] Request finished in 3359.0437ms 400 +2017-07-19 18:50:04.324 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" completed keep alive response. +2017-07-19 18:50:27.069 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:50:27.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:50:27.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:50:29.215 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:50:29.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:50:29.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:50:29.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:50:29.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2148.3402ms +2017-07-19 18:50:29.226 +05:30 [Information] Request finished in 2157.4805ms 200 application/json; charset=utf-8 +2017-07-19 18:50:29.227 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:50:36.583 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:50:36.584 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:50:36.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:50:39.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:50:39.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:50:39.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:50:39.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:50:39.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.6704ms +2017-07-19 18:50:39.660 +05:30 [Information] Request finished in 3077.6153ms 200 application/json; charset=utf-8 +2017-07-19 18:50:39.661 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" completed keep alive response. +2017-07-19 18:50:57.601 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 18:50:57.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 18:50:57.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 18:50:59.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:50:59.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:50:59.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:50:59.747 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:50:59.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2145.2352ms +2017-07-19 18:50:59.751 +05:30 [Information] Request finished in 2150.6868ms 200 application/json; charset=utf-8 +2017-07-19 18:50:59.752 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:51:43.347 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" received FIN. +2017-07-19 18:51:43.350 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" disconnecting. +2017-07-19 18:51:43.353 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" sending FIN. +2017-07-19 18:51:43.359 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 18:51:43.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 18:51:43.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 18:51:43.373 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" sent FIN with status "0". +2017-07-19 18:51:43.380 +05:30 [Debug] Connection id ""0HL6EL3A81VKD"" stopped. +2017-07-19 18:51:46.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:51:46.694 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:51:46.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:51:46.696 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:51:46.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3364.3381ms +2017-07-19 18:51:46.735 +05:30 [Information] Request finished in 3383.3335ms 200 application/json; charset=utf-8 +2017-07-19 18:51:46.736 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:51:48.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:51:48.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:51:48.324 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:51:51.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:51:51.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:51:51.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:51:51.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:51:51.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3038.2331ms +2017-07-19 18:51:51.366 +05:30 [Information] Request finished in 3043.7164ms 200 application/json; charset=utf-8 +2017-07-19 18:51:51.367 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:51:51.405 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:51:51.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:51:51.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:51:51.418 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" started. +2017-07-19 18:51:51.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:51:51.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:51:51.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:51:53.553 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:51:53.691 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:51:53.692 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:51:53.693 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:51:53.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2278.3939ms +2017-07-19 18:51:53.706 +05:30 [Information] Request finished in 2286.693ms 200 application/json; charset=utf-8 +2017-07-19 18:51:53.708 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:51:53.769 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:51:53.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:51:53.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:51:54.438 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:51:54.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:51:54.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:51:54.448 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:51:54.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3041.0603ms +2017-07-19 18:51:54.452 +05:30 [Information] Request finished in 3050.7055ms 200 application/json; charset=utf-8 +2017-07-19 18:51:54.453 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:51:56.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:51:56.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:51:56.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:51:56.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:51:56.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3126.8791ms +2017-07-19 18:51:56.901 +05:30 [Information] Request finished in 3132.9723ms 200 application/json; charset=utf-8 +2017-07-19 18:51:56.902 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:51:59.201 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:51:59.202 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:51:59.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:51:59.203 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:51:59.205 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:51:59.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:51:59.734 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" started. +2017-07-19 18:51:59.740 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" started. +2017-07-19 18:51:59.740 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" started. +2017-07-19 18:51:59.748 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:51:59.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:51:59.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:51:59.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:51:59.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:51:59.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:52:01.720 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" started. +2017-07-19 18:52:02.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:52:02.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:52:02.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:52:02.643 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:52:02.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:52:02.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:52:04.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:04.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:04.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:04.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:04.919 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:04.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:04.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:04.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:04.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5750.0251ms +2017-07-19 18:52:04.963 +05:30 [Information] Request finished in 5760.9959ms 200 application/json; charset=utf-8 +2017-07-19 18:52:04.964 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:52:05.001 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:05.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:05.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:05.034 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:05.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5829.6977ms +2017-07-19 18:52:05.042 +05:30 [Information] Request finished in 5840.3003ms 200 application/json; charset=utf-8 +2017-07-19 18:52:05.042 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:52:05.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:05.153 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:05.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:05.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:05.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5473.7692ms +2017-07-19 18:52:05.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:05.267 +05:30 [Information] Request finished in 5524.581ms 200 application/json; charset=utf-8 +2017-07-19 18:52:05.271 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" completed keep alive response. +2017-07-19 18:52:05.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:05.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:05.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:05.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:05.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3252.4442ms +2017-07-19 18:52:05.370 +05:30 [Information] Request finished in 3263.0104ms 200 application/json; charset=utf-8 +2017-07-19 18:52:05.372 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" completed keep alive response. +2017-07-19 18:52:05.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:52:05.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:05.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:05.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:05.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.8253ms +2017-07-19 18:52:05.724 +05:30 [Information] Request finished in 3080.3989ms 200 application/json; charset=utf-8 +2017-07-19 18:52:05.724 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" completed keep alive response. +2017-07-19 18:52:05.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:52:05.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:52:05.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:52:07.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:07.371 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:07.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:07.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:07.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7632.4336ms +2017-07-19 18:52:07.394 +05:30 [Information] Request finished in 7648.3352ms 200 application/json; charset=utf-8 +2017-07-19 18:52:07.394 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" completed keep alive response. +2017-07-19 18:52:08.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:52:08.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:08.925 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:08.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:09.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3244.4894ms +2017-07-19 18:52:09.066 +05:30 [Information] Request finished in 3318.9997ms 200 application/json; charset=utf-8 +2017-07-19 18:52:09.068 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:52:20.412 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:52:20.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:52:20.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:52:23.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:52:23.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:23.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:23.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:23.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3091.9572ms +2017-07-19 18:52:23.522 +05:30 [Information] Request finished in 3108.9173ms 200 application/json; charset=utf-8 +2017-07-19 18:52:23.522 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:52:23.537 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:52:23.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:52:23.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:52:23.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:52:23.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:52:23.543 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:52:25.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:25.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:25.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:25.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:25.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2183.503ms +2017-07-19 18:52:25.730 +05:30 [Information] Request finished in 2193.6726ms 200 application/json; charset=utf-8 +2017-07-19 18:52:25.731 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" completed keep alive response. +2017-07-19 18:52:25.754 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:52:25.754 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:52:25.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:52:26.573 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:52:26.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:26.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:26.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:26.582 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3040.5618ms +2017-07-19 18:52:26.585 +05:30 [Information] Request finished in 3048.9155ms 200 application/json; charset=utf-8 +2017-07-19 18:52:26.586 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" completed keep alive response. +2017-07-19 18:52:28.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:28.845 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:28.846 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:28.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:28.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3092.5558ms +2017-07-19 18:52:28.850 +05:30 [Information] Request finished in 3097.43ms 200 application/json; charset=utf-8 +2017-07-19 18:52:28.851 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" completed keep alive response. +2017-07-19 18:52:30.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:52:30.556 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:52:30.557 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:52:30.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:52:30.558 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:52:30.560 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:52:33.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:33.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:33.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:33.748 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:33.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:33.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:33.750 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:33.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:33.751 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:33.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3190.0508ms +2017-07-19 18:52:33.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:33.761 +05:30 [Information] Request finished in 3222.6224ms 200 application/json; charset=utf-8 +2017-07-19 18:52:33.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3197.9115ms +2017-07-19 18:52:33.763 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" completed keep alive response. +2017-07-19 18:52:33.768 +05:30 [Information] Request finished in 3231.8663ms 200 application/json; charset=utf-8 +2017-07-19 18:52:33.769 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:52:34.116 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:52:34.117 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:52:34.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:52:34.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:52:34.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:52:34.134 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:52:34.274 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:52:34.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:52:34.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:52:34.857 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:52:34.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:52:34.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:52:36.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:36.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:36.406 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:36.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:36.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:36.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2283.7789ms +2017-07-19 18:52:36.414 +05:30 [Information] Request finished in 2363.236ms 200 application/json; charset=utf-8 +2017-07-19 18:52:36.415 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:52:37.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:37.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:52:37.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:37.874 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:37.874 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:37.875 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:37.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3598.7967ms +2017-07-19 18:52:37.882 +05:30 [Information] Request finished in 3764.5386ms 200 application/json; charset=utf-8 +2017-07-19 18:52:37.883 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" completed keep alive response. +2017-07-19 18:52:37.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:52:38.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:38.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:38.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:38.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3147.2907ms +2017-07-19 18:52:38.024 +05:30 [Information] Request finished in 3161.3503ms 200 application/json; charset=utf-8 +2017-07-19 18:52:38.026 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" completed keep alive response. +2017-07-19 18:52:38.041 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:52:38.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:52:38.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:52:38.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:38.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:52:38.363 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:38.365 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:38.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4230.455ms +2017-07-19 18:52:38.381 +05:30 [Information] Request finished in 4311.9719ms 200 application/json; charset=utf-8 +2017-07-19 18:52:38.383 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" completed keep alive response. +2017-07-19 18:52:40.139 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:52:40.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:40.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:40.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:40.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2128.7128ms +2017-07-19 18:52:40.187 +05:30 [Information] Request finished in 2145.0455ms 200 application/json; charset=utf-8 +2017-07-19 18:52:40.187 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" completed keep alive response. +2017-07-19 18:52:56.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:52:56.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:52:56.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:52:59.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:52:59.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:52:59.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:52:59.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:52:59.128 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.3852ms +2017-07-19 18:52:59.131 +05:30 [Information] Request finished in 3091.6388ms 200 application/json; charset=utf-8 +2017-07-19 18:52:59.132 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:52:59.150 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:52:59.150 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:52:59.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:52:59.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:52:59.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:52:59.156 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:53:02.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:53:02.230 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:02.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:02.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:02.257 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:02.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3099.9743ms +2017-07-19 18:53:02.291 +05:30 [Information] Request finished in 3149.9743ms 200 application/json; charset=utf-8 +2017-07-19 18:53:02.291 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" completed keep alive response. +2017-07-19 18:53:02.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:02.329 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:02.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:02.332 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3173.258ms +2017-07-19 18:53:02.335 +05:30 [Information] Request finished in 3190.365ms 200 application/json; charset=utf-8 +2017-07-19 18:53:02.335 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:53:02.349 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:53:02.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:53:02.350 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:53:05.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:05.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:05.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:05.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:05.464 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3110.5808ms +2017-07-19 18:53:05.466 +05:30 [Information] Request finished in 3118.0599ms 200 application/json; charset=utf-8 +2017-07-19 18:53:05.467 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" completed keep alive response. +2017-07-19 18:53:07.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:53:07.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:53:07.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:53:07.008 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:53:07.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:53:07.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:53:07.822 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:53:07.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:53:07.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:53:07.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:53:07.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:53:07.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:53:09.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:53:09.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:53:09.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:53:10.678 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:53:10.679 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:53:10.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:53:12.753 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:12.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:12.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:12.789 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:53:12.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:12.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:12.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:12.820 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:53:12.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:12.822 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5809.6945ms +2017-07-19 18:53:12.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:12.827 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5812.8916ms +2017-07-19 18:53:12.836 +05:30 [Information] Request finished in 5825.7176ms 200 application/json; charset=utf-8 +2017-07-19 18:53:12.838 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" completed keep alive response. +2017-07-19 18:53:12.871 +05:30 [Information] Request finished in 5831.4189ms 200 application/json; charset=utf-8 +2017-07-19 18:53:12.873 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" completed keep alive response. +2017-07-19 18:53:13.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:13.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:13.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:53:13.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:13.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:13.879 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:53:13.930 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:13.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:13.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:53:13.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:13.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3249.3676ms +2017-07-19 18:53:13.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:13.965 +05:30 [Information] Request finished in 3283.6078ms 200 application/json; charset=utf-8 +2017-07-19 18:53:13.965 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" completed keep alive response. +2017-07-19 18:53:14.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6128.5552ms +2017-07-19 18:53:14.024 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:53:14.025 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:53:14.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:53:14.040 +05:30 [Information] Request finished in 6208.5863ms 200 application/json; charset=utf-8 +2017-07-19 18:53:14.040 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" completed keep alive response. +2017-07-19 18:53:14.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:14.161 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:53:14.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:14.162 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:14.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4985.031ms +2017-07-19 18:53:14.173 +05:30 [Information] Request finished in 4998.2033ms 200 application/json; charset=utf-8 +2017-07-19 18:53:14.174 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" completed keep alive response. +2017-07-19 18:53:14.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:14.578 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:53:14.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:14.582 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:14.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6750.8412ms +2017-07-19 18:53:14.604 +05:30 [Information] Request finished in 6785.3995ms 200 application/json; charset=utf-8 +2017-07-19 18:53:14.605 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" completed keep alive response. +2017-07-19 18:53:17.151 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:53:17.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:53:17.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:53:17.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:53:17.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3151.4611ms +2017-07-19 18:53:17.194 +05:30 [Information] Request finished in 3187.973ms 200 application/json; charset=utf-8 +2017-07-19 18:53:17.194 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" completed keep alive response. +2017-07-19 18:55:16.736 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" received FIN. +2017-07-19 18:55:16.736 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" received FIN. +2017-07-19 18:55:16.738 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" received FIN. +2017-07-19 18:55:16.738 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" disconnecting. +2017-07-19 18:55:16.738 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" received FIN. +2017-07-19 18:55:16.740 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" received FIN. +2017-07-19 18:55:16.744 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" disconnecting. +2017-07-19 18:55:16.745 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" disconnecting. +2017-07-19 18:55:16.745 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" sending FIN. +2017-07-19 18:55:16.751 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" received FIN. +2017-07-19 18:55:16.751 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" disconnecting. +2017-07-19 18:55:16.751 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" sending FIN. +2017-07-19 18:55:16.753 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" sending FIN. +2017-07-19 18:55:16.751 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" disconnecting. +2017-07-19 18:55:16.753 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" disconnecting. +2017-07-19 18:55:16.753 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" sent FIN with status "0". +2017-07-19 18:55:16.752 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" started. +2017-07-19 18:55:16.757 +05:30 [Debug] Connection id ""0HL6EL3A81VKE"" stopped. +2017-07-19 18:55:16.758 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" sending FIN. +2017-07-19 18:55:16.758 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" sent FIN with status "0". +2017-07-19 18:55:16.764 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" sending FIN. +2017-07-19 18:55:16.765 +05:30 [Debug] Connection id ""0HL6EL3A81VKG"" stopped. +2017-07-19 18:55:16.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:55:16.766 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" sending FIN. +2017-07-19 18:55:16.767 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" sent FIN with status "0". +2017-07-19 18:55:16.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:55:16.769 +05:30 [Debug] Connection id ""0HL6EL3A81VKI"" stopped. +2017-07-19 18:55:16.769 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" sent FIN with status "0". +2017-07-19 18:55:16.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:55:16.771 +05:30 [Debug] Connection id ""0HL6EL3A81VKF"" stopped. +2017-07-19 18:55:16.774 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" sent FIN with status "0". +2017-07-19 18:55:16.774 +05:30 [Debug] Connection id ""0HL6EL3A81VKC"" stopped. +2017-07-19 18:55:16.775 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" sent FIN with status "0". +2017-07-19 18:55:16.775 +05:30 [Debug] Connection id ""0HL6EL3A81VKH"" stopped. +2017-07-19 18:55:17.456 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" started. +2017-07-19 18:55:17.469 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:55:17.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:55:17.472 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:55:19.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:19.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:19.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:19.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:19.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2179.0648ms +2017-07-19 18:55:19.657 +05:30 [Information] Request finished in 2197.8649ms 200 application/json; charset=utf-8 +2017-07-19 18:55:19.658 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:55:20.034 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:55:20.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:20.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:55:20.040 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:55:20.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:20.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:20.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:20.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3279.1967ms +2017-07-19 18:55:20.115 +05:30 [Information] Request finished in 3355.3822ms 200 application/json; charset=utf-8 +2017-07-19 18:55:20.116 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" completed keep alive response. +2017-07-19 18:55:20.192 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 18:55:20.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 18:55:20.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 18:55:23.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:23.140 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:23.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:23.143 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:23.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3102.5387ms +2017-07-19 18:55:23.147 +05:30 [Information] Request finished in 3135.8595ms 200 application/json; charset=utf-8 +2017-07-19 18:55:23.148 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:55:23.160 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" started. +2017-07-19 18:55:23.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:55:23.170 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:55:23.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:55:23.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:55:23.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:55:23.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:55:23.289 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["57", "8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:23.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 18:55:23.480 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 18:55:23.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3284.4563ms +2017-07-19 18:55:23.485 +05:30 [Information] Request finished in 3295.097ms 200 +2017-07-19 18:55:23.486 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" completed keep alive response. +2017-07-19 18:55:25.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:25.461 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:25.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:25.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:25.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2291.4242ms +2017-07-19 18:55:25.474 +05:30 [Information] Request finished in 2309.5376ms 200 application/json; charset=utf-8 +2017-07-19 18:55:25.475 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:55:26.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:26.294 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:26.294 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:26.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:26.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3132.1026ms +2017-07-19 18:55:26.308 +05:30 [Information] Request finished in 3144.2079ms 200 application/json; charset=utf-8 +2017-07-19 18:55:26.308 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:55:26.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:55:26.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:55:26.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:55:29.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:29.429 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:29.430 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:29.431 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:29.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3117.4305ms +2017-07-19 18:55:29.434 +05:30 [Information] Request finished in 3121.9449ms 200 application/json; charset=utf-8 +2017-07-19 18:55:29.435 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" completed keep alive response. +2017-07-19 18:55:30.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:55:30.792 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:55:30.792 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:55:30.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:55:30.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:55:30.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:55:31.438 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" started. +2017-07-19 18:55:31.438 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" started. +2017-07-19 18:55:31.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:55:31.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:55:31.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:55:31.463 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:55:31.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:55:31.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:55:31.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:55:31.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:55:31.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:55:33.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:33.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:33.986 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:55:33.987 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:33.989 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:33.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3194.2424ms +2017-07-19 18:55:33.995 +05:30 [Information] Request finished in 3205.6455ms 200 application/json; charset=utf-8 +2017-07-19 18:55:33.996 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:55:34.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:34.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:34.124 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:55:34.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:34.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:34.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3329.4451ms +2017-07-19 18:55:34.130 +05:30 [Information] Request finished in 3340.4675ms 200 application/json; charset=utf-8 +2017-07-19 18:55:34.130 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:55:34.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:34.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:34.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:55:34.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:34.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:55:34.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:34.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:34.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3303.0243ms +2017-07-19 18:55:34.895 +05:30 [Information] Request finished in 3432.2851ms 200 application/json; charset=utf-8 +2017-07-19 18:55:34.896 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" completed keep alive response. +2017-07-19 18:55:34.997 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:34.998 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:55:34.998 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:34.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:35.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3531.4294ms +2017-07-19 18:55:35.004 +05:30 [Information] Request finished in 3562.9717ms 200 application/json; charset=utf-8 +2017-07-19 18:55:35.005 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" completed keep alive response. +2017-07-19 18:55:36.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:36.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:55:36.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:36.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:36.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4627.4849ms +2017-07-19 18:55:36.099 +05:30 [Information] Request finished in 4658.4671ms 200 application/json; charset=utf-8 +2017-07-19 18:55:36.100 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" completed keep alive response. +2017-07-19 18:55:46.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:55:46.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:55:46.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:55:49.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ce8ece2485cd"]) - ModelState is Valid +2017-07-19 18:55:49.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:55:49.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:55:49.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:55:49.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3036.4893ms +2017-07-19 18:55:49.404 +05:30 [Information] Request finished in 3049.4561ms 200 application/json; charset=utf-8 +2017-07-19 18:55:49.405 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:56:32.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 18:56:32.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 18:56:32.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 18:56:35.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 18:56:36.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:36.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:36.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:36.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3137.5214ms +2017-07-19 18:56:36.041 +05:30 [Information] Request finished in 3143.6034ms 200 application/json; charset=utf-8 +2017-07-19 18:56:36.042 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:56:36.151 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" received FIN. +2017-07-19 18:56:36.152 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" disconnecting. +2017-07-19 18:56:36.152 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" received FIN. +2017-07-19 18:56:36.152 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" received FIN. +2017-07-19 18:56:36.153 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" sending FIN. +2017-07-19 18:56:36.155 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" sent FIN with status "0". +2017-07-19 18:56:36.155 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" disconnecting. +2017-07-19 18:56:36.156 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" sending FIN. +2017-07-19 18:56:36.155 +05:30 [Debug] Connection id ""0HL6EL3A81VKJ"" stopped. +2017-07-19 18:56:36.156 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" sent FIN with status "0". +2017-07-19 18:56:36.153 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" disconnecting. +2017-07-19 18:56:36.157 +05:30 [Debug] Connection id ""0HL6EL3A81VKN"" stopped. +2017-07-19 18:56:36.158 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" sending FIN. +2017-07-19 18:56:36.159 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:56:36.160 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" sent FIN with status "0". +2017-07-19 18:56:36.161 +05:30 [Debug] Connection id ""0HL6EL3A81VKM"" stopped. +2017-07-19 18:56:36.160 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:56:36.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:56:39.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:39.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:39.295 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:39.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:39.300 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3134.9894ms +2017-07-19 18:56:39.303 +05:30 [Information] Request finished in 3149.3996ms 200 application/json; charset=utf-8 +2017-07-19 18:56:39.304 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:56:39.320 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:56:39.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:56:39.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:56:42.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:42.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:42.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:42.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:42.420 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3095.0242ms +2017-07-19 18:56:42.423 +05:30 [Information] Request finished in 3102.5019ms 200 application/json; charset=utf-8 +2017-07-19 18:56:42.423 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:56:44.031 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:56:44.033 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:56:44.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:56:44.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:56:44.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:56:44.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:56:44.684 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" started. +2017-07-19 18:56:44.689 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" started. +2017-07-19 18:56:44.690 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" started. +2017-07-19 18:56:44.696 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:56:44.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:56:44.697 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:56:44.708 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:56:44.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:56:44.715 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:56:44.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:56:44.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:56:44.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:56:45.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:45.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:45.960 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:56:45.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:46.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:46.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2001.645ms +2017-07-19 18:56:46.159 +05:30 [Information] Request finished in 2099.667ms 200 application/json; charset=utf-8 +2017-07-19 18:56:46.160 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:56:46.211 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:56:46.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:56:46.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:56:47.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:47.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:47.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:47.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:47.600 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:56:47.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:47.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:47.671 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:47.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:56:47.673 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:47.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2921.0064ms +2017-07-19 18:56:47.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:56:47.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:47.795 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:47.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:56:47.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:47.801 +05:30 [Information] Request finished in 3056.7491ms 200 application/json; charset=utf-8 +2017-07-19 18:56:47.804 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" completed keep alive response. +2017-07-19 18:56:47.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3759.6809ms +2017-07-19 18:56:47.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:47.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3191.869ms +2017-07-19 18:56:47.901 +05:30 [Information] Request finished in 3886.7537ms 200 application/json; charset=utf-8 +2017-07-19 18:56:47.904 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:56:47.904 +05:30 [Information] Request finished in 3210.9703ms 200 application/json; charset=utf-8 +2017-07-19 18:56:47.917 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" completed keep alive response. +2017-07-19 18:56:47.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:47.936 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:47.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:47.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1748.3357ms +2017-07-19 18:56:47.998 +05:30 [Information] Request finished in 1792.6332ms 200 application/json; charset=utf-8 +2017-07-19 18:56:47.998 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:56:48.184 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:56:49.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:56:49.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:56:49.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:56:49.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:56:49.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5000.6915ms +2017-07-19 18:56:49.720 +05:30 [Information] Request finished in 5028.0731ms 200 application/json; charset=utf-8 +2017-07-19 18:56:49.721 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" completed keep alive response. +2017-07-19 18:57:33.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:57:33.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:57:33.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:57:36.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:57:36.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:36.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:36.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:36.107 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3066.0536ms +2017-07-19 18:57:36.111 +05:30 [Information] Request finished in 3074.8191ms 200 application/json; charset=utf-8 +2017-07-19 18:57:36.111 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" completed keep alive response. +2017-07-19 18:57:36.143 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 18:57:36.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 18:57:36.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 18:57:36.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 18:57:36.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 18:57:36.150 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 18:57:39.230 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:39.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:57:39.281 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:39.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:39.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:39.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3134.4359ms +2017-07-19 18:57:39.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:39.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:39.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:39.344 +05:30 [Information] Request finished in 3186.1115ms 200 application/json; charset=utf-8 +2017-07-19 18:57:39.345 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:57:39.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3192.2517ms +2017-07-19 18:57:39.364 +05:30 [Information] Request finished in 3213.6989ms 200 application/json; charset=utf-8 +2017-07-19 18:57:39.364 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" completed keep alive response. +2017-07-19 18:57:39.390 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:57:39.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:57:39.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:57:42.430 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:42.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:42.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:42.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:42.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3098.02ms +2017-07-19 18:57:42.493 +05:30 [Information] Request finished in 3105.0461ms 200 application/json; charset=utf-8 +2017-07-19 18:57:42.493 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:57:44.183 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 18:57:44.183 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 18:57:44.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 18:57:44.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 18:57:44.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 18:57:44.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 18:57:45.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 18:57:45.170 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 18:57:45.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 18:57:45.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 18:57:45.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 18:57:45.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 18:57:46.195 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" started. +2017-07-19 18:57:48.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 18:57:48.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 18:57:48.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 18:57:49.181 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:57:49.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:57:49.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:57:50.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:51.059 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:51.061 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:57:51.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:51.066 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:51.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 2854.7584ms +2017-07-19 18:57:51.071 +05:30 [Information] Request finished in 2880.4797ms 200 application/json; charset=utf-8 +2017-07-19 18:57:51.072 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:57:51.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:51.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:51.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:51.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 18:57:51.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:51.394 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:57:51.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:51.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:51.410 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:57:51.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:51.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:51.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:51.475 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:57:51.475 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:51.482 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:51.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:51.591 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7296.0756ms +2017-07-19 18:57:51.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6271.7084ms +2017-07-19 18:57:51.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7339.0796ms +2017-07-19 18:57:51.649 +05:30 [Information] Request finished in 7443.5726ms 200 application/json; charset=utf-8 +2017-07-19 18:57:51.651 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" completed keep alive response. +2017-07-19 18:57:51.710 +05:30 [Information] Request finished in 6458.4456ms 200 application/json; charset=utf-8 +2017-07-19 18:57:51.710 +05:30 [Information] Request finished in 7503.1785ms 200 application/json; charset=utf-8 +2017-07-19 18:57:51.711 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" completed keep alive response. +2017-07-19 18:57:51.754 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" completed keep alive response. +2017-07-19 18:57:51.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:51.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 18:57:51.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:51.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:51.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6643.268ms +2017-07-19 18:57:51.821 +05:30 [Information] Request finished in 6651.4154ms 200 application/json; charset=utf-8 +2017-07-19 18:57:51.822 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" completed keep alive response. +2017-07-19 18:57:52.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:57:52.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:52.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:52.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:52.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3255.4572ms +2017-07-19 18:57:52.448 +05:30 [Information] Request finished in 3266.6739ms 200 application/json; charset=utf-8 +2017-07-19 18:57:52.449 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" completed keep alive response. +2017-07-19 18:57:52.459 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 18:57:52.460 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 18:57:52.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 18:57:55.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 18:57:55.547 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:57:55.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:57:55.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:57:55.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3087.9908ms +2017-07-19 18:57:55.558 +05:30 [Information] Request finished in 3100.1014ms 200 application/json; charset=utf-8 +2017-07-19 18:57:55.558 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" completed keep alive response. +2017-07-19 18:59:48.103 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" received FIN. +2017-07-19 18:59:48.104 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" received FIN. +2017-07-19 18:59:48.112 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" received FIN. +2017-07-19 18:59:48.117 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" disconnecting. +2017-07-19 18:59:48.125 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" received FIN. +2017-07-19 18:59:48.126 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" received FIN. +2017-07-19 18:59:48.115 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" received FIN. +2017-07-19 18:59:48.134 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" disconnecting. +2017-07-19 18:59:48.135 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" disconnecting. +2017-07-19 18:59:48.139 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" disconnecting. +2017-07-19 18:59:48.140 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" disconnecting. +2017-07-19 18:59:48.139 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" sending FIN. +2017-07-19 18:59:48.138 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" sending FIN. +2017-07-19 18:59:48.142 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" sending FIN. +2017-07-19 18:59:48.144 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" sending FIN. +2017-07-19 18:59:48.144 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" sent FIN with status "0". +2017-07-19 18:59:48.135 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" disconnecting. +2017-07-19 18:59:48.161 +05:30 [Debug] Connection id ""0HL6EL3A81VKO"" stopped. +2017-07-19 18:59:48.162 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" sent FIN with status "0". +2017-07-19 18:59:48.163 +05:30 [Debug] Connection id ""0HL6EL3A81VKQ"" stopped. +2017-07-19 18:59:48.166 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" sending FIN. +2017-07-19 18:59:48.159 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" sending FIN. +2017-07-19 18:59:48.166 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" sent FIN with status "0". +2017-07-19 18:59:48.167 +05:30 [Debug] Connection id ""0HL6EL3A81VKK"" stopped. +2017-07-19 18:59:48.167 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" sent FIN with status "0". +2017-07-19 18:59:48.168 +05:30 [Debug] Connection id ""0HL6EL3A81VKL"" stopped. +2017-07-19 18:59:48.169 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" sent FIN with status "0". +2017-07-19 18:59:48.169 +05:30 [Debug] Connection id ""0HL6EL3A81VKR"" stopped. +2017-07-19 18:59:48.169 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" sent FIN with status "0". +2017-07-19 18:59:48.170 +05:30 [Debug] Connection id ""0HL6EL3A81VKP"" stopped. +2017-07-19 18:59:48.541 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" started. +2017-07-19 18:59:48.546 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:59:48.548 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:59:48.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:59:48.900 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" started. +2017-07-19 18:59:48.902 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:59:48.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:59:48.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:59:51.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:59:51.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:59:51.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:59:51.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:59:51.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3138.7702ms +2017-07-19 18:59:51.693 +05:30 [Information] Request finished in 3149.4069ms 200 application/json; charset=utf-8 +2017-07-19 18:59:51.693 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" completed keep alive response. +2017-07-19 18:59:51.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 18:59:51.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 18:59:51.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 18:59:51.933 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:59:51.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:59:51.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:59:51.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:59:51.940 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3035.7567ms +2017-07-19 18:59:51.942 +05:30 [Information] Request finished in 3040.2353ms 200 application/json; charset=utf-8 +2017-07-19 18:59:51.942 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" completed keep alive response. +2017-07-19 18:59:52.034 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 18:59:52.036 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 18:59:52.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 18:59:54.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["63", "8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:59:54.817 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 18:59:54.819 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 18:59:54.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3106.2141ms +2017-07-19 18:59:54.822 +05:30 [Information] Request finished in 3113.8911ms 200 +2017-07-19 18:59:54.826 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" completed keep alive response. +2017-07-19 18:59:55.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 18:59:55.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 18:59:55.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 18:59:55.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 18:59:55.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.4565ms +2017-07-19 18:59:55.122 +05:30 [Information] Request finished in 3087.2542ms 200 application/json; charset=utf-8 +2017-07-19 18:59:55.122 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" completed keep alive response. +2017-07-19 19:01:48.108 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" received FIN. +2017-07-19 19:01:48.108 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" received FIN. +2017-07-19 19:01:48.109 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" disconnecting. +2017-07-19 19:01:48.114 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" sending FIN. +2017-07-19 19:01:48.115 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" sent FIN with status "0". +2017-07-19 19:01:48.115 +05:30 [Debug] Connection id ""0HL6EL3A81VKS"" stopped. +2017-07-19 19:01:48.128 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" disconnecting. +2017-07-19 19:01:48.129 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" sending FIN. +2017-07-19 19:01:48.129 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" sent FIN with status "0". +2017-07-19 19:01:48.130 +05:30 [Debug] Connection id ""0HL6EL3A81VKT"" stopped. +2017-07-19 19:07:12.065 +05:30 [Debug] Hosting starting +2017-07-19 19:07:12.480 +05:30 [Debug] Hosting started +2017-07-19 19:07:12.660 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" started. +2017-07-19 19:07:12.660 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" started. +2017-07-19 19:07:12.850 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 19:07:12.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 19:07:13.002 +05:30 [Information] Request finished in 143.5944ms 200 +2017-07-19 19:07:13.155 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:07:14.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 19:07:14.428 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"85a6a692-4288-487e-ae6a-0c36e97d67c7"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 19:07:14.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 19:07:14.983 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 19:07:14.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 19:07:15.048 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:07:15.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:07:15.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:07:15.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:07:15.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:07:15.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:07:15.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 596.802ms +2017-07-19 19:07:15.669 +05:30 [Information] Request finished in 2882.0407ms 200 application/json; charset=utf-8 +2017-07-19 19:07:15.672 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:07:19.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 19:07:25.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:07:25.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:07:25.252 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:07:25.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9911.3122ms +2017-07-19 19:07:25.311 +05:30 [Information] Request finished in 9970.1202ms 200 application/json; charset=utf-8 +2017-07-19 19:07:25.312 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:07:50.870 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:07:50.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:07:50.880 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:07:53.929 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cea9cea7d809"]) - ModelState is Valid +2017-07-19 19:07:53.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:07:53.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:07:53.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:07:53.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.4069ms +2017-07-19 19:07:53.973 +05:30 [Information] Request finished in 3106.426ms 200 application/json; charset=utf-8 +2017-07-19 19:07:53.973 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:08:05.163 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 19:08:05.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 19:08:05.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 19:08:08.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 19:08:08.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:08.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:08.709 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:08.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3679.2015ms +2017-07-19 19:08:08.850 +05:30 [Information] Request finished in 3687.3076ms 200 application/json; charset=utf-8 +2017-07-19 19:08:08.851 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:08:09.241 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:08:09.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:08:09.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:08:11.353 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:11.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:11.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:11.499 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:11.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2264.6395ms +2017-07-19 19:08:11.513 +05:30 [Information] Request finished in 2271.9633ms 200 application/json; charset=utf-8 +2017-07-19 19:08:11.514 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:08:11.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:08:11.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:08:11.570 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:08:14.621 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:14.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:14.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:14.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:14.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3145.8264ms +2017-07-19 19:08:14.724 +05:30 [Information] Request finished in 3154.8304ms 200 application/json; charset=utf-8 +2017-07-19 19:08:14.724 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:08:17.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:08:17.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:08:17.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:08:17.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:08:17.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:08:17.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:08:17.888 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" started. +2017-07-19 19:08:17.888 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" started. +2017-07-19 19:08:17.898 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" started. +2017-07-19 19:08:17.905 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:08:17.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:08:17.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:08:17.944 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:08:17.945 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:08:17.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:08:17.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:08:17.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:08:17.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:08:18.944 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" started. +2017-07-19 19:08:20.343 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:08:20.376 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:08:20.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:08:22.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:22.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:22.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:22.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:22.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:22.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:22.540 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5357.5033ms +2017-07-19 19:08:22.546 +05:30 [Information] Request finished in 5390.4447ms 200 application/json; charset=utf-8 +2017-07-19 19:08:22.550 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:08:22.574 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:22.595 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:22.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:22.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:22.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5421.792ms +2017-07-19 19:08:22.621 +05:30 [Information] Request finished in 5462.9557ms 200 application/json; charset=utf-8 +2017-07-19 19:08:22.622 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:08:23.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:23.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:23.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:23.364 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:23.366 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:23.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:23.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:23.417 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 5461.5791ms +2017-07-19 19:08:23.531 +05:30 [Information] Request finished in 5602.9684ms 200 application/json; charset=utf-8 +2017-07-19 19:08:23.532 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" completed keep alive response. +2017-07-19 19:08:23.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:08:23.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:23.781 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:23.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:23.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:23.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:23.789 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:23.790 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:23.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3417.0803ms +2017-07-19 19:08:23.803 +05:30 [Information] Request finished in 3463.392ms 200 application/json; charset=utf-8 +2017-07-19 19:08:23.804 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" completed keep alive response. +2017-07-19 19:08:23.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5909.5093ms +2017-07-19 19:08:23.920 +05:30 [Information] Request finished in 6010.5145ms 200 application/json; charset=utf-8 +2017-07-19 19:08:23.920 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" completed keep alive response. +2017-07-19 19:08:25.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:25.572 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:25.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:25.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:25.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7612.7596ms +2017-07-19 19:08:25.612 +05:30 [Information] Request finished in 7664.306ms 200 application/json; charset=utf-8 +2017-07-19 19:08:25.613 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" completed keep alive response. +2017-07-19 19:08:31.436 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:08:31.437 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:08:31.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:08:34.489 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:08:34.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:34.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:34.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:34.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.5347ms +2017-07-19 19:08:34.499 +05:30 [Information] Request finished in 3072.2938ms 200 application/json; charset=utf-8 +2017-07-19 19:08:34.500 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:08:34.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 19:08:34.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 19:08:34.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:08:34.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 19:08:34.517 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:08:34.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:08:37.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:08:37.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:37.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:37.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:37.632 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:37.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3114.9701ms +2017-07-19 19:08:37.639 +05:30 [Information] Request finished in 3131.2825ms 200 application/json; charset=utf-8 +2017-07-19 19:08:37.640 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:08:37.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:37.681 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:37.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:37.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3163.1314ms +2017-07-19 19:08:37.686 +05:30 [Information] Request finished in 3170.578ms 200 application/json; charset=utf-8 +2017-07-19 19:08:37.687 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" completed keep alive response. +2017-07-19 19:08:37.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:08:37.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:08:37.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:08:40.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:40.800 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:40.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:40.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:40.803 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3105.7354ms +2017-07-19 19:08:40.806 +05:30 [Information] Request finished in 3111.4976ms 200 application/json; charset=utf-8 +2017-07-19 19:08:40.807 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" completed keep alive response. +2017-07-19 19:08:42.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:08:42.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:08:42.808 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:08:42.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:08:42.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:08:42.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:08:43.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:08:43.656 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:08:43.661 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:08:43.656 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:08:43.662 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:08:43.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:08:43.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:08:43.663 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:08:43.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:08:45.252 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:08:45.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:08:45.255 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:08:47.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:47.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:47.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:47.890 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:47.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:08:47.940 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:47.941 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:47.942 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:47.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5187.7694ms +2017-07-19 19:08:48.163 +05:30 [Information] Request finished in 5352.9141ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:48.167 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" completed keep alive response. +2017-07-19 19:08:48.171 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:48.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:48.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:48.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:48.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:48.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4538.9051ms +2017-07-19 19:08:48.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.282 +05:30 [Information] Request finished in 4613.9819ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.299 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:08:48.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5422.4108ms +2017-07-19 19:08:48.381 +05:30 [Information] Request finished in 5601.999ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:48.410 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:48.409 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" completed keep alive response. +2017-07-19 19:08:48.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:48.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.453 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4776.0708ms +2017-07-19 19:08:48.457 +05:30 [Information] Request finished in 4813.5315ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.459 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:08:48.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:48.595 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:08:48.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:48.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4919.8576ms +2017-07-19 19:08:48.605 +05:30 [Information] Request finished in 4956.0663ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.606 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" completed keep alive response. +2017-07-19 19:08:48.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:08:48.814 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:48.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:48.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:48.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3561.1585ms +2017-07-19 19:08:48.821 +05:30 [Information] Request finished in 3594.5763ms 200 application/json; charset=utf-8 +2017-07-19 19:08:48.821 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" completed keep alive response. +2017-07-19 19:08:48.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:08:48.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:08:48.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:08:52.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:08:53.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:08:53.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:08:53.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:08:53.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4387.5019ms +2017-07-19 19:08:53.390 +05:30 [Information] Request finished in 4419.4815ms 200 application/json; charset=utf-8 +2017-07-19 19:08:53.392 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" completed keep alive response. +2017-07-19 19:08:58.483 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:08:58.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:08:58.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:08:59.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:08:59.605 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:08:59.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:09:01.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:09:01.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:09:01.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:09:01.982 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:09:01.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3497.0062ms +2017-07-19 19:09:01.992 +05:30 [Information] Request finished in 3536.4903ms 200 application/json; charset=utf-8 +2017-07-19 19:09:01.993 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" completed keep alive response. +2017-07-19 19:09:02.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 19:09:02.026 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 19:09:02.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 19:09:02.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:09:02.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:09:02.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:09:02.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:09:02.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3231.3889ms +2017-07-19 19:09:02.855 +05:30 [Information] Request finished in 3300.7466ms 200 application/json; charset=utf-8 +2017-07-19 19:09:02.855 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" completed keep alive response. +2017-07-19 19:09:03.038 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:09:03.044 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:09:03.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:09:05.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["64", "8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:09:05.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 19:09:05.478 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 19:09:05.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3450.1707ms +2017-07-19 19:09:05.481 +05:30 [Information] Request finished in 3458.781ms 200 +2017-07-19 19:09:05.481 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" completed keep alive response. +2017-07-19 19:09:06.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:09:06.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:09:06.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:09:06.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:09:06.135 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3086.2729ms +2017-07-19 19:09:06.139 +05:30 [Information] Request finished in 3104.7439ms 200 application/json; charset=utf-8 +2017-07-19 19:09:06.140 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" completed keep alive response. +2017-07-19 19:10:44.789 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" received FIN. +2017-07-19 19:10:44.789 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" received FIN. +2017-07-19 19:10:44.790 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" disconnecting. +2017-07-19 19:10:44.791 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" disconnecting. +2017-07-19 19:10:44.790 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" received FIN. +2017-07-19 19:10:44.796 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" disconnecting. +2017-07-19 19:10:44.796 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" received FIN. +2017-07-19 19:10:44.791 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" received FIN. +2017-07-19 19:10:44.797 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" disconnecting. +2017-07-19 19:10:44.797 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" sending FIN. +2017-07-19 19:10:44.797 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" received FIN. +2017-07-19 19:10:44.797 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" disconnecting. +2017-07-19 19:10:44.801 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" disconnecting. +2017-07-19 19:10:44.800 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" sending FIN. +2017-07-19 19:10:44.802 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" sending FIN. +2017-07-19 19:10:44.803 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" sending FIN. +2017-07-19 19:10:44.801 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" sending FIN. +2017-07-19 19:10:44.804 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" sending FIN. +2017-07-19 19:10:44.803 +05:30 [Debug] Connection id ""0HL6ELD1HF5DF"" started. +2017-07-19 19:10:44.809 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" sent FIN with status "0". +2017-07-19 19:10:44.809 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" sent FIN with status "0". +2017-07-19 19:10:44.812 +05:30 [Debug] Connection id ""0HL6ELD1HF5D9"" stopped. +2017-07-19 19:10:44.812 +05:30 [Debug] Connection id ""0HL6ELD1HF5DB"" stopped. +2017-07-19 19:10:44.814 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" sent FIN with status "0". +2017-07-19 19:10:44.814 +05:30 [Debug] Connection id ""0HL6ELD1HF5DA"" stopped. +2017-07-19 19:10:44.815 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" sent FIN with status "0". +2017-07-19 19:10:44.815 +05:30 [Debug] Connection id ""0HL6ELD1HF5DD"" stopped. +2017-07-19 19:10:44.813 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" sent FIN with status "0". +2017-07-19 19:10:44.817 +05:30 [Debug] Connection id ""0HL6ELD1HF5DC"" stopped. +2017-07-19 19:10:44.817 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" sent FIN with status "0". +2017-07-19 19:10:44.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetPlans +2017-07-19 19:10:44.819 +05:30 [Debug] Connection id ""0HL6ELD1HF5DE"" stopped. +2017-07-19 19:10:44.820 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetPlans"'. +2017-07-19 19:10:44.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetPlans (Api.Socioboard)" +2017-07-19 19:10:46.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetPlans (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 19:10:46.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetPlans (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:10:46.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:10:46.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:10:47.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetPlans (Api.Socioboard)" in 2176.745ms +2017-07-19 19:10:47.003 +05:30 [Information] Request finished in 2187.2331ms 200 application/json; charset=utf-8 +2017-07-19 19:10:47.004 +05:30 [Debug] Connection id ""0HL6ELD1HF5DF"" completed keep alive response. +2017-07-19 19:10:54.874 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:10:54.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:10:54.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:10:57.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:10:57.920 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:10:57.921 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:10:57.922 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:10:57.924 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.4485ms +2017-07-19 19:10:57.927 +05:30 [Information] Request finished in 3053.0087ms 200 application/json; charset=utf-8 +2017-07-19 19:10:57.927 +05:30 [Debug] Connection id ""0HL6ELD1HF5DF"" completed keep alive response. +2017-07-19 19:17:47.700 +05:30 [Debug] Hosting starting +2017-07-19 19:17:47.977 +05:30 [Debug] Hosting started +2017-07-19 19:17:48.118 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" started. +2017-07-19 19:17:48.118 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" started. +2017-07-19 19:17:48.615 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 19:17:48.615 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 19:17:48.776 +05:30 [Information] Request finished in 331.2593ms 200 +2017-07-19 19:17:48.858 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" completed keep alive response. +2017-07-19 19:17:49.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 19:17:49.794 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"34789a1f-5eed-4565-b740-63371870413d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 19:17:49.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 19:17:50.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 19:17:50.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 19:17:50.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:17:50.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:17:50.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:17:50.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 579.7897ms +2017-07-19 19:17:50.673 +05:30 [Information] Request finished in 2328.2135ms 200 application/json; charset=utf-8 +2017-07-19 19:17:50.677 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" completed keep alive response. +2017-07-19 19:17:51.369 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:17:51.387 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:17:51.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:17:54.958 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceab6d66e480"]) - ModelState is Valid +2017-07-19 19:17:59.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:17:59.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:17:59.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:17:59.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7886.224ms +2017-07-19 19:17:59.330 +05:30 [Information] Request finished in 7962.1992ms 200 application/json; charset=utf-8 +2017-07-19 19:17:59.331 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" completed keep alive response. +2017-07-19 19:18:50.383 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 19:18:50.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 19:18:50.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 19:18:53.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 19:18:53.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:18:53.941 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:18:53.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:18:54.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3706.3844ms +2017-07-19 19:18:54.097 +05:30 [Information] Request finished in 3715.097ms 200 application/json; charset=utf-8 +2017-07-19 19:18:54.097 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" completed keep alive response. +2017-07-19 19:18:54.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:18:54.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:18:54.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:18:56.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:18:56.692 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:18:56.695 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:18:56.696 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:18:56.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2278.3465ms +2017-07-19 19:18:56.718 +05:30 [Information] Request finished in 2285.1045ms 200 application/json; charset=utf-8 +2017-07-19 19:18:56.718 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" completed keep alive response. +2017-07-19 19:18:56.780 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:18:56.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:18:56.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:18:59.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:18:59.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:18:59.919 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:18:59.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:18:59.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3145.0243ms +2017-07-19 19:18:59.934 +05:30 [Information] Request finished in 3153.8875ms 200 application/json; charset=utf-8 +2017-07-19 19:18:59.936 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" completed keep alive response. +2017-07-19 19:19:02.277 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:19:02.278 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:19:02.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:19:02.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:19:02.281 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:19:02.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:19:02.804 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" started. +2017-07-19 19:19:02.804 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" started. +2017-07-19 19:19:02.809 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" started. +2017-07-19 19:19:02.810 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:19:02.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:19:02.811 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:19:02.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:19:02.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:19:02.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:19:03.606 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" started. +2017-07-19 19:19:04.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:19:04.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:19:04.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:19:04.614 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:19:04.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:19:04.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:19:06.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:19:06.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:19:06.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:06.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:19:06.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:06.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:06.814 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4521.5621ms +2017-07-19 19:19:06.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:06.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:19:06.818 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:06.818 +05:30 [Information] Request finished in 4540.6025ms 200 application/json; charset=utf-8 +2017-07-19 19:19:06.820 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" completed keep alive response. +2017-07-19 19:19:06.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:06.833 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4546.0243ms +2017-07-19 19:19:06.838 +05:30 [Information] Request finished in 4560.4421ms 200 application/json; charset=utf-8 +2017-07-19 19:19:06.840 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" completed keep alive response. +2017-07-19 19:19:07.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:19:07.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:19:07.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:19:07.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:07.347 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:19:07.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:07.350 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:07.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3264.4227ms +2017-07-19 19:19:07.412 +05:30 [Information] Request finished in 3318.0909ms 200 application/json; charset=utf-8 +2017-07-19 19:19:07.412 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" completed keep alive response. +2017-07-19 19:19:07.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:19:07.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:07.719 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:19:07.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:07.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:07.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4971.5848ms +2017-07-19 19:19:07.789 +05:30 [Information] Request finished in 4982.1931ms 200 application/json; charset=utf-8 +2017-07-19 19:19:07.790 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" completed keep alive response. +2017-07-19 19:19:07.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:07.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:07.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:07.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3243.8657ms +2017-07-19 19:19:07.881 +05:30 [Information] Request finished in 3265.736ms 200 application/json; charset=utf-8 +2017-07-19 19:19:07.882 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" completed keep alive response. +2017-07-19 19:19:09.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:09.318 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:19:09.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:09.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:09.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6511.4213ms +2017-07-19 19:19:09.331 +05:30 [Information] Request finished in 6524.1977ms 200 application/json; charset=utf-8 +2017-07-19 19:19:09.332 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" completed keep alive response. +2017-07-19 19:19:26.759 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:19:26.763 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:19:26.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:19:27.282 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:19:27.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:19:27.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:19:29.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:19:29.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:29.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:29.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:29.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3126.1428ms +2017-07-19 19:19:29.896 +05:30 [Information] Request finished in 3136.6643ms 200 application/json; charset=utf-8 +2017-07-19 19:19:29.897 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" completed keep alive response. +2017-07-19 19:19:29.931 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 19:19:29.932 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 19:19:29.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 19:19:30.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:19:30.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:30.335 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:30.336 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:30.337 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3052.0579ms +2017-07-19 19:19:30.340 +05:30 [Information] Request finished in 3058.458ms 200 application/json; charset=utf-8 +2017-07-19 19:19:30.341 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" completed keep alive response. +2017-07-19 19:19:30.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:19:30.507 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:19:30.508 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:19:32.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["65", "8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:19:33.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 19:19:33.035 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 19:19:33.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3102.6797ms +2017-07-19 19:19:33.040 +05:30 [Information] Request finished in 3110.1031ms 200 +2017-07-19 19:19:33.042 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" completed keep alive response. +2017-07-19 19:19:33.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:19:33.557 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:19:33.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:19:33.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:19:33.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3051.166ms +2017-07-19 19:19:33.564 +05:30 [Information] Request finished in 3058.3832ms 200 application/json; charset=utf-8 +2017-07-19 19:19:33.565 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" completed keep alive response. +2017-07-19 19:21:48.092 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" received FIN. +2017-07-19 19:21:48.093 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" received FIN. +2017-07-19 19:21:48.093 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" received FIN. +2017-07-19 19:21:48.093 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" disconnecting. +2017-07-19 19:21:48.094 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" disconnecting. +2017-07-19 19:21:48.095 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" sending FIN. +2017-07-19 19:21:48.092 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" received FIN. +2017-07-19 19:21:48.099 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" received FIN. +2017-07-19 19:21:48.100 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" received FIN. +2017-07-19 19:21:48.100 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" sent FIN with status "0". +2017-07-19 19:21:48.100 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" disconnecting. +2017-07-19 19:21:48.101 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" disconnecting. +2017-07-19 19:21:48.102 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" disconnecting. +2017-07-19 19:21:48.102 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" sending FIN. +2017-07-19 19:21:48.102 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" disconnecting. +2017-07-19 19:21:48.103 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" sending FIN. +2017-07-19 19:21:48.104 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" sending FIN. +2017-07-19 19:21:48.107 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" sent FIN with status "0". +2017-07-19 19:21:48.108 +05:30 [Debug] Connection id ""0HL6ELIUTLLAF"" stopped. +2017-07-19 19:21:48.108 +05:30 [Debug] Connection id ""0HL6ELIUTLLAE"" stopped. +2017-07-19 19:21:48.109 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" sent FIN with status "0". +2017-07-19 19:21:48.110 +05:30 [Debug] Connection id ""0HL6ELIUTLLAG"" stopped. +2017-07-19 19:21:48.110 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" sent FIN with status "0". +2017-07-19 19:21:48.111 +05:30 [Debug] Connection id ""0HL6ELIUTLLAJ"" stopped. +2017-07-19 19:21:48.109 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" sending FIN. +2017-07-19 19:21:48.111 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" sending FIN. +2017-07-19 19:21:48.112 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" sent FIN with status "0". +2017-07-19 19:21:48.112 +05:30 [Debug] Connection id ""0HL6ELIUTLLAH"" stopped. +2017-07-19 19:21:48.112 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" sent FIN with status "0". +2017-07-19 19:21:48.112 +05:30 [Debug] Connection id ""0HL6ELIUTLLAI"" stopped. +2017-07-19 19:30:03.237 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" started. +2017-07-19 19:30:03.238 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/ForgotPasswordSendMail application/x-www-form-urlencoded; charset=UTF-8 23 +2017-07-19 19:30:03.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ForgotPasswordSendMail"'. +2017-07-19 19:30:03.243 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" +2017-07-19 19:30:06.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" with arguments (["asd@gmail.com"]) - ModelState is Valid +2017-07-19 19:30:06.428 +05:30 [Fatal] Sequence contains no elements +2017-07-19 19:30:06.441 +05:30 [Error] at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.Single[T](Expression`1 expression) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 282 +2017-07-19 19:30:06.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:30:06.443 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:30:06.443 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-19 19:30:06.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:30:06.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" in 3198.9113ms +2017-07-19 19:30:06.453 +05:30 [Information] Request finished in 3214.8841ms 200 text/plain; charset=utf-8 +2017-07-19 19:30:06.454 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" completed keep alive response. +2017-07-19 19:31:48.090 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" received FIN. +2017-07-19 19:31:48.093 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" disconnecting. +2017-07-19 19:31:48.096 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" sending FIN. +2017-07-19 19:31:48.097 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" sent FIN with status "0". +2017-07-19 19:31:48.097 +05:30 [Debug] Connection id ""0HL6ELIUTLLAK"" stopped. +2017-07-19 19:38:30.158 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" started. +2017-07-19 19:38:30.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:38:30.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:38:30.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:38:33.243 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:38:33.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:38:33.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:38:33.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:38:33.308 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3142.9942ms +2017-07-19 19:38:33.312 +05:30 [Information] Request finished in 3151.6541ms 200 application/json; charset=utf-8 +2017-07-19 19:38:33.314 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" completed keep alive response. +2017-07-19 19:39:48.090 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" received FIN. +2017-07-19 19:39:48.091 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" disconnecting. +2017-07-19 19:39:48.091 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" sending FIN. +2017-07-19 19:39:48.092 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" sent FIN with status "0". +2017-07-19 19:39:48.092 +05:30 [Debug] Connection id ""0HL6ELIUTLLAL"" stopped. +2017-07-19 19:41:10.218 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" started. +2017-07-19 19:41:10.222 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:41:10.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:41:10.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:41:13.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceaced506c63"]) - ModelState is Valid +2017-07-19 19:41:13.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:41:13.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:41:13.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:41:13.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3092.3241ms +2017-07-19 19:41:13.319 +05:30 [Information] Request finished in 3097.4473ms 200 application/json; charset=utf-8 +2017-07-19 19:41:13.319 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" completed keep alive response. +2017-07-19 19:42:27.698 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" received FIN. +2017-07-19 19:42:27.700 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" disconnecting. +2017-07-19 19:42:27.698 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" started. +2017-07-19 19:42:27.700 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" sending FIN. +2017-07-19 19:42:27.707 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" sent FIN with status "0". +2017-07-19 19:42:27.708 +05:30 [Debug] Connection id ""0HL6ELIUTLLAM"" stopped. +2017-07-19 19:42:27.723 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 19:42:27.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 19:42:27.725 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 19:42:29.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 19:42:30.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:30.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:30.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:30.100 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2373.923ms +2017-07-19 19:42:30.103 +05:30 [Information] Request finished in 2395.4533ms 200 application/json; charset=utf-8 +2017-07-19 19:42:30.104 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:42:30.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:42:30.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:42:30.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:42:33.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:33.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:33.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:33.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:33.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3304.8974ms +2017-07-19 19:42:33.547 +05:30 [Information] Request finished in 3371.7827ms 200 application/json; charset=utf-8 +2017-07-19 19:42:33.548 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:42:33.563 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:42:33.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:42:33.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:42:36.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:36.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:36.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:36.698 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:36.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3129.3458ms +2017-07-19 19:42:36.704 +05:30 [Information] Request finished in 3143.9036ms 200 application/json; charset=utf-8 +2017-07-19 19:42:36.705 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:42:38.624 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" started. +2017-07-19 19:42:38.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:42:38.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:42:38.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:42:38.635 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:42:38.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:42:38.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:42:39.492 +05:30 [Debug] Connection id ""0HL6ELIUTLLAP"" started. +2017-07-19 19:42:39.494 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" started. +2017-07-19 19:42:39.498 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" started. +2017-07-19 19:42:39.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:42:39.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:42:39.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:42:39.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:42:39.540 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:42:39.541 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:42:39.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:42:39.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:42:39.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:42:40.838 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" started. +2017-07-19 19:42:40.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:42:40.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:42:40.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:42:41.968 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:42.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:42.010 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:42:42.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:42.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:42.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3511.6299ms +2017-07-19 19:42:42.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:42.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:42.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:42.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:42:42.480 +05:30 [Information] Request finished in 3701.2824ms 200 application/json; charset=utf-8 +2017-07-19 19:42:42.481 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:42:42.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:42.601 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:42:42.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:42.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:42.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:42.641 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:42:42.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:42.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3086.7192ms +2017-07-19 19:42:42.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:42.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4020.8996ms +2017-07-19 19:42:42.705 +05:30 [Information] Request finished in 3151.1347ms 200 application/json; charset=utf-8 +2017-07-19 19:42:42.706 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:42:42.732 +05:30 [Information] Request finished in 4104.8207ms 200 application/json; charset=utf-8 +2017-07-19 19:42:42.733 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" completed keep alive response. +2017-07-19 19:42:42.767 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:42.767 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:42:42.768 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:42.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:42.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3259.8603ms +2017-07-19 19:42:42.775 +05:30 [Information] Request finished in 3279.9154ms 200 application/json; charset=utf-8 +2017-07-19 19:42:42.776 +05:30 [Debug] Connection id ""0HL6ELIUTLLAP"" completed keep alive response. +2017-07-19 19:42:43.365 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:42:43.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:43.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:43.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:43.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2740.8487ms +2017-07-19 19:42:43.604 +05:30 [Information] Request finished in 2762.5826ms 200 application/json; charset=utf-8 +2017-07-19 19:42:43.604 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" completed keep alive response. +2017-07-19 19:42:43.875 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:43.876 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:42:43.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:43.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:43.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4336.4411ms +2017-07-19 19:42:43.882 +05:30 [Information] Request finished in 4353.706ms 200 application/json; charset=utf-8 +2017-07-19 19:42:43.883 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" completed keep alive response. +2017-07-19 19:42:45.837 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:42:45.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:42:45.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:42:46.402 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:42:46.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:42:46.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:42:49.021 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb0391ab40a"]) - ModelState is Valid +2017-07-19 19:42:49.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:49.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:49.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:49.050 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3207.3187ms +2017-07-19 19:42:49.059 +05:30 [Information] Request finished in 3221.5153ms 200 application/json; charset=utf-8 +2017-07-19 19:42:49.059 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:42:49.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 19:42:49.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 19:42:49.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 19:42:49.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb0391ab40a"]) - ModelState is Valid +2017-07-19 19:42:49.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:49.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:49.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:49.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3201.2801ms +2017-07-19 19:42:49.609 +05:30 [Information] Request finished in 3209.9827ms 200 application/json; charset=utf-8 +2017-07-19 19:42:49.610 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:42:49.739 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:42:49.740 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:42:49.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:42:52.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["66", "8d4ceb0391ab40a"]) - ModelState is Valid +2017-07-19 19:42:52.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 19:42:52.194 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 19:42:52.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3102.9154ms +2017-07-19 19:42:52.198 +05:30 [Information] Request finished in 3118.7515ms 200 +2017-07-19 19:42:52.198 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" completed keep alive response. +2017-07-19 19:42:52.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb0391ab40a"]) - ModelState is Valid +2017-07-19 19:42:52.893 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:42:52.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:42:52.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:42:52.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3159.211ms +2017-07-19 19:42:52.907 +05:30 [Information] Request finished in 3180.5072ms 200 application/json; charset=utf-8 +2017-07-19 19:42:52.908 +05:30 [Debug] Connection id ""0HL6ELIUTLLAP"" completed keep alive response. +2017-07-19 19:43:08.896 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-19 19:43:08.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-19 19:43:08.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-19 19:43:12.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 19:43:12.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:12.113 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:12.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:12.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3216.849ms +2017-07-19 19:43:12.117 +05:30 [Information] Request finished in 3221.5051ms 200 application/json; charset=utf-8 +2017-07-19 19:43:12.118 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" completed keep alive response. +2017-07-19 19:43:12.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:43:12.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:43:12.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:43:15.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:15.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:15.271 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:15.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:15.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3099.9412ms +2017-07-19 19:43:15.276 +05:30 [Information] Request finished in 3104.967ms 200 application/json; charset=utf-8 +2017-07-19 19:43:15.276 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" completed keep alive response. +2017-07-19 19:43:15.282 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:43:15.283 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:43:15.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:43:18.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:18.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:18.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:18.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:18.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.4992ms +2017-07-19 19:43:18.395 +05:30 [Information] Request finished in 3113.1767ms 200 application/json; charset=utf-8 +2017-07-19 19:43:18.395 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:43:19.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:43:19.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:43:19.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:43:19.657 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:43:19.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:43:19.663 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:43:20.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:43:20.299 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:43:20.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:43:20.306 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:43:20.311 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:43:20.311 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:43:20.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:43:20.319 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:43:20.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:43:20.863 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:43:20.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:43:20.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:43:22.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:22.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:22.796 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:43:22.796 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:22.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:22.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:22.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3186.8024ms +2017-07-19 19:43:22.856 +05:30 [Information] Request finished in 3224.1953ms 200 application/json; charset=utf-8 +2017-07-19 19:43:22.857 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" completed keep alive response. +2017-07-19 19:43:22.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:22.860 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:43:22.861 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:22.863 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:22.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3204.2209ms +2017-07-19 19:43:22.876 +05:30 [Information] Request finished in 3253.3503ms 200 application/json; charset=utf-8 +2017-07-19 19:43:22.876 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:43:23.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:23.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:23.464 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:43:23.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:23.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:23.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:23.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3156.7227ms +2017-07-19 19:43:23.478 +05:30 [Information] Request finished in 3180.8148ms 200 application/json; charset=utf-8 +2017-07-19 19:43:23.479 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" completed keep alive response. +2017-07-19 19:43:23.529 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:43:23.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:23.783 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:43:23.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:23.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:23.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3466.4547ms +2017-07-19 19:43:23.791 +05:30 [Information] Request finished in 3484.7989ms 200 application/json; charset=utf-8 +2017-07-19 19:43:23.791 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" completed keep alive response. +2017-07-19 19:43:23.931 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:43:23.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:23.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:23.989 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:23.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3121.7151ms +2017-07-19 19:43:23.993 +05:30 [Information] Request finished in 3133.4967ms 200 application/json; charset=utf-8 +2017-07-19 19:43:23.993 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:43:24.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:43:24.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:43:24.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:43:24.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:43:24.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3891.271ms +2017-07-19 19:43:24.195 +05:30 [Information] Request finished in 3904.302ms 200 application/json; charset=utf-8 +2017-07-19 19:43:24.195 +05:30 [Debug] Connection id ""0HL6ELIUTLLAP"" completed keep alive response. +2017-07-19 19:43:58.009 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:43:58.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:43:58.011 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:44:01.661 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:44:01.666 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:01.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:01.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:01.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3657.4759ms +2017-07-19 19:44:01.675 +05:30 [Information] Request finished in 3665.2919ms 200 application/json; charset=utf-8 +2017-07-19 19:44:01.675 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" completed keep alive response. +2017-07-19 19:44:05.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:44:05.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:44:05.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:44:10.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:44:10.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:10.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:10.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:10.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5122.2303ms +2017-07-19 19:44:10.194 +05:30 [Information] Request finished in 5143.4517ms 200 application/json; charset=utf-8 +2017-07-19 19:44:10.195 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:44:10.225 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:44:10.226 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 19:44:10.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:44:10.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 19:44:10.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:44:10.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 19:44:12.307 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:12.368 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:12.370 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:12.371 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:12.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2141.4074ms +2017-07-19 19:44:12.376 +05:30 [Information] Request finished in 2157.7755ms 200 application/json; charset=utf-8 +2017-07-19 19:44:12.376 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" completed keep alive response. +2017-07-19 19:44:12.386 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:44:12.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:44:12.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:44:13.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:44:13.336 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:13.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:13.338 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:13.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3101.6236ms +2017-07-19 19:44:13.345 +05:30 [Information] Request finished in 3126.5877ms 200 application/json; charset=utf-8 +2017-07-19 19:44:13.347 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" completed keep alive response. +2017-07-19 19:44:15.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:15.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:15.583 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:15.584 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:15.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3194.0729ms +2017-07-19 19:44:15.587 +05:30 [Information] Request finished in 3203.6131ms 200 application/json; charset=utf-8 +2017-07-19 19:44:15.588 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:44:17.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:44:17.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:44:17.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:44:17.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:44:17.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:44:17.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:44:17.490 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:44:17.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:44:17.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:44:17.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:44:17.504 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:44:17.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:44:17.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:44:17.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:44:17.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:44:18.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:44:18.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:44:18.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:44:19.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:19.932 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:19.932 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:44:19.933 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:19.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:19.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2443.9507ms +2017-07-19 19:44:19.941 +05:30 [Information] Request finished in 2455.6594ms 200 application/json; charset=utf-8 +2017-07-19 19:44:19.943 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:44:20.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:20.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:20.126 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:44:20.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:20.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:20.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3121.0765ms +2017-07-19 19:44:20.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:20.179 +05:30 [Information] Request finished in 3156.9919ms 200 application/json; charset=utf-8 +2017-07-19 19:44:20.212 +05:30 [Debug] Connection id ""0HL6ELIUTLLAO"" completed keep alive response. +2017-07-19 19:44:20.249 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:20.250 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:44:20.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:20.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:20.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3251.9605ms +2017-07-19 19:44:20.264 +05:30 [Information] Request finished in 3262.2268ms 200 application/json; charset=utf-8 +2017-07-19 19:44:20.265 +05:30 [Debug] Connection id ""0HL6ELIUTLLAP"" completed keep alive response. +2017-07-19 19:44:20.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:44:20.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:20.361 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:20.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:20.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2140.3179ms +2017-07-19 19:44:20.366 +05:30 [Information] Request finished in 2171.359ms 200 application/json; charset=utf-8 +2017-07-19 19:44:20.367 +05:30 [Debug] Connection id ""0HL6ELIUTLLAN"" completed keep alive response. +2017-07-19 19:44:20.373 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:44:20.374 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:44:20.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:44:20.614 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:20.672 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:20.698 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:44:20.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:20.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:44:20.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:20.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3207.3501ms +2017-07-19 19:44:20.717 +05:30 [Information] Request finished in 3226.8908ms 200 application/json; charset=utf-8 +2017-07-19 19:44:20.717 +05:30 [Debug] Connection id ""0HL6ELIUTLLAS"" completed keep alive response. +2017-07-19 19:44:21.527 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:21.527 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:44:21.528 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:21.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:21.533 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4014.5098ms +2017-07-19 19:44:21.536 +05:30 [Information] Request finished in 4032.2316ms 200 application/json; charset=utf-8 +2017-07-19 19:44:21.537 +05:30 [Debug] Connection id ""0HL6ELIUTLLAQ"" completed keep alive response. +2017-07-19 19:44:23.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:44:23.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:44:23.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:44:23.472 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:44:23.479 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3098.3722ms +2017-07-19 19:44:23.481 +05:30 [Information] Request finished in 3108.5041ms 200 application/json; charset=utf-8 +2017-07-19 19:44:23.482 +05:30 [Debug] Connection id ""0HL6ELIUTLLAR"" completed keep alive response. +2017-07-19 19:49:37.630 +05:30 [Debug] Hosting starting +2017-07-19 19:49:37.953 +05:30 [Debug] Hosting started +2017-07-19 19:49:38.116 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" started. +2017-07-19 19:49:38.116 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" started. +2017-07-19 19:49:38.324 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-19 19:49:38.324 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-19 19:49:38.457 +05:30 [Information] Request finished in 159.1792ms 200 +2017-07-19 19:49:38.538 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:49:39.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-19 19:49:39.198 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a7ffed88-8c7a-4640-a88b-821a759eabdb"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-19 19:49:39.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-19 19:49:39.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-19 19:49:39.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-19 19:49:39.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:49:39.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:49:39.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:49:39.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 571.101ms +2017-07-19 19:49:39.994 +05:30 [Information] Request finished in 1750.7958ms 200 application/json; charset=utf-8 +2017-07-19 19:49:39.996 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:49:40.036 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-19 19:49:40.040 +05:30 [Debug] Request did not match any routes. +2017-07-19 19:49:40.062 +05:30 [Debug] The request path "" does not match the path filter +2017-07-19 19:49:40.067 +05:30 [Information] Request finished in 29.8512ms 404 +2017-07-19 19:49:40.068 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:49:41.058 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:49:41.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:49:41.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:49:44.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:49:48.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:49:48.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:49:48.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:49:48.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7256.8238ms +2017-07-19 19:49:48.341 +05:30 [Information] Request finished in 7294.4872ms 200 application/json; charset=utf-8 +2017-07-19 19:49:48.344 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:49:48.701 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-19 19:49:48.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-19 19:49:48.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-19 19:49:51.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-19 19:49:51.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:49:51.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:49:51.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:49:51.931 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3226.6885ms +2017-07-19 19:49:51.933 +05:30 [Information] Request finished in 3232.0097ms 200 application/json; charset=utf-8 +2017-07-19 19:49:51.933 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:01.423 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:01.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:01.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:04.496 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:04.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:04.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:04.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:04.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.6106ms +2017-07-19 19:50:04.505 +05:30 [Information] Request finished in 3085.1016ms 200 application/json; charset=utf-8 +2017-07-19 19:50:04.506 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:04.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:04.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:04.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:07.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:07.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:07.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:07.656 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:07.658 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.7804ms +2017-07-19 19:50:07.661 +05:30 [Information] Request finished in 3056.0644ms 200 application/json; charset=utf-8 +2017-07-19 19:50:07.662 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:07.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 19:50:07.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 19:50:07.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 19:50:07.720 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:50:07.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:50:07.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:50:15.200 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" started. +2017-07-19 19:50:15.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:15.206 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:15.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:15.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:15.208 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:15.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:15.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:15.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:15.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 7524.3364ms +2017-07-19 19:50:15.262 +05:30 [Information] Request finished in 7556.5782ms 200 application/json; charset=utf-8 +2017-07-19 19:50:15.263 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:15.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:15.392 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:15.393 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:15.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7677.483ms +2017-07-19 19:50:15.407 +05:30 [Information] Request finished in 7694.004ms 200 application/json; charset=utf-8 +2017-07-19 19:50:15.407 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:15.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:50:15.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:50:15.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:50:18.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:18.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:18.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:18.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:18.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.1271ms +2017-07-19 19:50:18.294 +05:30 [Information] Request finished in 3090.2513ms 200 application/json; charset=utf-8 +2017-07-19 19:50:18.295 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" completed keep alive response. +2017-07-19 19:50:18.303 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-19 19:50:18.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-19 19:50:18.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-19 19:50:18.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-19 19:50:18.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-19 19:50:18.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-19 19:50:18.568 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:18.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:18.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:18.645 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:18.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3164.2206ms +2017-07-19 19:50:18.661 +05:30 [Information] Request finished in 3174.7871ms 200 application/json; charset=utf-8 +2017-07-19 19:50:18.662 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:21.365 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:21.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:21.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:21.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:21.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:21.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3109.1341ms +2017-07-19 19:50:21.445 +05:30 [Information] Request finished in 3142.5747ms 200 application/json; charset=utf-8 +2017-07-19 19:50:21.445 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:21.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:21.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:21.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:21.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3173.5076ms +2017-07-19 19:50:21.491 +05:30 [Information] Request finished in 3187.0447ms 200 application/json; charset=utf-8 +2017-07-19 19:50:21.491 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" completed keep alive response. +2017-07-19 19:50:21.495 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:50:21.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:50:21.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:50:24.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:24.601 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:24.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:24.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:24.603 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.0327ms +2017-07-19 19:50:24.606 +05:30 [Information] Request finished in 3111.0933ms 200 application/json; charset=utf-8 +2017-07-19 19:50:24.606 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:26.229 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-19 19:50:26.230 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-19 19:50:26.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-19 19:50:26.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-19 19:50:26.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-19 19:50:26.233 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-19 19:50:26.907 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" started. +2017-07-19 19:50:26.908 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" started. +2017-07-19 19:50:26.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-19 19:50:26.915 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-19 19:50:26.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-19 19:50:26.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-19 19:50:26.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-19 19:50:26.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-19 19:50:27.795 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" started. +2017-07-19 19:50:28.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-19 19:50:28.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-19 19:50:28.289 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-19 19:50:28.818 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:28.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:28.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:30.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:30.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:30.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:30.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:30.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:50:30.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:30.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:31.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4771.1429ms +2017-07-19 19:50:31.011 +05:30 [Information] Request finished in 4782.311ms 200 application/json; charset=utf-8 +2017-07-19 19:50:31.012 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" completed keep alive response. +2017-07-19 19:50:31.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:31.062 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:50:31.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:31.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:31.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4831.94ms +2017-07-19 19:50:31.068 +05:30 [Information] Request finished in 4839.8788ms 200 application/json; charset=utf-8 +2017-07-19 19:50:31.069 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:31.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:31.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-19 19:50:31.470 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:31.471 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:50:31.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:31.475 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:31.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4557.9121ms +2017-07-19 19:50:31.479 +05:30 [Information] Request finished in 4567.3904ms 200 application/json; charset=utf-8 +2017-07-19 19:50:31.480 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" completed keep alive response. +2017-07-19 19:50:31.734 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:31.735 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:50:31.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:31.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:31.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4906.3539ms +2017-07-19 19:50:31.835 +05:30 [Information] Request finished in 4925.9522ms 200 application/json; charset=utf-8 +2017-07-19 19:50:31.836 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:31.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:31.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:31.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:31.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:31.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.8481ms +2017-07-19 19:50:31.996 +05:30 [Information] Request finished in 3170.9233ms 200 application/json; charset=utf-8 +2017-07-19 19:50:31.998 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" completed keep alive response. +2017-07-19 19:50:32.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-19 19:50:32.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-19 19:50:32.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-19 19:50:32.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:32.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-19 19:50:32.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:32.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:32.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3885.6966ms +2017-07-19 19:50:32.181 +05:30 [Information] Request finished in 3899.3235ms 200 application/json; charset=utf-8 +2017-07-19 19:50:32.182 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" completed keep alive response. +2017-07-19 19:50:35.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-19 19:50:35.310 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:35.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:35.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:35.322 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3287.0733ms +2017-07-19 19:50:35.327 +05:30 [Information] Request finished in 3300.5661ms 200 application/json; charset=utf-8 +2017-07-19 19:50:35.328 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" completed keep alive response. +2017-07-19 19:50:41.852 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:41.853 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:41.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:42.328 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:42.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:42.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:44.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:44.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:44.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:44.897 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:44.899 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.0749ms +2017-07-19 19:50:44.901 +05:30 [Information] Request finished in 3052.2996ms 200 application/json; charset=utf-8 +2017-07-19 19:50:44.901 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" completed keep alive response. +2017-07-19 19:50:44.913 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-19 19:50:44.914 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-19 19:50:44.916 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-19 19:50:45.385 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:45.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:45.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:45.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:45.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.3996ms +2017-07-19 19:50:45.396 +05:30 [Information] Request finished in 3067.8148ms 200 application/json; charset=utf-8 +2017-07-19 19:50:45.397 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" completed keep alive response. +2017-07-19 19:50:45.562 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-19 19:50:45.562 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-19 19:50:45.563 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-19 19:50:47.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["67", "8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:48.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-19 19:50:48.160 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-19 19:50:48.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3244.2143ms +2017-07-19 19:50:48.165 +05:30 [Information] Request finished in 3251.8456ms 200 +2017-07-19 19:50:48.166 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" completed keep alive response. +2017-07-19 19:50:48.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-19 19:50:48.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-19 19:50:48.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-19 19:50:48.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-19 19:50:48.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3086.554ms +2017-07-19 19:50:48.655 +05:30 [Information] Request finished in 3094.1757ms 200 application/json; charset=utf-8 +2017-07-19 19:50:48.656 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" completed keep alive response. +2017-07-19 19:51:38.087 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" received FIN. +2017-07-19 19:51:38.087 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" received FIN. +2017-07-19 19:51:38.088 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" disconnecting. +2017-07-19 19:51:38.089 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" disconnecting. +2017-07-19 19:51:38.090 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" sending FIN. +2017-07-19 19:51:38.095 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" sent FIN with status "0". +2017-07-19 19:51:38.097 +05:30 [Debug] Connection id ""0HL6EM4O4PKS8"" stopped. +2017-07-19 19:51:38.098 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" sending FIN. +2017-07-19 19:51:38.098 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" sent FIN with status "0". +2017-07-19 19:51:38.099 +05:30 [Debug] Connection id ""0HL6EM4O4PKS6"" stopped. +2017-07-19 19:53:38.086 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" received FIN. +2017-07-19 19:53:38.088 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" received FIN. +2017-07-19 19:53:38.088 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" disconnecting. +2017-07-19 19:53:38.090 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" disconnecting. +2017-07-19 19:53:38.086 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" received FIN. +2017-07-19 19:53:38.088 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" received FIN. +2017-07-19 19:53:38.093 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" sending FIN. +2017-07-19 19:53:38.094 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" sending FIN. +2017-07-19 19:53:38.096 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" sent FIN with status "0". +2017-07-19 19:53:38.097 +05:30 [Debug] Connection id ""0HL6EM4O4PKS4"" stopped. +2017-07-19 19:53:38.100 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" disconnecting. +2017-07-19 19:53:38.103 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" sent FIN with status "0". +2017-07-19 19:53:38.104 +05:30 [Debug] Connection id ""0HL6EM4O4PKS7"" stopped. +2017-07-19 19:53:38.101 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" disconnecting. +2017-07-19 19:53:38.107 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" sending FIN. +2017-07-19 19:53:38.107 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" sent FIN with status "0". +2017-07-19 19:53:38.108 +05:30 [Debug] Connection id ""0HL6EM4O4PKS5"" stopped. +2017-07-19 19:53:38.105 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" sending FIN. +2017-07-19 19:53:38.109 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" sent FIN with status "0". +2017-07-19 19:53:38.110 +05:30 [Debug] Connection id ""0HL6EM4O4PKS9"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170720.txt b/src/Api.Socioboard/wwwroot/log/log-20170720.txt new file mode 100644 index 000000000..176052066 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170720.txt @@ -0,0 +1,7311 @@ +2017-07-20 10:53:43.666 +05:30 [Debug] Hosting starting +2017-07-20 10:53:44.097 +05:30 [Debug] Hosting started +2017-07-20 10:53:44.243 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" started. +2017-07-20 10:53:44.251 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" started. +2017-07-20 10:53:44.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 10:53:44.497 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 10:53:44.671 +05:30 [Information] Request finished in 140.5241ms 200 +2017-07-20 10:53:44.897 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" completed keep alive response. +2017-07-20 10:53:45.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 10:53:46.075 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"fe5ee0c2-641a-4602-be0a-8d093b2d43c0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 10:53:46.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 10:53:46.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 10:53:46.537 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 10:53:46.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:53:46.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:53:46.614 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:53:46.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 606.7735ms +2017-07-20 10:53:47.028 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 10:53:47.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 10:53:47.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 10:53:47.128 +05:30 [Information] Request finished in 2696.3483ms 200 application/json; charset=utf-8 +2017-07-20 10:53:47.132 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" completed keep alive response. +2017-07-20 10:53:47.209 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-20 10:53:47.213 +05:30 [Debug] Request did not match any routes. +2017-07-20 10:53:47.236 +05:30 [Debug] The request path "" does not match the path filter +2017-07-20 10:53:47.242 +05:30 [Information] Request finished in 31.7391ms 404 +2017-07-20 10:53:47.243 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" completed keep alive response. +2017-07-20 10:53:50.618 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4ceb05148c8fd"]) - ModelState is Valid +2017-07-20 10:53:55.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:53:55.612 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:53:55.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:53:55.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8610.9192ms +2017-07-20 10:53:55.691 +05:30 [Information] Request finished in 8695.0588ms 200 application/json; charset=utf-8 +2017-07-20 10:53:55.692 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" completed keep alive response. +2017-07-20 10:54:58.026 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" received FIN. +2017-07-20 10:54:58.026 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" received FIN. +2017-07-20 10:54:58.028 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" started. +2017-07-20 10:54:58.040 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 10:54:58.040 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" disconnecting. +2017-07-20 10:54:58.040 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" disconnecting. +2017-07-20 10:54:58.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 10:54:58.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 10:54:58.043 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" sending FIN. +2017-07-20 10:54:58.045 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" sending FIN. +2017-07-20 10:54:58.061 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" sent FIN with status "0". +2017-07-20 10:54:58.061 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" sent FIN with status "0". +2017-07-20 10:54:58.108 +05:30 [Debug] Connection id ""0HL6F5TUO6B37"" stopped. +2017-07-20 10:54:58.108 +05:30 [Debug] Connection id ""0HL6F5TUO6B36"" stopped. +2017-07-20 10:55:01.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 10:55:01.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:01.753 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:01.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:01.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3889.3146ms +2017-07-20 10:55:01.939 +05:30 [Information] Request finished in 3899.2679ms 200 application/json; charset=utf-8 +2017-07-20 10:55:01.939 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:55:02.360 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 10:55:02.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 10:55:02.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 10:55:05.405 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:05.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:05.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:05.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:05.732 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3367.562ms +2017-07-20 10:55:05.766 +05:30 [Information] Request finished in 3376.91ms 200 application/json; charset=utf-8 +2017-07-20 10:55:05.767 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:55:05.850 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:55:05.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:55:05.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:55:08.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:09.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:09.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:09.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:09.055 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3192.1118ms +2017-07-20 10:55:09.058 +05:30 [Information] Request finished in 3207.6617ms 200 application/json; charset=utf-8 +2017-07-20 10:55:09.059 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:55:11.382 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" started. +2017-07-20 10:55:11.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 10:55:11.411 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 10:55:11.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 10:55:11.411 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 10:55:11.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 10:55:11.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 10:55:12.064 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" started. +2017-07-20 10:55:12.065 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" started. +2017-07-20 10:55:12.089 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" started. +2017-07-20 10:55:12.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 10:55:12.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 10:55:12.099 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 10:55:12.118 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:55:12.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:55:12.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:55:12.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 10:55:12.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 10:55:12.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 10:55:12.779 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" started. +2017-07-20 10:55:13.208 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 10:55:13.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 10:55:13.209 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 10:55:14.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:14.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:14.918 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:14.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:55:14.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:14.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:14.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3520.0109ms +2017-07-20 10:55:14.958 +05:30 [Information] Request finished in 3573.2681ms 200 application/json; charset=utf-8 +2017-07-20 10:55:14.959 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" completed keep alive response. +2017-07-20 10:55:14.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:14.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:55:14.996 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:14.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:15.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3583.9629ms +2017-07-20 10:55:15.002 +05:30 [Information] Request finished in 3617.7024ms 200 application/json; charset=utf-8 +2017-07-20 10:55:15.003 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:55:15.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:15.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:15.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:55:15.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:15.926 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:55:15.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:15.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:15.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3825.5529ms +2017-07-20 10:55:15.956 +05:30 [Information] Request finished in 3869.3592ms 200 application/json; charset=utf-8 +2017-07-20 10:55:15.957 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" completed keep alive response. +2017-07-20 10:55:16.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:16.238 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:55:16.239 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:16.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:16.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 10:55:16.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4265.5682ms +2017-07-20 10:55:16.378 +05:30 [Information] Request finished in 4291.6444ms 200 application/json; charset=utf-8 +2017-07-20 10:55:16.379 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" completed keep alive response. +2017-07-20 10:55:16.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:16.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:16.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:16.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3233.0967ms +2017-07-20 10:55:16.447 +05:30 [Information] Request finished in 3245.4826ms 200 application/json; charset=utf-8 +2017-07-20 10:55:16.447 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" completed keep alive response. +2017-07-20 10:55:18.154 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:55:18.155 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:55:18.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:55:18.159 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:55:18.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5496.9172ms +2017-07-20 10:55:18.176 +05:30 [Information] Request finished in 5510.4864ms 200 application/json; charset=utf-8 +2017-07-20 10:55:18.177 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" completed keep alive response. +2017-07-20 10:56:10.776 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 10:56:10.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 10:56:10.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 10:56:14.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:56:14.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:14.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:14.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:14.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3417.4046ms +2017-07-20 10:56:14.199 +05:30 [Information] Request finished in 3423.0788ms 200 application/json; charset=utf-8 +2017-07-20 10:56:14.200 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" completed keep alive response. +2017-07-20 10:56:14.233 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 10:56:14.233 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 10:56:14.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 10:56:14.245 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 10:56:14.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 10:56:14.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 10:56:17.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:56:17.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:17.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:17.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:17.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3165.0867ms +2017-07-20 10:56:17.440 +05:30 [Information] Request finished in 3198.4951ms 200 application/json; charset=utf-8 +2017-07-20 10:56:17.441 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:56:17.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:17.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:17.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:17.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:17.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3408.8961ms +2017-07-20 10:56:17.662 +05:30 [Information] Request finished in 3435.2531ms 200 application/json; charset=utf-8 +2017-07-20 10:56:17.663 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" completed keep alive response. +2017-07-20 10:56:17.671 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" received FIN. +2017-07-20 10:56:17.671 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" received FIN. +2017-07-20 10:56:17.673 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" disconnecting. +2017-07-20 10:56:17.673 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" sending FIN. +2017-07-20 10:56:17.674 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" sent FIN with status "0". +2017-07-20 10:56:17.675 +05:30 [Debug] Connection id ""0HL6F5TUO6B3D"" stopped. +2017-07-20 10:56:17.673 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" disconnecting. +2017-07-20 10:56:17.676 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" sending FIN. +2017-07-20 10:56:17.676 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" sent FIN with status "0". +2017-07-20 10:56:17.677 +05:30 [Debug] Connection id ""0HL6F5TUO6B3A"" stopped. +2017-07-20 10:56:17.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:56:17.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:56:17.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:56:20.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:20.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:20.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:20.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:20.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3299.4964ms +2017-07-20 10:56:20.989 +05:30 [Information] Request finished in 3307.59ms 200 application/json; charset=utf-8 +2017-07-20 10:56:20.989 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" completed keep alive response. +2017-07-20 10:56:22.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 10:56:22.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 10:56:22.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 10:56:23.184 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 10:56:23.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 10:56:23.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 10:56:23.859 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" started. +2017-07-20 10:56:24.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:56:24.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:56:24.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:56:24.413 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 10:56:24.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 10:56:24.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 10:56:24.496 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" started. +2017-07-20 10:56:24.504 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 10:56:24.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 10:56:24.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 10:56:24.626 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 10:56:24.627 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 10:56:24.627 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 10:56:25.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:25.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:25.989 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:56:25.990 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:25.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:25.995 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3010.3568ms +2017-07-20 10:56:25.997 +05:30 [Information] Request finished in 3326.8181ms 200 application/json; charset=utf-8 +2017-07-20 10:56:25.998 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" completed keep alive response. +2017-07-20 10:56:26.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:27.013 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:27.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:27.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:56:27.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:27.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:27.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:27.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2862.362ms +2017-07-20 10:56:27.294 +05:30 [Information] Request finished in 3347.4175ms 200 application/json; charset=utf-8 +2017-07-20 10:56:27.295 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" completed keep alive response. +2017-07-20 10:56:27.295 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:27.296 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:56:27.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:27.332 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:27.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4146.774ms +2017-07-20 10:56:27.382 +05:30 [Information] Request finished in 4624.2903ms 200 application/json; charset=utf-8 +2017-07-20 10:56:27.382 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" completed keep alive response. +2017-07-20 10:56:27.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:27.553 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:56:27.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:27.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:27.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3052.4322ms +2017-07-20 10:56:27.566 +05:30 [Information] Request finished in 3189.055ms 200 application/json; charset=utf-8 +2017-07-20 10:56:27.567 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" completed keep alive response. +2017-07-20 10:56:28.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:56:28.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:56:28.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:28.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:28.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:28.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3665.5252ms +2017-07-20 10:56:28.298 +05:30 [Information] Request finished in 3724.9155ms 200 application/json; charset=utf-8 +2017-07-20 10:56:28.298 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" completed keep alive response. +2017-07-20 10:56:28.326 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 10:56:28.328 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 10:56:28.329 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 10:56:28.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:28.912 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:56:28.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:28.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:28.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4495.6025ms +2017-07-20 10:56:28.918 +05:30 [Information] Request finished in 4692.1328ms 200 application/json; charset=utf-8 +2017-07-20 10:56:28.919 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" completed keep alive response. +2017-07-20 10:56:31.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 10:56:31.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:56:31.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:56:31.578 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:56:31.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3249.6686ms +2017-07-20 10:56:31.600 +05:30 [Information] Request finished in 3272.3799ms 200 application/json; charset=utf-8 +2017-07-20 10:56:31.601 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" completed keep alive response. +2017-07-20 10:57:32.387 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" received FIN. +2017-07-20 10:57:32.387 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" received FIN. +2017-07-20 10:57:32.389 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" received FIN. +2017-07-20 10:57:32.389 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" disconnecting. +2017-07-20 10:57:32.389 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" received FIN. +2017-07-20 10:57:32.389 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" received FIN. +2017-07-20 10:57:32.392 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" received FIN. +2017-07-20 10:57:32.392 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" disconnecting. +2017-07-20 10:57:32.393 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" sending FIN. +2017-07-20 10:57:32.397 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" disconnecting. +2017-07-20 10:57:32.392 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" disconnecting. +2017-07-20 10:57:32.393 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" started. +2017-07-20 10:57:32.389 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" disconnecting. +2017-07-20 10:57:32.397 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" disconnecting. +2017-07-20 10:57:32.398 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" sending FIN. +2017-07-20 10:57:32.400 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" sending FIN. +2017-07-20 10:57:32.401 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" sent FIN with status "0". +2017-07-20 10:57:32.399 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" sending FIN. +2017-07-20 10:57:32.402 +05:30 [Debug] Connection id ""0HL6F5TUO6B39"" stopped. +2017-07-20 10:57:32.402 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" sending FIN. +2017-07-20 10:57:32.402 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" sent FIN with status "0". +2017-07-20 10:57:32.403 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" sending FIN. +2017-07-20 10:57:32.404 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" sent FIN with status "0". +2017-07-20 10:57:32.404 +05:30 [Debug] Connection id ""0HL6F5TUO6B3F"" stopped. +2017-07-20 10:57:32.405 +05:30 [Debug] Connection id ""0HL6F5TUO6B38"" stopped. +2017-07-20 10:57:32.405 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" sent FIN with status "0". +2017-07-20 10:57:32.406 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" sent FIN with status "0". +2017-07-20 10:57:32.407 +05:30 [Debug] Connection id ""0HL6F5TUO6B3B"" stopped. +2017-07-20 10:57:32.405 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 10:57:32.407 +05:30 [Debug] Connection id ""0HL6F5TUO6B3E"" stopped. +2017-07-20 10:57:32.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 10:57:32.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 10:57:32.409 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" sent FIN with status "0". +2017-07-20 10:57:32.412 +05:30 [Debug] Connection id ""0HL6F5TUO6B3C"" stopped. +2017-07-20 10:57:34.503 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:57:34.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:34.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:34.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:34.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2099.5952ms +2017-07-20 10:57:34.513 +05:30 [Information] Request finished in 2108.0718ms 200 application/json; charset=utf-8 +2017-07-20 10:57:34.513 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" completed keep alive response. +2017-07-20 10:57:34.570 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" started. +2017-07-20 10:57:34.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 10:57:34.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 10:57:34.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 10:57:34.575 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 10:57:34.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 10:57:34.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 10:57:36.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:36.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:36.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:36.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:36.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2177.2836ms +2017-07-20 10:57:36.758 +05:30 [Information] Request finished in 2184.3065ms 200 application/json; charset=utf-8 +2017-07-20 10:57:36.758 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" completed keep alive response. +2017-07-20 10:57:36.764 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:57:36.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:57:36.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:57:37.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:57:37.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:37.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:37.620 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:37.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3041.0812ms +2017-07-20 10:57:37.625 +05:30 [Information] Request finished in 3051.6065ms 200 application/json; charset=utf-8 +2017-07-20 10:57:37.625 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" completed keep alive response. +2017-07-20 10:57:39.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:39.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:39.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:39.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:39.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.5048ms +2017-07-20 10:57:39.884 +05:30 [Information] Request finished in 3119.8224ms 200 application/json; charset=utf-8 +2017-07-20 10:57:39.884 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" completed keep alive response. +2017-07-20 10:57:41.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 10:57:41.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 10:57:41.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 10:57:41.317 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 10:57:41.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 10:57:41.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 10:57:41.856 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" started. +2017-07-20 10:57:41.857 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" started. +2017-07-20 10:57:41.869 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" started. +2017-07-20 10:57:41.874 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 10:57:41.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 10:57:41.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 10:57:41.887 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 10:57:41.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 10:57:41.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 10:57:41.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 10:57:41.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 10:57:41.903 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 10:57:42.563 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" started. +2017-07-20 10:57:42.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 10:57:42.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 10:57:42.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 10:57:43.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:43.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:43.721 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:57:43.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:43.776 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:43.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2458.4464ms +2017-07-20 10:57:43.901 +05:30 [Information] Request finished in 2525.981ms 200 application/json; charset=utf-8 +2017-07-20 10:57:43.908 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" completed keep alive response. +2017-07-20 10:57:44.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:44.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:44.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:57:44.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:44.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:44.266 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2360.0494ms +2017-07-20 10:57:44.269 +05:30 [Information] Request finished in 2392.6871ms 200 application/json; charset=utf-8 +2017-07-20 10:57:44.269 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" completed keep alive response. +2017-07-20 10:57:44.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:44.627 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:44.628 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:57:44.628 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:44.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:44.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3308.6663ms +2017-07-20 10:57:44.637 +05:30 [Information] Request finished in 3327.6312ms 200 application/json; charset=utf-8 +2017-07-20 10:57:44.637 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" completed keep alive response. +2017-07-20 10:57:44.995 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:45.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 10:57:45.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:45.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:57:45.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:45.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:45.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3417.741ms +2017-07-20 10:57:45.298 +05:30 [Information] Request finished in 3431.4776ms 200 application/json; charset=utf-8 +2017-07-20 10:57:45.299 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" completed keep alive response. +2017-07-20 10:57:45.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:45.711 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 10:57:45.712 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:45.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:45.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3826.1144ms +2017-07-20 10:57:45.730 +05:30 [Information] Request finished in 3855.058ms 200 application/json; charset=utf-8 +2017-07-20 10:57:45.731 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" completed keep alive response. +2017-07-20 10:57:45.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 10:57:45.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:45.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:45.847 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:45.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3275.0606ms +2017-07-20 10:57:45.851 +05:30 [Information] Request finished in 3286.5827ms 200 application/json; charset=utf-8 +2017-07-20 10:57:45.852 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" completed keep alive response. +2017-07-20 10:57:45.860 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 10:57:45.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 10:57:45.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 10:57:47.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 10:57:47.995 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 10:57:47.995 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 10:57:47.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 10:57:47.999 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2135.5528ms +2017-07-20 10:57:48.003 +05:30 [Information] Request finished in 2144.0632ms 200 application/json; charset=utf-8 +2017-07-20 10:57:48.004 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" completed keep alive response. +2017-07-20 10:59:44.211 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" received FIN. +2017-07-20 10:59:44.211 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" received FIN. +2017-07-20 10:59:44.212 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" received FIN. +2017-07-20 10:59:44.213 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" received FIN. +2017-07-20 10:59:44.213 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" received FIN. +2017-07-20 10:59:44.215 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" received FIN. +2017-07-20 10:59:44.212 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" disconnecting. +2017-07-20 10:59:44.216 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" sending FIN. +2017-07-20 10:59:44.217 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" sent FIN with status "0". +2017-07-20 10:59:44.214 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" disconnecting. +2017-07-20 10:59:44.218 +05:30 [Debug] Connection id ""0HL6F5TUO6B3K"" stopped. +2017-07-20 10:59:44.219 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" disconnecting. +2017-07-20 10:59:44.221 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" disconnecting. +2017-07-20 10:59:44.221 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" sending FIN. +2017-07-20 10:59:44.222 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" disconnecting. +2017-07-20 10:59:44.228 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" sent FIN with status "0". +2017-07-20 10:59:44.229 +05:30 [Debug] Connection id ""0HL6F5TUO6B3G"" stopped. +2017-07-20 10:59:44.224 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" disconnecting. +2017-07-20 10:59:44.229 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" sending FIN. +2017-07-20 10:59:44.219 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" sending FIN. +2017-07-20 10:59:44.231 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" sent FIN with status "0". +2017-07-20 10:59:44.232 +05:30 [Debug] Connection id ""0HL6F5TUO6B3I"" stopped. +2017-07-20 10:59:44.232 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" sending FIN. +2017-07-20 10:59:44.233 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" sending FIN. +2017-07-20 10:59:44.235 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" sent FIN with status "0". +2017-07-20 10:59:44.235 +05:30 [Debug] Connection id ""0HL6F5TUO6B3H"" stopped. +2017-07-20 10:59:44.236 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" sent FIN with status "0". +2017-07-20 10:59:44.236 +05:30 [Debug] Connection id ""0HL6F5TUO6B3L"" stopped. +2017-07-20 10:59:44.237 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" sent FIN with status "0". +2017-07-20 10:59:44.237 +05:30 [Debug] Connection id ""0HL6F5TUO6B3J"" stopped. +2017-07-20 11:17:40.851 +05:30 [Debug] Hosting starting +2017-07-20 11:17:41.072 +05:30 [Debug] Hosting started +2017-07-20 11:17:41.215 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" started. +2017-07-20 11:17:41.216 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" started. +2017-07-20 11:17:41.512 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 11:17:41.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 11:17:41.603 +05:30 [Information] Request finished in 173.0529ms 200 +2017-07-20 11:17:41.682 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:17:42.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 11:17:42.884 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e0407428-768c-4fb5-b464-c6b7a1ced9aa"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 11:17:43.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 11:17:43.186 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 11:17:43.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 11:17:43.243 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:17:43.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:17:43.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:17:43.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 508.2758ms +2017-07-20 11:17:43.682 +05:30 [Information] Request finished in 2280.6758ms 200 application/json; charset=utf-8 +2017-07-20 11:17:43.686 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:18:12.852 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 11:18:12.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 11:18:12.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 11:18:16.420 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 11:18:21.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:21.821 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:21.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:22.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9197.7009ms +2017-07-20 11:18:22.089 +05:30 [Information] Request finished in 9243.331ms 200 application/json; charset=utf-8 +2017-07-20 11:18:22.090 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:18:22.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:18:22.523 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:18:22.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:18:25.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:25.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:25.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:25.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:25.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3370.9733ms +2017-07-20 11:18:25.902 +05:30 [Information] Request finished in 3377.7456ms 200 application/json; charset=utf-8 +2017-07-20 11:18:25.904 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:18:26.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:18:26.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:18:26.037 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:18:29.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:29.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:29.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:29.190 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:29.210 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3166.1935ms +2017-07-20 11:18:29.215 +05:30 [Information] Request finished in 3180.0629ms 200 application/json; charset=utf-8 +2017-07-20 11:18:29.216 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:18:34.256 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:18:34.259 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:18:34.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:18:34.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:18:34.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:18:34.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:18:34.421 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" started. +2017-07-20 11:18:34.431 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:18:34.432 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:18:34.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:18:35.641 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" started. +2017-07-20 11:18:35.646 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" started. +2017-07-20 11:18:35.652 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:18:35.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:18:35.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:18:36.855 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:18:36.855 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:18:36.857 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:18:37.094 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" started. +2017-07-20 11:18:37.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:37.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:37.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:18:37.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:18:37.606 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:18:37.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:37.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:37.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:37.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:37.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3400.9406ms +2017-07-20 11:18:37.676 +05:30 [Information] Request finished in 3441.7229ms 200 application/json; charset=utf-8 +2017-07-20 11:18:37.677 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:18:37.693 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:37.694 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:37.694 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:37.700 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:37.708 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3430.7152ms +2017-07-20 11:18:37.711 +05:30 [Information] Request finished in 3519.8695ms 200 application/json; charset=utf-8 +2017-07-20 11:18:37.711 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:18:38.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:38.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:38.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:38.546 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:38.547 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 4111.0898ms +2017-07-20 11:18:38.552 +05:30 [Information] Request finished in 4120.9073ms 200 application/json; charset=utf-8 +2017-07-20 11:18:38.553 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" completed keep alive response. +2017-07-20 11:18:38.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:18:38.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:18:38.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:18:38.719 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:39.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:39.015 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:39.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:39.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:39.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3430.941ms +2017-07-20 11:18:39.089 +05:30 [Information] Request finished in 3445.4583ms 200 application/json; charset=utf-8 +2017-07-20 11:18:39.089 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" completed keep alive response. +2017-07-20 11:18:39.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:18:39.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:39.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:39.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:39.923 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2316.064ms +2017-07-20 11:18:39.925 +05:30 [Information] Request finished in 2394.2702ms 200 application/json; charset=utf-8 +2017-07-20 11:18:39.926 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" completed keep alive response. +2017-07-20 11:18:40.118 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:40.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:40.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:40.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:40.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:40.736 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2173.3144ms +2017-07-20 11:18:40.743 +05:30 [Information] Request finished in 2183.2445ms 200 application/json; charset=utf-8 +2017-07-20 11:18:40.744 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:18:41.736 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:18:41.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:18:41.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:18:41.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:18:41.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:18:41.742 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:18:42.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:42.114 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:42.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:42.235 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:42.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5383.7151ms +2017-07-20 11:18:42.634 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:18:42.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:18:42.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:18:42.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:18:43.045 +05:30 [Information] Request finished in 5780.8713ms 200 application/json; charset=utf-8 +2017-07-20 11:18:43.068 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" completed keep alive response. +2017-07-20 11:18:43.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:18:43.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:18:43.270 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:18:43.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:18:43.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:18:44.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:44.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:44.546 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:44.548 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:44.552 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:44.555 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2811.07ms +2017-07-20 11:18:44.558 +05:30 [Information] Request finished in 2826.5074ms 200 application/json; charset=utf-8 +2017-07-20 11:18:44.559 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" completed keep alive response. +2017-07-20 11:18:45.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:45.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:45.017 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:45.017 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:45.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:45.021 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3280.0557ms +2017-07-20 11:18:45.024 +05:30 [Information] Request finished in 3292.2513ms 200 application/json; charset=utf-8 +2017-07-20 11:18:45.024 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:18:45.097 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:45.414 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:45.415 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:45.417 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:45.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:45.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2782.8087ms +2017-07-20 11:18:45.425 +05:30 [Information] Request finished in 2887.8036ms 200 application/json; charset=utf-8 +2017-07-20 11:18:45.426 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" completed keep alive response. +2017-07-20 11:18:46.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:18:46.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:18:46.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:46.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:46.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:46.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3179.8768ms +2017-07-20 11:18:46.457 +05:30 [Information] Request finished in 3197.8214ms 200 application/json; charset=utf-8 +2017-07-20 11:18:46.458 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:18:47.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:18:47.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:18:47.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:18:47.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:18:47.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3993.8398ms +2017-07-20 11:18:47.178 +05:30 [Information] Request finished in 4541.9094ms 200 application/json; charset=utf-8 +2017-07-20 11:18:47.179 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" completed keep alive response. +2017-07-20 11:19:00.594 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:19:00.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:19:00.596 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:19:03.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:19:03.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:03.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:03.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:03.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.4144ms +2017-07-20 11:19:03.680 +05:30 [Information] Request finished in 3085.9399ms 200 application/json; charset=utf-8 +2017-07-20 11:19:03.681 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" completed keep alive response. +2017-07-20 11:19:03.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 11:19:03.713 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:19:03.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:19:03.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 11:19:03.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:19:03.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 11:19:06.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:19:06.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:06.828 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:06.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:06.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:06.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3141.1564ms +2017-07-20 11:19:06.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:06.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:06.895 +05:30 [Information] Request finished in 3204.8758ms 200 application/json; charset=utf-8 +2017-07-20 11:19:06.897 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" completed keep alive response. +2017-07-20 11:19:06.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:06.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3184.1701ms +2017-07-20 11:19:06.923 +05:30 [Information] Request finished in 3229.9532ms 200 application/json; charset=utf-8 +2017-07-20 11:19:06.924 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:19:06.946 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:19:06.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:19:06.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:19:10.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:10.065 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:10.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:10.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:10.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3113.691ms +2017-07-20 11:19:10.071 +05:30 [Information] Request finished in 3136.1984ms 200 application/json; charset=utf-8 +2017-07-20 11:19:10.071 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" completed keep alive response. +2017-07-20 11:19:11.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:19:11.398 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:19:11.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:19:11.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:19:11.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:19:11.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:19:12.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:19:12.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:19:12.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:19:12.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:19:12.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:19:12.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:19:12.989 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:19:12.991 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:19:12.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:19:14.664 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:14.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:14.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:14.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:19:14.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:14.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:14.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:14.811 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:19:14.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3405.5775ms +2017-07-20 11:19:14.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:14.838 +05:30 [Information] Request finished in 3441.2193ms 200 application/json; charset=utf-8 +2017-07-20 11:19:14.840 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" completed keep alive response. +2017-07-20 11:19:14.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:14.851 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3447.3709ms +2017-07-20 11:19:14.873 +05:30 [Information] Request finished in 3490.0363ms 200 application/json; charset=utf-8 +2017-07-20 11:19:14.875 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" completed keep alive response. +2017-07-20 11:19:15.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:15.798 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:19:15.993 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:15.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:19:15.994 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:15.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:15.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3589.8315ms +2017-07-20 11:19:15.999 +05:30 [Information] Request finished in 3596.6237ms 200 application/json; charset=utf-8 +2017-07-20 11:19:16.000 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" completed keep alive response. +2017-07-20 11:19:16.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:19:16.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:16.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:16.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:16.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3165.6654ms +2017-07-20 11:19:16.166 +05:30 [Information] Request finished in 3177.4554ms 200 application/json; charset=utf-8 +2017-07-20 11:19:16.167 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" completed keep alive response. +2017-07-20 11:19:16.183 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:19:16.184 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:19:16.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:19:16.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:16.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:19:16.358 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:16.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:16.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3951.8358ms +2017-07-20 11:19:16.393 +05:30 [Information] Request finished in 3969.8234ms 200 application/json; charset=utf-8 +2017-07-20 11:19:16.394 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" completed keep alive response. +2017-07-20 11:19:19.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:19:19.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:19:19.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:19:19.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:19:19.366 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3171.4336ms +2017-07-20 11:19:19.391 +05:30 [Information] Request finished in 3209.0522ms 200 application/json; charset=utf-8 +2017-07-20 11:19:19.392 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" completed keep alive response. +2017-07-20 11:21:33.097 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" received FIN. +2017-07-20 11:21:33.097 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" received FIN. +2017-07-20 11:21:33.098 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" received FIN. +2017-07-20 11:21:33.098 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" received FIN. +2017-07-20 11:21:33.097 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" received FIN. +2017-07-20 11:21:33.099 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" received FIN. +2017-07-20 11:21:33.099 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" disconnecting. +2017-07-20 11:21:33.105 +05:30 [Debug] Connection id ""0HL6F6BB07OD9"" started. +2017-07-20 11:21:33.106 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" sending FIN. +2017-07-20 11:21:33.098 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" disconnecting. +2017-07-20 11:21:33.112 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" disconnecting. +2017-07-20 11:21:33.110 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" disconnecting. +2017-07-20 11:21:33.112 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" disconnecting. +2017-07-20 11:21:33.110 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" disconnecting. +2017-07-20 11:21:33.114 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" sending FIN. +2017-07-20 11:21:33.118 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" sent FIN with status "0". +2017-07-20 11:21:33.118 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" sending FIN. +2017-07-20 11:21:33.120 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" sending FIN. +2017-07-20 11:21:33.121 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" sent FIN with status "0". +2017-07-20 11:21:33.121 +05:30 [Debug] Connection id ""0HL6F6BB07OD4"" stopped. +2017-07-20 11:21:33.122 +05:30 [Debug] Connection id ""0HL6F6BB07OD6"" stopped. +2017-07-20 11:21:33.122 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" sending FIN. +2017-07-20 11:21:33.122 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" sent FIN with status "0". +2017-07-20 11:21:33.124 +05:30 [Debug] Connection id ""0HL6F6BB07OD3"" stopped. +2017-07-20 11:21:33.124 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" sent FIN with status "0". +2017-07-20 11:21:33.123 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" sending FIN. +2017-07-20 11:21:33.131 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" sent FIN with status "0". +2017-07-20 11:21:33.129 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:21:33.130 +05:30 [Debug] Connection id ""0HL6F6BB07OD8"" stopped. +2017-07-20 11:21:33.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:21:33.131 +05:30 [Debug] Connection id ""0HL6F6BB07OD5"" stopped. +2017-07-20 11:21:33.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:21:33.138 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" sent FIN with status "0". +2017-07-20 11:21:33.139 +05:30 [Debug] Connection id ""0HL6F6BB07OD7"" stopped. +2017-07-20 11:21:33.631 +05:30 [Debug] Connection id ""0HL6F6BB07ODA"" started. +2017-07-20 11:21:33.633 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:21:33.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:21:33.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:21:36.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:21:36.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:21:36.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:21:36.398 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:21:36.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3259.6391ms +2017-07-20 11:21:36.405 +05:30 [Information] Request finished in 3280.0988ms 200 application/json; charset=utf-8 +2017-07-20 11:21:36.406 +05:30 [Debug] Connection id ""0HL6F6BB07OD9"" completed keep alive response. +2017-07-20 11:21:36.436 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 11:21:36.438 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 11:21:36.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 11:21:36.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:21:36.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:21:36.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:21:36.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:21:36.858 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3213.5468ms +2017-07-20 11:21:36.866 +05:30 [Information] Request finished in 3231.7112ms 200 application/json; charset=utf-8 +2017-07-20 11:21:36.867 +05:30 [Debug] Connection id ""0HL6F6BB07ODA"" completed keep alive response. +2017-07-20 11:21:39.346 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:21:39.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:21:39.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:21:40.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["68", "8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:21:40.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 11:21:41.007 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 11:21:41.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 4568.2081ms +2017-07-20 11:21:41.012 +05:30 [Information] Request finished in 4576.3921ms 200 +2017-07-20 11:21:41.013 +05:30 [Debug] Connection id ""0HL6F6BB07OD9"" completed keep alive response. +2017-07-20 11:21:41.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:21:41.447 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:21:41.448 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:21:41.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:21:41.456 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2106.529ms +2017-07-20 11:21:41.459 +05:30 [Information] Request finished in 2113.6473ms 200 application/json; charset=utf-8 +2017-07-20 11:21:41.460 +05:30 [Debug] Connection id ""0HL6F6BB07ODA"" completed keep alive response. +2017-07-20 11:21:53.226 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:21:53.226 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:21:53.227 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:21:56.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:21:56.298 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:21:56.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:21:56.299 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:21:56.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.5057ms +2017-07-20 11:21:56.304 +05:30 [Information] Request finished in 3077.1365ms 200 application/json; charset=utf-8 +2017-07-20 11:21:56.304 +05:30 [Debug] Connection id ""0HL6F6BB07OD9"" completed keep alive response. +2017-07-20 11:22:12.607 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:22:12.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:22:12.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:22:15.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:22:15.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:22:15.679 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:22:15.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:22:15.698 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.9686ms +2017-07-20 11:22:15.703 +05:30 [Information] Request finished in 3095.031ms 200 application/json; charset=utf-8 +2017-07-20 11:22:15.704 +05:30 [Debug] Connection id ""0HL6F6BB07ODA"" completed keep alive response. +2017-07-20 11:22:52.586 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:22:52.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:22:52.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:22:54.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:22:54.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:22:54.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:22:54.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:22:54.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2094.2325ms +2017-07-20 11:22:54.686 +05:30 [Information] Request finished in 2099.5266ms 200 application/json; charset=utf-8 +2017-07-20 11:22:54.686 +05:30 [Debug] Connection id ""0HL6F6BB07OD9"" completed keep alive response. +2017-07-20 11:25:49.404 +05:30 [Debug] Hosting starting +2017-07-20 11:25:49.645 +05:30 [Debug] Hosting started +2017-07-20 11:25:49.669 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" started. +2017-07-20 11:25:49.669 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" started. +2017-07-20 11:25:49.948 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 11:25:49.978 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 11:25:50.048 +05:30 [Information] Request finished in 186.3264ms 200 +2017-07-20 11:25:50.172 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" completed keep alive response. +2017-07-20 11:25:51.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 11:25:51.357 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0635bc5f-07d1-40dd-9f79-cbfe6a034107"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 11:25:51.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 11:25:51.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 11:25:51.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 11:25:51.681 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:25:51.689 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:25:51.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:25:52.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 545.0909ms +2017-07-20 11:25:52.162 +05:30 [Information] Request finished in 2323.8742ms 200 application/json; charset=utf-8 +2017-07-20 11:25:52.166 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" completed keep alive response. +2017-07-20 11:26:50.131 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:26:50.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:26:50.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:26:53.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf2fb46533ae"]) - ModelState is Valid +2017-07-20 11:26:58.354 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:26:58.363 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:26:58.369 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:26:58.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8229.4096ms +2017-07-20 11:26:58.406 +05:30 [Information] Request finished in 8274.5014ms 200 application/json; charset=utf-8 +2017-07-20 11:26:58.433 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" completed keep alive response. +2017-07-20 11:27:49.639 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" received FIN. +2017-07-20 11:27:49.641 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" disconnecting. +2017-07-20 11:27:49.643 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" sending FIN. +2017-07-20 11:27:49.650 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" sent FIN with status "0". +2017-07-20 11:27:49.654 +05:30 [Debug] Connection id ""0HL6F6FSIFOK6"" stopped. +2017-07-20 11:28:41.001 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" received FIN. +2017-07-20 11:28:41.002 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" disconnecting. +2017-07-20 11:28:41.002 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" started. +2017-07-20 11:28:41.005 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" sending FIN. +2017-07-20 11:28:41.006 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" sent FIN with status "0". +2017-07-20 11:28:41.007 +05:30 [Debug] Connection id ""0HL6F6FSIFOK7"" stopped. +2017-07-20 11:28:41.009 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 11:28:41.010 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 11:28:41.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 11:28:44.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 11:28:44.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:44.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:44.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:44.749 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3707.1126ms +2017-07-20 11:28:44.752 +05:30 [Information] Request finished in 3745.1818ms 200 application/json; charset=utf-8 +2017-07-20 11:28:44.753 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" completed keep alive response. +2017-07-20 11:28:45.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:28:45.043 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:28:45.044 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:28:48.086 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:48.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:48.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:48.261 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:48.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3236.2243ms +2017-07-20 11:28:48.287 +05:30 [Information] Request finished in 3245.3823ms 200 application/json; charset=utf-8 +2017-07-20 11:28:48.289 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" completed keep alive response. +2017-07-20 11:28:48.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:28:48.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:28:48.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:28:51.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:51.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:51.500 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:51.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:51.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3143.3706ms +2017-07-20 11:28:51.515 +05:30 [Information] Request finished in 3149.9576ms 200 application/json; charset=utf-8 +2017-07-20 11:28:51.516 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" completed keep alive response. +2017-07-20 11:28:53.784 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" started. +2017-07-20 11:28:53.787 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:28:53.788 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:28:53.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:28:53.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:28:53.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:28:53.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:28:54.410 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" started. +2017-07-20 11:28:54.410 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" started. +2017-07-20 11:28:54.432 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:28:54.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:28:54.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:28:54.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:28:54.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:28:54.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:28:55.161 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" started. +2017-07-20 11:28:55.164 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:28:55.164 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:28:55.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:28:56.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:56.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:56.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:28:56.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:56.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:56.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2355.6707ms +2017-07-20 11:28:56.181 +05:30 [Information] Request finished in 2394.5811ms 200 application/json; charset=utf-8 +2017-07-20 11:28:56.181 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" completed keep alive response. +2017-07-20 11:28:57.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:57.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:57.071 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:28:57.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:57.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:57.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3281.2681ms +2017-07-20 11:28:57.078 +05:30 [Information] Request finished in 3292.3231ms 200 application/json; charset=utf-8 +2017-07-20 11:28:57.079 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" completed keep alive response. +2017-07-20 11:28:57.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:28:57.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:57.438 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:57.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:57.506 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2286.0514ms +2017-07-20 11:28:57.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:57.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:28:57.556 +05:30 [Information] Request finished in 2353.7001ms 200 application/json; charset=utf-8 +2017-07-20 11:28:57.557 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" completed keep alive response. +2017-07-20 11:28:57.917 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:57.919 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:28:57.920 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:57.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:57.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3551.3282ms +2017-07-20 11:28:57.998 +05:30 [Information] Request finished in 3585.4998ms 200 application/json; charset=utf-8 +2017-07-20 11:28:57.998 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" completed keep alive response. +2017-07-20 11:28:59.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:28:59.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:28:59.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:28:59.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:28:59.561 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5124.4498ms +2017-07-20 11:28:59.564 +05:30 [Information] Request finished in 5152.0943ms 200 application/json; charset=utf-8 +2017-07-20 11:28:59.565 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" completed keep alive response. +2017-07-20 11:30:08.199 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" received FIN. +2017-07-20 11:30:08.200 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" received FIN. +2017-07-20 11:30:08.201 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" disconnecting. +2017-07-20 11:30:08.207 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" disconnecting. +2017-07-20 11:30:08.206 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" started. +2017-07-20 11:30:08.206 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" received FIN. +2017-07-20 11:30:08.221 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" disconnecting. +2017-07-20 11:30:08.221 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" received FIN. +2017-07-20 11:30:08.218 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" sending FIN. +2017-07-20 11:30:08.223 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" received FIN. +2017-07-20 11:30:08.224 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" sending FIN. +2017-07-20 11:30:08.225 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" sending FIN. +2017-07-20 11:30:08.226 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" sent FIN with status "0". +2017-07-20 11:30:08.223 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" disconnecting. +2017-07-20 11:30:08.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:30:08.227 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" sent FIN with status "0". +2017-07-20 11:30:08.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:30:08.225 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" disconnecting. +2017-07-20 11:30:08.231 +05:30 [Debug] Connection id ""0HL6F6FSIFOK8"" stopped. +2017-07-20 11:30:08.234 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" sending FIN. +2017-07-20 11:30:08.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:30:08.228 +05:30 [Debug] Connection id ""0HL6F6FSIFOKA"" stopped. +2017-07-20 11:30:08.235 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" sending FIN. +2017-07-20 11:30:08.237 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" sent FIN with status "0". +2017-07-20 11:30:08.239 +05:30 [Debug] Connection id ""0HL6F6FSIFOK9"" stopped. +2017-07-20 11:30:08.237 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" sent FIN with status "0". +2017-07-20 11:30:08.240 +05:30 [Debug] Connection id ""0HL6F6FSIFOKC"" stopped. +2017-07-20 11:30:08.240 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" sent FIN with status "0". +2017-07-20 11:30:08.241 +05:30 [Debug] Connection id ""0HL6F6FSIFOKB"" stopped. +2017-07-20 11:30:09.004 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" started. +2017-07-20 11:30:09.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:30:09.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:30:09.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:30:11.416 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:30:11.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:11.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:11.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:11.424 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3186.6316ms +2017-07-20 11:30:11.428 +05:30 [Information] Request finished in 3208.8986ms 200 application/json; charset=utf-8 +2017-07-20 11:30:11.429 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" completed keep alive response. +2017-07-20 11:30:12.754 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:30:12.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:12.759 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:12.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:12.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3750.5081ms +2017-07-20 11:30:12.768 +05:30 [Information] Request finished in 3759.6432ms 200 application/json; charset=utf-8 +2017-07-20 11:30:12.768 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" completed keep alive response. +2017-07-20 11:30:20.532 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:30:20.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:30:20.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:30:23.574 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:30:23.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:23.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:23.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:23.730 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3191.6029ms +2017-07-20 11:30:23.737 +05:30 [Information] Request finished in 3206.3338ms 200 application/json; charset=utf-8 +2017-07-20 11:30:23.738 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" completed keep alive response. +2017-07-20 11:30:24.882 +05:30 [Debug] Connection id ""0HL6F6FSIFOKF"" started. +2017-07-20 11:30:24.889 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:30:24.890 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:30:24.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:30:24.891 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 11:30:24.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 11:30:24.894 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 11:30:24.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 11:30:24.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 11:30:24.901 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 11:30:27.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 11:30:28.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:30:28.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:30:28.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:28.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:28.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:28.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:28.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3152.6382ms +2017-07-20 11:30:28.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:28.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:30:28.080 +05:30 [Information] Request finished in 3194.6127ms 200 application/json; charset=utf-8 +2017-07-20 11:30:28.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:30:28.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:28.101 +05:30 [Debug] Connection id ""0HL6F6FSIFOKF"" completed keep alive response. +2017-07-20 11:30:28.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:30:28.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3203.9783ms +2017-07-20 11:30:28.137 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3221.7715ms +2017-07-20 11:30:28.150 +05:30 [Information] Request finished in 3261.2037ms 200 application/json; charset=utf-8 +2017-07-20 11:30:28.152 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" completed keep alive response. +2017-07-20 11:30:28.153 +05:30 [Information] Request finished in 3265.203ms 200 application/json; charset=utf-8 +2017-07-20 11:30:28.157 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" completed keep alive response. +2017-07-20 11:30:29.321 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:30:29.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:30:29.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:33:12.150 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" received FIN. +2017-07-20 11:33:12.150 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" received FIN. +2017-07-20 11:33:12.150 +05:30 [Debug] Connection id ""0HL6F6FSIFOKF"" received FIN. +2017-07-20 11:33:12.277 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" disconnecting. +2017-07-20 11:33:12.291 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" disconnecting. +2017-07-20 11:33:12.294 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:12.304 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" sending FIN. +2017-07-20 11:33:12.312 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" sending FIN. +2017-07-20 11:33:12.326 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" sent FIN with status "0". +2017-07-20 11:33:12.327 +05:30 [Debug] Connection id ""0HL6F6FSIFOKD"" stopped. +2017-07-20 11:33:12.324 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" sent FIN with status "0". +2017-07-20 11:33:12.328 +05:30 [Debug] Connection id ""0HL6F6FSIFOKE"" stopped. +2017-07-20 11:33:12.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:12.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:12.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:12.553 +05:30 [Debug] Connection id ""0HL6F6FSIFOKF"" disconnecting. +2017-07-20 11:33:12.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 163221.8506ms +2017-07-20 11:33:12.558 +05:30 [Information] Connection id ""0HL6F6FSIFOKF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-20 11:33:12.564 +05:30 [Debug] Connection id ""0HL6F6FSIFOKF"" stopped. +2017-07-20 11:33:12.578 +05:30 [Information] Request finished in 163254.4118ms 200 application/json; charset=utf-8 +2017-07-20 11:33:26.967 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" started. +2017-07-20 11:33:26.972 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:33:26.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:33:26.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:33:29.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:33:29.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:29.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:29.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:29.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2213.2879ms +2017-07-20 11:33:29.193 +05:30 [Information] Request finished in 2223.3474ms 200 application/json; charset=utf-8 +2017-07-20 11:33:29.194 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" completed keep alive response. +2017-07-20 11:33:29.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:33:29.234 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:33:29.235 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:33:32.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:33:32.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:32.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:32.281 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:32.285 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.3539ms +2017-07-20 11:33:32.288 +05:30 [Information] Request finished in 3053.7512ms 200 application/json; charset=utf-8 +2017-07-20 11:33:32.288 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" completed keep alive response. +2017-07-20 11:33:32.294 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" started. +2017-07-20 11:33:32.295 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 11:33:32.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:33:32.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 11:33:32.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 11:33:32.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:33:32.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:33:35.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:35.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:33:35.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:35.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:35.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:35.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:35.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:35.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3171.3009ms +2017-07-20 11:33:35.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:35.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3172.1716ms +2017-07-20 11:33:35.479 +05:30 [Information] Request finished in 3184.1592ms 200 application/json; charset=utf-8 +2017-07-20 11:33:35.482 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" completed keep alive response. +2017-07-20 11:33:35.484 +05:30 [Information] Request finished in 3186.1691ms 200 application/json; charset=utf-8 +2017-07-20 11:33:35.485 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" completed keep alive response. +2017-07-20 11:33:35.499 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:33:35.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:33:35.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:33:38.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:38.609 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:38.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:38.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:38.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3106.7389ms +2017-07-20 11:33:38.619 +05:30 [Information] Request finished in 3127.2827ms 200 application/json; charset=utf-8 +2017-07-20 11:33:38.620 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" completed keep alive response. +2017-07-20 11:33:40.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:33:40.145 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:33:40.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:33:40.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:33:40.148 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:33:40.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:33:40.547 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" started. +2017-07-20 11:33:40.548 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" started. +2017-07-20 11:33:40.550 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:33:40.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:33:40.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:33:40.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:33:40.552 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:33:40.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:33:41.234 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" started. +2017-07-20 11:33:41.236 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:33:41.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:33:41.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:33:42.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:42.321 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:42.322 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:33:42.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:42.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:42.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2177.7775ms +2017-07-20 11:33:42.330 +05:30 [Information] Request finished in 2206.3782ms 200 application/json; charset=utf-8 +2017-07-20 11:33:42.331 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" completed keep alive response. +2017-07-20 11:33:43.202 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:43.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:43.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:33:43.263 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:43.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:43.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3116.3581ms +2017-07-20 11:33:43.270 +05:30 [Information] Request finished in 3146.0231ms 200 application/json; charset=utf-8 +2017-07-20 11:33:43.270 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" completed keep alive response. +2017-07-20 11:33:43.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:43.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:33:43.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:43.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:33:43.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:43.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:43.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3273.2437ms +2017-07-20 11:33:43.834 +05:30 [Information] Request finished in 3283.4952ms 200 application/json; charset=utf-8 +2017-07-20 11:33:43.835 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" completed keep alive response. +2017-07-20 11:33:44.415 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:33:44.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:44.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:44.420 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:44.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3182.5985ms +2017-07-20 11:33:44.429 +05:30 [Information] Request finished in 3191.0563ms 200 application/json; charset=utf-8 +2017-07-20 11:33:44.431 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" completed keep alive response. +2017-07-20 11:33:44.441 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:33:44.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:33:44.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:33:45.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:45.095 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:33:45.095 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:45.098 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:45.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4544.8135ms +2017-07-20 11:33:45.104 +05:30 [Information] Request finished in 4552.9919ms 200 application/json; charset=utf-8 +2017-07-20 11:33:45.104 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" completed keep alive response. +2017-07-20 11:33:47.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:33:47.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:33:47.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:33:47.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:33:47.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3137.0237ms +2017-07-20 11:33:47.591 +05:30 [Information] Request finished in 3149.4719ms 200 application/json; charset=utf-8 +2017-07-20 11:33:47.591 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" completed keep alive response. +2017-07-20 11:35:49.638 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" received FIN. +2017-07-20 11:35:49.639 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" received FIN. +2017-07-20 11:35:49.639 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" disconnecting. +2017-07-20 11:35:49.638 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" received FIN. +2017-07-20 11:35:49.640 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" disconnecting. +2017-07-20 11:35:49.641 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" received FIN. +2017-07-20 11:35:49.643 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" received FIN. +2017-07-20 11:35:49.642 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" disconnecting. +2017-07-20 11:35:49.645 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" sending FIN. +2017-07-20 11:35:49.645 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" sent FIN with status "0". +2017-07-20 11:35:49.645 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" disconnecting. +2017-07-20 11:35:49.646 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" disconnecting. +2017-07-20 11:35:49.641 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" sending FIN. +2017-07-20 11:35:49.646 +05:30 [Debug] Connection id ""0HL6F6FSIFOKG"" stopped. +2017-07-20 11:35:49.647 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" sending FIN. +2017-07-20 11:35:49.648 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" sent FIN with status "0". +2017-07-20 11:35:49.649 +05:30 [Debug] Connection id ""0HL6F6FSIFOKH"" stopped. +2017-07-20 11:35:49.649 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" sent FIN with status "0". +2017-07-20 11:35:49.648 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" sending FIN. +2017-07-20 11:35:49.650 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" sending FIN. +2017-07-20 11:35:49.650 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" sent FIN with status "0". +2017-07-20 11:35:49.651 +05:30 [Debug] Connection id ""0HL6F6FSIFOKI"" stopped. +2017-07-20 11:35:49.650 +05:30 [Debug] Connection id ""0HL6F6FSIFOKJ"" stopped. +2017-07-20 11:35:49.651 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" sent FIN with status "0". +2017-07-20 11:35:49.652 +05:30 [Debug] Connection id ""0HL6F6FSIFOKK"" stopped. +2017-07-20 11:38:30.300 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" started. +2017-07-20 11:38:30.314 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:38:30.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:38:30.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:38:30.924 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" started. +2017-07-20 11:38:30.943 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:38:30.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:38:30.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:38:32.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:38:32.512 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:38:32.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:38:32.521 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:38:32.559 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2206.4411ms +2017-07-20 11:38:32.564 +05:30 [Information] Request finished in 2261.5957ms 200 application/json; charset=utf-8 +2017-07-20 11:38:32.565 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" completed keep alive response. +2017-07-20 11:38:32.607 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 11:38:32.608 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 11:38:32.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 11:38:34.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:38:34.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:38:34.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:38:34.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:38:34.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3122.7395ms +2017-07-20 11:38:34.089 +05:30 [Information] Request finished in 3163.2532ms 200 application/json; charset=utf-8 +2017-07-20 11:38:34.090 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" completed keep alive response. +2017-07-20 11:38:36.596 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 11:38:36.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 11:38:36.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 11:38:37.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["69", "8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:38:37.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 11:38:37.720 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 11:38:37.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 5112.1509ms +2017-07-20 11:38:37.728 +05:30 [Information] Request finished in 5120.2598ms 200 +2017-07-20 11:38:37.732 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" completed keep alive response. +2017-07-20 11:38:39.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf346909f709"]) - ModelState is Valid +2017-07-20 11:38:39.718 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:38:39.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:38:39.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:38:39.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3119.8979ms +2017-07-20 11:38:39.724 +05:30 [Information] Request finished in 3138.5701ms 200 application/json; charset=utf-8 +2017-07-20 11:38:39.726 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" completed keep alive response. +2017-07-20 11:39:04.034 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 11:39:04.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 11:39:04.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 11:39:06.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 11:39:06.241 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:06.242 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:06.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:06.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2206.4692ms +2017-07-20 11:39:06.254 +05:30 [Information] Request finished in 2218.9485ms 200 application/json; charset=utf-8 +2017-07-20 11:39:06.255 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" completed keep alive response. +2017-07-20 11:39:06.368 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 11:39:06.369 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 11:39:06.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 11:39:09.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:09.472 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:09.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:09.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:09.477 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3104.1ms +2017-07-20 11:39:09.486 +05:30 [Information] Request finished in 3124.3061ms 200 application/json; charset=utf-8 +2017-07-20 11:39:09.486 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" completed keep alive response. +2017-07-20 11:39:09.493 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 11:39:09.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 11:39:09.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 11:39:12.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:12.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:12.601 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:12.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:12.606 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3108.3582ms +2017-07-20 11:39:12.610 +05:30 [Information] Request finished in 3116.1701ms 200 application/json; charset=utf-8 +2017-07-20 11:39:12.611 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" completed keep alive response. +2017-07-20 11:39:14.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 11:39:14.444 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 11:39:14.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 11:39:14.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 11:39:14.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 11:39:14.444 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 11:39:15.123 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" started. +2017-07-20 11:39:15.125 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" started. +2017-07-20 11:39:15.127 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 11:39:15.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 11:39:15.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 11:39:15.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 11:39:15.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 11:39:15.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 11:39:15.881 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" started. +2017-07-20 11:39:15.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 11:39:15.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 11:39:15.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 11:39:17.651 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:17.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:17.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:17.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:39:17.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:17.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:17.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2734.7446ms +2017-07-20 11:39:17.871 +05:30 [Information] Request finished in 2743.7099ms 200 application/json; charset=utf-8 +2017-07-20 11:39:17.871 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" completed keep alive response. +2017-07-20 11:39:18.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:18.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 11:39:18.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:18.118 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:39:18.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:18.120 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:18.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3673.9072ms +2017-07-20 11:39:18.124 +05:30 [Information] Request finished in 3700.4688ms 200 application/json; charset=utf-8 +2017-07-20 11:39:18.124 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" completed keep alive response. +2017-07-20 11:39:18.125 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:18.126 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:39:18.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:18.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:18.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3682.2415ms +2017-07-20 11:39:18.133 +05:30 [Information] Request finished in 3709.3457ms 200 application/json; charset=utf-8 +2017-07-20 11:39:18.134 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" completed keep alive response. +2017-07-20 11:39:19.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 11:39:19.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:19.121 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 11:39:19.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:19.124 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:19.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3993.3362ms +2017-07-20 11:39:19.130 +05:30 [Information] Request finished in 4002.2747ms 200 application/json; charset=utf-8 +2017-07-20 11:39:19.131 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" completed keep alive response. +2017-07-20 11:39:19.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 11:39:19.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 11:39:19.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 11:39:19.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3195.5092ms +2017-07-20 11:39:19.182 +05:30 [Information] Request finished in 3211.183ms 200 application/json; charset=utf-8 +2017-07-20 11:39:19.183 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" completed keep alive response. +2017-07-20 11:41:49.638 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" received FIN. +2017-07-20 11:41:49.638 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" received FIN. +2017-07-20 11:41:49.640 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" received FIN. +2017-07-20 11:41:49.640 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" received FIN. +2017-07-20 11:41:49.640 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" disconnecting. +2017-07-20 11:41:49.644 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" received FIN. +2017-07-20 11:41:49.641 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" disconnecting. +2017-07-20 11:41:49.651 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" disconnecting. +2017-07-20 11:41:49.649 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" disconnecting. +2017-07-20 11:41:49.651 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" sending FIN. +2017-07-20 11:41:49.651 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" sending FIN. +2017-07-20 11:41:49.646 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" disconnecting. +2017-07-20 11:41:49.659 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" sending FIN. +2017-07-20 11:41:49.660 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" sending FIN. +2017-07-20 11:41:49.661 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" sent FIN with status "0". +2017-07-20 11:41:49.657 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" sending FIN. +2017-07-20 11:41:49.662 +05:30 [Debug] Connection id ""0HL6F6FSIFOKL"" stopped. +2017-07-20 11:41:49.662 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" sent FIN with status "0". +2017-07-20 11:41:49.663 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" sent FIN with status "0". +2017-07-20 11:41:49.664 +05:30 [Debug] Connection id ""0HL6F6FSIFOKP"" stopped. +2017-07-20 11:41:49.665 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" sent FIN with status "0". +2017-07-20 11:41:49.665 +05:30 [Debug] Connection id ""0HL6F6FSIFOKN"" stopped. +2017-07-20 11:41:49.663 +05:30 [Debug] Connection id ""0HL6F6FSIFOKO"" stopped. +2017-07-20 11:41:49.666 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" sent FIN with status "0". +2017-07-20 11:41:49.666 +05:30 [Debug] Connection id ""0HL6F6FSIFOKM"" stopped. +2017-07-20 12:03:45.893 +05:30 [Debug] Connection id ""0HL6F6FSIFOKQ"" started. +2017-07-20 12:03:45.895 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-20 12:03:45.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-20 12:03:45.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-20 12:03:48.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:03:48.093 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:03:48.094 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:03:48.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:03:48.096 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:03:48.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 2201.2241ms +2017-07-20 12:03:48.104 +05:30 [Information] Request finished in 2209.0446ms 200 application/json; charset=utf-8 +2017-07-20 12:03:48.104 +05:30 [Debug] Connection id ""0HL6F6FSIFOKQ"" completed keep alive response. +2017-07-20 12:04:29.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:04:29.505 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:04:29.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:04:37.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:04:37.270 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:04:37.274 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:04:37.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:04:37.283 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7772.435ms +2017-07-20 12:04:37.297 +05:30 [Information] Request finished in 7797.433ms 200 application/json; charset=utf-8 +2017-07-20 12:04:37.298 +05:30 [Debug] Connection id ""0HL6F6FSIFOKQ"" completed keep alive response. +2017-07-20 12:04:37.952 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:04:37.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:04:37.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:04:39.784 +05:30 [Debug] Connection id ""0HL6F6FSIFOKR"" started. +2017-07-20 12:04:39.786 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:04:39.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:04:39.789 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:04:40.230 +05:30 [Debug] Connection id ""0HL6F6FSIFOKS"" started. +2017-07-20 12:04:40.236 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:04:40.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:04:40.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:04:41.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:04:41.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:04:41.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:04:41.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:04:41.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3554.628ms +2017-07-20 12:04:41.511 +05:30 [Information] Request finished in 3569.1443ms 200 application/json; charset=utf-8 +2017-07-20 12:04:41.512 +05:30 [Debug] Connection id ""0HL6F6FSIFOKQ"" completed keep alive response. +2017-07-20 12:04:42.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:04:42.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:04:42.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:04:42.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:04:42.953 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3162.3574ms +2017-07-20 12:04:42.955 +05:30 [Information] Request finished in 3169.7114ms 200 application/json; charset=utf-8 +2017-07-20 12:04:42.956 +05:30 [Debug] Connection id ""0HL6F6FSIFOKR"" completed keep alive response. +2017-07-20 12:04:43.476 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:04:43.480 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:04:43.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:04:43.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:04:43.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3205.1118ms +2017-07-20 12:04:43.676 +05:30 [Information] Request finished in 3440.1917ms 200 application/json; charset=utf-8 +2017-07-20 12:04:43.678 +05:30 [Debug] Connection id ""0HL6F6FSIFOKS"" completed keep alive response. +2017-07-20 12:05:14.608 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:05:14.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:05:14.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:05:14.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:05:14.683 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:05:14.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:05:16.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:05:16.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:05:16.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:05:16.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:05:16.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2226.179ms +2017-07-20 12:05:16.839 +05:30 [Information] Request finished in 2232.0813ms 200 application/json; charset=utf-8 +2017-07-20 12:05:16.840 +05:30 [Debug] Connection id ""0HL6F6FSIFOKQ"" completed keep alive response. +2017-07-20 12:05:17.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:05:17.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:05:17.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:05:17.950 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:05:17.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3267.1007ms +2017-07-20 12:05:17.958 +05:30 [Information] Request finished in 3275.4522ms 200 application/json; charset=utf-8 +2017-07-20 12:05:17.959 +05:30 [Debug] Connection id ""0HL6F6FSIFOKR"" completed keep alive response. +2017-07-20 12:07:07.444 +05:30 [Debug] Hosting starting +2017-07-20 12:07:18.785 +05:30 [Debug] Hosting started +2017-07-20 12:07:19.345 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" started. +2017-07-20 12:07:19.345 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" started. +2017-07-20 12:07:20.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:07:20.497 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:07:20.559 +05:30 [Information] Request finished in 113.4076ms 200 +2017-07-20 12:07:21.108 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:07:21.552 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:07:22.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:07:22.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:07:22.114 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"50df6d2d-61c3-47bd-a0f6-2c749db51d77"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:07:22.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:07:22.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:07:22.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:07:22.364 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:07:22.412 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:07:22.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:07:22.435 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:07:22.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 516.9362ms +2017-07-20 12:07:22.822 +05:30 [Information] Request finished in 2385.9733ms 200 application/json; charset=utf-8 +2017-07-20 12:07:22.824 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:07:25.823 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:07:30.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:07:30.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:07:30.400 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:07:30.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8343.0398ms +2017-07-20 12:07:30.569 +05:30 [Information] Request finished in 9017.6604ms 200 application/json; charset=utf-8 +2017-07-20 12:07:30.570 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:07:50.418 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:07:50.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:07:50.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:07:53.548 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:07:53.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:07:53.590 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:07:53.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:07:53.659 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3238.0885ms +2017-07-20 12:07:53.661 +05:30 [Information] Request finished in 3250.3493ms 200 application/json; charset=utf-8 +2017-07-20 12:07:53.662 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:08:06.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:08:06.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:08:06.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:08:09.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:08:09.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:09.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:09.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:09.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.7134ms +2017-07-20 12:08:09.605 +05:30 [Information] Request finished in 3091.9117ms 200 application/json; charset=utf-8 +2017-07-20 12:08:09.607 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:08:09.789 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:08:09.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:08:09.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:08:12.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:08:12.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:12.845 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:12.846 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:12.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.2974ms +2017-07-20 12:08:12.854 +05:30 [Information] Request finished in 3065.3819ms 200 application/json; charset=utf-8 +2017-07-20 12:08:12.856 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:08:12.908 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:08:12.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:08:12.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:08:15.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:08:15.962 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:15.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:15.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:15.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3052.7381ms +2017-07-20 12:08:15.969 +05:30 [Information] Request finished in 3060.0378ms 200 application/json; charset=utf-8 +2017-07-20 12:08:15.970 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:08:15.984 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:08:15.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:08:15.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:08:19.043 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:19.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:19.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:19.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:19.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3208.4182ms +2017-07-20 12:08:19.203 +05:30 [Information] Request finished in 3222.4995ms 200 application/json; charset=utf-8 +2017-07-20 12:08:19.204 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:08:19.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:08:19.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:08:19.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:08:22.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:22.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:22.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:22.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:22.378 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3114.7299ms +2017-07-20 12:08:22.382 +05:30 [Information] Request finished in 3121.3817ms 200 application/json; charset=utf-8 +2017-07-20 12:08:22.382 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:08:24.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 12:08:24.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 12:08:24.857 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 12:08:24.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 12:08:24.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 12:08:24.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 12:08:25.401 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" started. +2017-07-20 12:08:25.401 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" started. +2017-07-20 12:08:25.403 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 12:08:25.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 12:08:25.411 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 12:08:25.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 12:08:25.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 12:08:25.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 12:08:26.221 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" started. +2017-07-20 12:08:26.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:08:26.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:08:26.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:08:28.053 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:28.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:28.107 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:08:28.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:28.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:28.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3250.1298ms +2017-07-20 12:08:28.113 +05:30 [Information] Request finished in 3257.562ms 200 application/json; charset=utf-8 +2017-07-20 12:08:28.117 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:08:28.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:28.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:28.225 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:08:28.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:28.226 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:28.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3374.1803ms +2017-07-20 12:08:28.239 +05:30 [Information] Request finished in 3383.3999ms 200 application/json; charset=utf-8 +2017-07-20 12:08:28.240 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" completed keep alive response. +2017-07-20 12:08:29.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:29.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:08:29.379 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:08:29.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:29.436 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:08:29.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:29.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:29.439 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:29.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:29.449 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:29.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3224.9074ms +2017-07-20 12:08:29.455 +05:30 [Information] Request finished in 3232.1909ms 200 application/json; charset=utf-8 +2017-07-20 12:08:29.459 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" completed keep alive response. +2017-07-20 12:08:29.481 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 12:08:29.483 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 12:08:29.485 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 12:08:29.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4090.8056ms +2017-07-20 12:08:29.526 +05:30 [Information] Request finished in 4121.593ms 200 application/json; charset=utf-8 +2017-07-20 12:08:29.527 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" completed keep alive response. +2017-07-20 12:08:31.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:31.012 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:08:31.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:31.020 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:31.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5617.7796ms +2017-07-20 12:08:31.181 +05:30 [Information] Request finished in 5776.5601ms 200 application/json; charset=utf-8 +2017-07-20 12:08:31.182 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" completed keep alive response. +2017-07-20 12:08:32.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 12:08:32.701 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:08:32.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:08:32.750 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:08:32.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3265.198ms +2017-07-20 12:08:32.759 +05:30 [Information] Request finished in 3277.7843ms 200 application/json; charset=utf-8 +2017-07-20 12:08:32.760 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" completed keep alive response. +2017-07-20 12:11:18.929 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" received FIN. +2017-07-20 12:11:18.930 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" received FIN. +2017-07-20 12:11:18.933 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" received FIN. +2017-07-20 12:11:18.933 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" disconnecting. +2017-07-20 12:11:18.939 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" disconnecting. +2017-07-20 12:11:18.942 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" disconnecting. +2017-07-20 12:11:18.942 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" sending FIN. +2017-07-20 12:11:18.938 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" received FIN. +2017-07-20 12:11:18.946 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" received FIN. +2017-07-20 12:11:18.947 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" sending FIN. +2017-07-20 12:11:18.944 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" sending FIN. +2017-07-20 12:11:18.948 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" disconnecting. +2017-07-20 12:11:18.955 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" sent FIN with status "0". +2017-07-20 12:11:18.955 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" sent FIN with status "0". +2017-07-20 12:11:18.956 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" disconnecting. +2017-07-20 12:11:18.963 +05:30 [Debug] Connection id ""0HL6F772HTA8M"" stopped. +2017-07-20 12:11:18.962 +05:30 [Debug] Connection id ""0HL6F772HTA8L"" stopped. +2017-07-20 12:11:18.965 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" sent FIN with status "0". +2017-07-20 12:11:18.966 +05:30 [Debug] Connection id ""0HL6F772HTA8N"" stopped. +2017-07-20 12:11:18.965 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" sending FIN. +2017-07-20 12:11:18.968 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" sending FIN. +2017-07-20 12:11:18.968 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" sent FIN with status "0". +2017-07-20 12:11:18.970 +05:30 [Debug] Connection id ""0HL6F772HTA8P"" stopped. +2017-07-20 12:11:18.971 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" sent FIN with status "0". +2017-07-20 12:11:18.972 +05:30 [Debug] Connection id ""0HL6F772HTA8O"" stopped. +2017-07-20 12:20:21.398 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" started. +2017-07-20 12:20:21.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-20 12:20:21.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-20 12:20:21.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-20 12:20:24.522 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:24.695 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:24.696 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:20:24.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:24.697 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:24.704 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 3298.4217ms +2017-07-20 12:20:24.706 +05:30 [Information] Request finished in 3305.9747ms 200 application/json; charset=utf-8 +2017-07-20 12:20:24.707 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:20:24.905 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:20:24.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:20:24.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:20:28.029 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:20:28.035 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:28.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:28.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:28.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3134.1398ms +2017-07-20 12:20:28.060 +05:30 [Information] Request finished in 3154.5127ms 200 application/json; charset=utf-8 +2017-07-20 12:20:28.061 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:20:28.086 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:20:28.088 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:20:28.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:20:31.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:20:31.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:31.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:31.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:31.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3042.0191ms +2017-07-20 12:20:31.137 +05:30 [Information] Request finished in 3052.2971ms 200 application/json; charset=utf-8 +2017-07-20 12:20:31.137 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:20:31.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:20:31.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:20:31.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:20:33.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:33.319 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:33.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:33.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:33.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 2176.351ms +2017-07-20 12:20:33.329 +05:30 [Information] Request finished in 2186.4863ms 200 application/json; charset=utf-8 +2017-07-20 12:20:33.330 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:20:33.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:20:33.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:20:33.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:20:36.383 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:36.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:36.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:36.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:36.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3115.5546ms +2017-07-20 12:20:36.463 +05:30 [Information] Request finished in 3123.5562ms 200 application/json; charset=utf-8 +2017-07-20 12:20:36.463 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:20:38.141 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" started. +2017-07-20 12:20:38.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 12:20:38.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 12:20:38.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 12:20:38.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 12:20:38.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 12:20:38.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 12:20:38.715 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" started. +2017-07-20 12:20:38.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Discovery/DiscoveryHistory?userId=1 0 +2017-07-20 12:20:38.717 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Discovery/DiscoveryHistory"'. +2017-07-20 12:20:38.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" +2017-07-20 12:20:40.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:40.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:40.899 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:20:40.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:40.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:40.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.DiscoveryController.DiscoveryHistory (Api.Socioboard)" in 2183.849ms +2017-07-20 12:20:40.907 +05:30 [Information] Request finished in 2189.5844ms 200 application/json; charset=utf-8 +2017-07-20 12:20:40.908 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:20:41.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:41.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:20:41.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:41.386 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:20:41.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:20:41.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:20:41.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:41.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:20:41.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:41.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:20:41.392 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3246.1411ms +2017-07-20 12:20:41.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3245.8349ms +2017-07-20 12:20:41.397 +05:30 [Information] Request finished in 3254.2238ms 200 application/json; charset=utf-8 +2017-07-20 12:20:41.398 +05:30 [Information] Request finished in 3255.7719ms 200 application/json; charset=utf-8 +2017-07-20 12:20:41.400 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" completed keep alive response. +2017-07-20 12:20:41.398 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:21:22.391 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:21:22.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:21:22.392 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:21:25.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:21:25.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:21:25.459 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:21:25.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:21:25.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.4749ms +2017-07-20 12:21:25.483 +05:30 [Information] Request finished in 3084.5114ms 200 application/json; charset=utf-8 +2017-07-20 12:21:25.483 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:21:32.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:21:32.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:21:32.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:21:35.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:21:35.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:21:35.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:21:35.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:21:35.663 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3058.4583ms +2017-07-20 12:21:35.666 +05:30 [Information] Request finished in 3069.025ms 200 application/json; charset=utf-8 +2017-07-20 12:21:35.667 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:21:50.480 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" received FIN. +2017-07-20 12:21:50.500 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" disconnecting. +2017-07-20 12:21:50.500 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" sending FIN. +2017-07-20 12:21:50.503 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" sent FIN with status "0". +2017-07-20 12:21:50.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:21:50.506 +05:30 [Debug] Connection id ""0HL6F772HTA8R"" stopped. +2017-07-20 12:21:50.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:21:50.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:21:52.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:21:52.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:21:52.738 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:21:52.740 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:21:52.745 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2150.82ms +2017-07-20 12:21:52.749 +05:30 [Information] Request finished in 2275.5343ms 200 application/json; charset=utf-8 +2017-07-20 12:21:52.750 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:21:53.117 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:21:53.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:21:53.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:21:56.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:21:56.155 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:21:56.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:21:56.157 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:21:56.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.9963ms +2017-07-20 12:21:56.162 +05:30 [Information] Request finished in 3045.7201ms 200 application/json; charset=utf-8 +2017-07-20 12:21:56.163 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:21:56.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:21:56.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:21:56.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:21:59.216 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:21:59.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:21:59.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:21:59.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:21:59.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.1958ms +2017-07-20 12:21:59.229 +05:30 [Information] Request finished in 3056.2858ms 200 application/json; charset=utf-8 +2017-07-20 12:21:59.230 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:21:59.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:21:59.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:21:59.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:22:02.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:02.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:02.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:02.355 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:02.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3118.7978ms +2017-07-20 12:22:02.362 +05:30 [Information] Request finished in 3127.4453ms 200 application/json; charset=utf-8 +2017-07-20 12:22:02.368 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:22:02.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:22:02.379 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:22:02.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:22:05.436 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:05.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:05.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:05.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:05.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.7979ms +2017-07-20 12:22:05.511 +05:30 [Information] Request finished in 3136.0848ms 200 application/json; charset=utf-8 +2017-07-20 12:22:05.511 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:22:06.967 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 12:22:06.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 12:22:06.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 12:22:06.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 12:22:06.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 12:22:06.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 12:22:07.494 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" started. +2017-07-20 12:22:07.500 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" started. +2017-07-20 12:22:07.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 12:22:07.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 12:22:07.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 12:22:07.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 12:22:07.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 12:22:07.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 12:22:08.243 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" started. +2017-07-20 12:22:08.248 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:22:08.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:22:08.249 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:22:10.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:10.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:10.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:10.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:22:10.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:10.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:10.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3199.7485ms +2017-07-20 12:22:10.175 +05:30 [Information] Request finished in 3227.0636ms 200 application/json; charset=utf-8 +2017-07-20 12:22:10.175 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:22:10.202 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:10.202 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:22:10.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:10.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:10.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3231.7479ms +2017-07-20 12:22:10.209 +05:30 [Information] Request finished in 3262.1208ms 200 application/json; charset=utf-8 +2017-07-20 12:22:10.210 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" completed keep alive response. +2017-07-20 12:22:10.607 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:10.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:22:10.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:10.837 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:22:10.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:10.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:10.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3324.694ms +2017-07-20 12:22:10.852 +05:30 [Information] Request finished in 3347.7601ms 200 application/json; charset=utf-8 +2017-07-20 12:22:10.853 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" completed keep alive response. +2017-07-20 12:22:11.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:22:11.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:11.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:11.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:11.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.2037ms +2017-07-20 12:22:11.331 +05:30 [Information] Request finished in 3082.9206ms 200 application/json; charset=utf-8 +2017-07-20 12:22:11.331 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" completed keep alive response. +2017-07-20 12:22:11.343 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 12:22:11.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 12:22:11.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 12:22:12.165 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:12.166 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:22:12.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:12.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:12.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4652.6026ms +2017-07-20 12:22:12.179 +05:30 [Information] Request finished in 4670.9749ms 200 application/json; charset=utf-8 +2017-07-20 12:22:12.179 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" completed keep alive response. +2017-07-20 12:22:13.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 12:22:13.504 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:22:13.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:22:13.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:22:13.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2163.2758ms +2017-07-20 12:22:13.515 +05:30 [Information] Request finished in 2171.6912ms 200 application/json; charset=utf-8 +2017-07-20 12:22:13.515 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" completed keep alive response. +2017-07-20 12:23:18.927 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" received FIN. +2017-07-20 12:23:18.927 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" received FIN. +2017-07-20 12:23:18.928 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" received FIN. +2017-07-20 12:23:18.929 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" received FIN. +2017-07-20 12:23:18.930 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" disconnecting. +2017-07-20 12:23:18.929 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" disconnecting. +2017-07-20 12:23:18.956 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" disconnecting. +2017-07-20 12:23:18.933 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" sending FIN. +2017-07-20 12:23:18.961 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" sending FIN. +2017-07-20 12:23:18.957 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" received FIN. +2017-07-20 12:23:18.962 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" sent FIN with status "0". +2017-07-20 12:23:18.966 +05:30 [Debug] Connection id ""0HL6F772HTA8V"" stopped. +2017-07-20 12:23:18.958 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" disconnecting. +2017-07-20 12:23:18.966 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" disconnecting. +2017-07-20 12:23:18.967 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" sent FIN with status "0". +2017-07-20 12:23:18.965 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" sending FIN. +2017-07-20 12:23:18.974 +05:30 [Debug] Connection id ""0HL6F772HTA8T"" stopped. +2017-07-20 12:23:18.979 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" sending FIN. +2017-07-20 12:23:18.985 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" sending FIN. +2017-07-20 12:23:18.986 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" sent FIN with status "0". +2017-07-20 12:23:18.987 +05:30 [Debug] Connection id ""0HL6F772HTA8Q"" stopped. +2017-07-20 12:23:18.987 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" sent FIN with status "0". +2017-07-20 12:23:18.988 +05:30 [Debug] Connection id ""0HL6F772HTA8U"" stopped. +2017-07-20 12:23:18.989 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" sent FIN with status "0". +2017-07-20 12:23:18.989 +05:30 [Debug] Connection id ""0HL6F772HTA8S"" stopped. +2017-07-20 12:24:27.831 +05:30 [Debug] Hosting starting +2017-07-20 12:24:28.031 +05:30 [Debug] Hosting started +2017-07-20 12:24:28.103 +05:30 [Debug] Connection id ""0HL6F7GL4TT37"" started. +2017-07-20 12:24:28.103 +05:30 [Debug] Connection id ""0HL6F7GL4TT36"" started. +2017-07-20 12:24:28.251 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:24:28.251 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:24:28.349 +05:30 [Information] Request finished in 93.4025ms 200 +2017-07-20 12:24:28.420 +05:30 [Debug] Connection id ""0HL6F7GL4TT37"" completed keep alive response. +2017-07-20 12:24:29.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:24:29.193 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a6ede7b1-5f2f-4c15-bc4c-0ceb29ec2809"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:24:29.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:24:29.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:24:29.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:24:29.488 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:24:29.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:24:29.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:24:29.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 542.7009ms +2017-07-20 12:24:29.946 +05:30 [Information] Request finished in 1732.3976ms 200 application/json; charset=utf-8 +2017-07-20 12:24:29.950 +05:30 [Debug] Connection id ""0HL6F7GL4TT36"" completed keep alive response. +2017-07-20 12:24:36.486 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:24:36.487 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:24:36.491 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:24:40.009 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:24:44.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:24:44.905 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:24:44.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:24:45.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8648.8559ms +2017-07-20 12:24:45.227 +05:30 [Information] Request finished in 8734.3158ms 200 application/json; charset=utf-8 +2017-07-20 12:24:45.229 +05:30 [Debug] Connection id ""0HL6F7GL4TT37"" completed keep alive response. +2017-07-20 12:25:12.611 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:25:12.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:25:12.615 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:25:14.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:25:14.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:25:14.764 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:25:14.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:25:14.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2151.8291ms +2017-07-20 12:25:14.771 +05:30 [Information] Request finished in 2178.9859ms 200 application/json; charset=utf-8 +2017-07-20 12:25:14.775 +05:30 [Debug] Connection id ""0HL6F7GL4TT36"" completed keep alive response. +2017-07-20 12:27:04.997 +05:30 [Debug] Hosting starting +2017-07-20 12:27:05.227 +05:30 [Debug] Hosting started +2017-07-20 12:27:05.276 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" started. +2017-07-20 12:27:05.276 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" started. +2017-07-20 12:27:05.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:27:05.543 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:27:05.630 +05:30 [Information] Request finished in 154.7104ms 200 +2017-07-20 12:27:05.714 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" completed keep alive response. +2017-07-20 12:27:06.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:27:06.731 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"517faf79-5891-40fa-a4ee-caeb407be159"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:27:07.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:27:07.432 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:27:07.437 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:27:07.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:27:07.505 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:27:07.513 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:27:08.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 615.8663ms +2017-07-20 12:27:08.243 +05:30 [Information] Request finished in 2780.6773ms 200 application/json; charset=utf-8 +2017-07-20 12:27:08.247 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" completed keep alive response. +2017-07-20 12:27:16.204 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:27:16.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:27:16.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:27:19.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:27:24.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:27:24.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:27:24.914 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:27:25.159 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8915.079ms +2017-07-20 12:27:25.189 +05:30 [Information] Request finished in 8990.9469ms 200 application/json; charset=utf-8 +2017-07-20 12:27:25.191 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" completed keep alive response. +2017-07-20 12:29:05.248 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" received FIN. +2017-07-20 12:29:05.248 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" received FIN. +2017-07-20 12:29:05.251 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" disconnecting. +2017-07-20 12:29:05.251 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" disconnecting. +2017-07-20 12:29:05.254 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" sending FIN. +2017-07-20 12:29:05.254 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" sending FIN. +2017-07-20 12:29:05.269 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" sent FIN with status "0". +2017-07-20 12:29:05.271 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" sent FIN with status "0". +2017-07-20 12:29:05.275 +05:30 [Debug] Connection id ""0HL6F7I3VP56T"" stopped. +2017-07-20 12:29:05.275 +05:30 [Debug] Connection id ""0HL6F7I3VP56S"" stopped. +2017-07-20 12:29:35.609 +05:30 [Debug] Hosting starting +2017-07-20 12:29:42.030 +05:30 [Debug] Connection id ""0HL6F7JIMMLL6"" started. +2017-07-20 12:29:42.047 +05:30 [Debug] Connection id ""0HL6F7JIMMLL7"" started. +2017-07-20 12:29:42.085 +05:30 [Debug] Hosting started +2017-07-20 12:29:43.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:29:43.392 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:29:43.962 +05:30 [Information] Request finished in 1099.181ms 200 +2017-07-20 12:29:46.305 +05:30 [Debug] Connection id ""0HL6F7JIMMLL6"" completed keep alive response. +2017-07-20 12:29:46.506 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:29:47.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:29:47.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:29:47.088 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"df8dfc63-9f82-4099-be77-5b9170c08c6c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:29:47.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:29:47.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:29:47.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:29:47.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:29:47.558 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:29:47.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:29:47.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:29:47.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 707.4298ms +2017-07-20 12:29:48.087 +05:30 [Information] Request finished in 5250.7234ms 200 application/json; charset=utf-8 +2017-07-20 12:29:48.089 +05:30 [Debug] Connection id ""0HL6F7JIMMLL7"" completed keep alive response. +2017-07-20 12:29:51.013 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:30:01.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:30:01.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:30:01.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:30:04.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 17074.8481ms +2017-07-20 12:30:04.340 +05:30 [Information] Request finished in 17876.6718ms 200 application/json; charset=utf-8 +2017-07-20 12:30:04.341 +05:30 [Debug] Connection id ""0HL6F7JIMMLL6"" completed keep alive response. +2017-07-20 12:31:41.746 +05:30 [Debug] Hosting starting +2017-07-20 12:31:42.107 +05:30 [Debug] Hosting started +2017-07-20 12:31:42.191 +05:30 [Debug] Connection id ""0HL6F7KMGMM91"" started. +2017-07-20 12:31:42.191 +05:30 [Debug] Connection id ""0HL6F7KMGMM92"" started. +2017-07-20 12:31:42.772 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:31:42.816 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:31:42.977 +05:30 [Information] Request finished in 253.7156ms 200 +2017-07-20 12:31:43.206 +05:30 [Debug] Connection id ""0HL6F7KMGMM92"" completed keep alive response. +2017-07-20 12:31:44.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:31:44.324 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a6ec00ad-7fff-4127-8d2c-76ae1a80cf00"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:31:55.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:31:57.114 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:31:57.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:31:57.178 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:31:57.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:31:57.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:32:00.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5276.266ms +2017-07-20 12:32:00.979 +05:30 [Information] Request finished in 18349.138ms 200 application/json; charset=utf-8 +2017-07-20 12:32:00.983 +05:30 [Debug] Connection id ""0HL6F7KMGMM91"" completed keep alive response. +2017-07-20 12:32:01.011 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:32:01.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:32:01.032 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:32:04.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:32:09.111 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:32:09.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:32:09.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:32:09.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8285.7944ms +2017-07-20 12:32:09.367 +05:30 [Information] Request finished in 8349.4151ms 200 application/json; charset=utf-8 +2017-07-20 12:32:09.368 +05:30 [Debug] Connection id ""0HL6F7KMGMM92"" completed keep alive response. +2017-07-20 12:33:19.059 +05:30 [Debug] Hosting starting +2017-07-20 12:33:19.341 +05:30 [Debug] Hosting started +2017-07-20 12:33:19.476 +05:30 [Debug] Connection id ""0HL6F7LJGE20R"" started. +2017-07-20 12:33:19.476 +05:30 [Debug] Connection id ""0HL6F7LJGE20Q"" started. +2017-07-20 12:33:19.651 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:33:19.664 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:33:19.743 +05:30 [Information] Request finished in 133.1443ms 200 +2017-07-20 12:33:19.838 +05:30 [Debug] Connection id ""0HL6F7LJGE20Q"" completed keep alive response. +2017-07-20 12:33:20.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:33:20.720 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a85349ef-5fcb-4e00-963d-bf942206de63"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:33:20.812 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:33:20.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:33:20.966 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:33:21.022 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:33:21.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:33:21.071 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:33:21.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 560.812ms +2017-07-20 12:33:21.471 +05:30 [Information] Request finished in 1879.0439ms 200 application/json; charset=utf-8 +2017-07-20 12:33:21.473 +05:30 [Debug] Connection id ""0HL6F7LJGE20R"" completed keep alive response. +2017-07-20 12:33:28.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:33:28.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:33:28.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:33:29.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:33:33.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:33:33.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:33:33.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:33:34.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5879.6643ms +2017-07-20 12:33:34.076 +05:30 [Information] Request finished in 5891.7741ms 200 application/json; charset=utf-8 +2017-07-20 12:33:34.076 +05:30 [Debug] Connection id ""0HL6F7LJGE20Q"" completed keep alive response. +2017-07-20 12:33:48.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:33:48.245 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:33:48.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:33:51.686 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:33:51.743 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:33:51.745 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:33:51.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:33:51.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3612.8122ms +2017-07-20 12:33:51.985 +05:30 [Information] Request finished in 3747.1745ms 200 application/json; charset=utf-8 +2017-07-20 12:33:51.986 +05:30 [Debug] Connection id ""0HL6F7LJGE20R"" completed keep alive response. +2017-07-20 12:33:55.359 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:33:55.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:33:55.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:43:19.823 +05:30 [Debug] Hosting starting +2017-07-20 12:43:20.420 +05:30 [Debug] Hosting started +2017-07-20 12:43:20.522 +05:30 [Debug] Connection id ""0HL6F7R6KFORF"" started. +2017-07-20 12:43:20.533 +05:30 [Debug] Connection id ""0HL6F7R6KFORG"" started. +2017-07-20 12:43:20.872 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:43:20.980 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:43:21.053 +05:30 [Information] Request finished in 256.8727ms 200 +2017-07-20 12:43:21.116 +05:30 [Debug] Connection id ""0HL6F7R6KFORG"" completed keep alive response. +2017-07-20 12:43:22.220 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:43:22.322 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2c4cbb90-14e5-48a1-874a-33e7bd1f81c6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:43:22.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:43:22.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:43:22.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:43:23.040 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:43:23.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:43:23.050 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:43:23.422 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 556.2486ms +2017-07-20 12:43:23.506 +05:30 [Information] Request finished in 2758.3938ms 200 application/json; charset=utf-8 +2017-07-20 12:43:23.509 +05:30 [Debug] Connection id ""0HL6F7R6KFORF"" completed keep alive response. +2017-07-20 12:44:45.991 +05:30 [Debug] Hosting starting +2017-07-20 12:44:46.250 +05:30 [Debug] Hosting started +2017-07-20 12:44:46.409 +05:30 [Debug] Connection id ""0HL6F7S07IM04"" started. +2017-07-20 12:44:46.418 +05:30 [Debug] Connection id ""0HL6F7S07IM05"" started. +2017-07-20 12:44:46.600 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:44:46.623 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:44:46.713 +05:30 [Information] Request finished in 134.7794ms 200 +2017-07-20 12:44:46.778 +05:30 [Debug] Connection id ""0HL6F7S07IM05"" completed keep alive response. +2017-07-20 12:44:47.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:44:48.015 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"61d0f743-b0e9-40f6-8866-d202c1cc191d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:44:48.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:44:48.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:44:48.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:44:48.439 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:44:48.452 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:44:48.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:44:48.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 579.7167ms +2017-07-20 12:44:48.893 +05:30 [Information] Request finished in 2354.0441ms 200 application/json; charset=utf-8 +2017-07-20 12:44:48.897 +05:30 [Debug] Connection id ""0HL6F7S07IM04"" completed keep alive response. +2017-07-20 12:45:10.908 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:45:10.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:45:10.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:45:14.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:45:18.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:45:18.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:45:18.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:45:18.585 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7672.3902ms +2017-07-20 12:45:18.587 +05:30 [Information] Request finished in 7678.9474ms 200 application/json; charset=utf-8 +2017-07-20 12:45:18.588 +05:30 [Debug] Connection id ""0HL6F7S07IM05"" completed keep alive response. +2017-07-20 12:48:56.212 +05:30 [Debug] Hosting starting +2017-07-20 12:48:56.906 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" started. +2017-07-20 12:48:57.005 +05:30 [Debug] Connection id ""0HL6F7UASCNOQ"" started. +2017-07-20 12:48:57.014 +05:30 [Debug] Hosting started +2017-07-20 12:48:57.167 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:48:57.188 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:48:57.301 +05:30 [Information] Request finished in 164.9414ms 200 +2017-07-20 12:48:57.415 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" completed keep alive response. +2017-07-20 12:48:58.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:48:58.350 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"063f1a1a-47d2-4067-9e66-09d5b1e3e062"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:48:58.579 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:48:58.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:48:58.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:48:58.814 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:48:58.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:48:58.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:48:59.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 565.1563ms +2017-07-20 12:48:59.261 +05:30 [Information] Request finished in 2159.9638ms 200 application/json; charset=utf-8 +2017-07-20 12:48:59.264 +05:30 [Debug] Connection id ""0HL6F7UASCNOQ"" completed keep alive response. +2017-07-20 12:49:18.437 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:49:18.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:49:18.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:49:20.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:49:24.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:49:24.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:49:24.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:49:24.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5917.2237ms +2017-07-20 12:49:24.366 +05:30 [Information] Request finished in 5927.1445ms 200 application/json; charset=utf-8 +2017-07-20 12:49:24.368 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" completed keep alive response. +2017-07-20 12:49:33.966 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:49:33.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:49:33.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:49:37.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:49:37.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:49:37.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:49:37.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:49:37.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3236.6126ms +2017-07-20 12:49:37.220 +05:30 [Information] Request finished in 3255.9043ms 200 application/json; charset=utf-8 +2017-07-20 12:49:37.220 +05:30 [Debug] Connection id ""0HL6F7UASCNOQ"" completed keep alive response. +2017-07-20 12:50:13.934 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:50:13.944 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:50:13.947 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:50:17.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:50:17.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:50:17.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:17.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:17.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3172.8198ms +2017-07-20 12:50:17.129 +05:30 [Information] Request finished in 3478.7783ms 200 application/json; charset=utf-8 +2017-07-20 12:50:17.129 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" completed keep alive response. +2017-07-20 12:50:17.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:50:17.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:50:17.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:50:20.255 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:50:20.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:50:20.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:20.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:20.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.4048ms +2017-07-20 12:50:20.274 +05:30 [Information] Request finished in 3054.2842ms 200 application/json; charset=utf-8 +2017-07-20 12:50:20.275 +05:30 [Debug] Connection id ""0HL6F7UASCNOQ"" completed keep alive response. +2017-07-20 12:50:20.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:50:20.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:50:20.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:50:21.542 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:50:21.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:50:21.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:21.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:21.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 1206.1405ms +2017-07-20 12:50:21.558 +05:30 [Information] Request finished in 1215.3922ms 200 application/json; charset=utf-8 +2017-07-20 12:50:21.559 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" completed keep alive response. +2017-07-20 12:50:21.568 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:50:21.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:50:21.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:50:24.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:50:24.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:50:24.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:24.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:24.779 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3193.8671ms +2017-07-20 12:50:24.782 +05:30 [Information] Request finished in 3214.2407ms 200 application/json; charset=utf-8 +2017-07-20 12:50:24.791 +05:30 [Debug] Connection id ""0HL6F7UASCNOQ"" completed keep alive response. +2017-07-20 12:50:24.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:50:24.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:50:24.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:50:26.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:50:27.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:50:27.094 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:27.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:27.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 2256.1172ms +2017-07-20 12:50:27.112 +05:30 [Information] Request finished in 2263.0239ms 200 application/json; charset=utf-8 +2017-07-20 12:50:27.113 +05:30 [Debug] Connection id ""0HL6F7UASCNOP"" completed keep alive response. +2017-07-20 12:50:50.267 +05:30 [Debug] Hosting starting +2017-07-20 12:50:50.567 +05:30 [Debug] Hosting started +2017-07-20 12:50:50.742 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" started. +2017-07-20 12:50:50.742 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" started. +2017-07-20 12:50:50.944 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:50:50.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:50:51.062 +05:30 [Information] Request finished in 137.9643ms 200 +2017-07-20 12:50:51.148 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:50:51.806 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:50:51.862 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"07b84d06-3353-4f7d-9d5b-a815e5d4d990"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:50:52.027 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:50:52.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:50:52.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:50:52.263 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:50:52.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:50:52.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:50:52.643 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 597.79ms +2017-07-20 12:50:52.753 +05:30 [Information] Request finished in 1873.4446ms 200 application/json; charset=utf-8 +2017-07-20 12:50:52.756 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:09.723 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:51:09.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:51:09.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:51:13.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:17.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:17.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:17.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:17.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7844.5416ms +2017-07-20 12:51:17.580 +05:30 [Information] Request finished in 7859.7701ms 200 application/json; charset=utf-8 +2017-07-20 12:51:17.581 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:17.850 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:51:17.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:51:17.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:51:20.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:51:20.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:20.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:20.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:20.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2295.2087ms +2017-07-20 12:51:20.151 +05:30 [Information] Request finished in 2301.3649ms 200 application/json; charset=utf-8 +2017-07-20 12:51:20.152 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:20.371 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:51:20.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:51:20.375 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:51:23.429 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:23.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:23.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:23.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:23.436 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.8167ms +2017-07-20 12:51:23.439 +05:30 [Information] Request finished in 3067.5051ms 200 application/json; charset=utf-8 +2017-07-20 12:51:23.439 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:23.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:51:23.476 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:51:23.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:51:25.294 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:51:25.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:51:25.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:51:26.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:26.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:26.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:26.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:26.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3268.4356ms +2017-07-20 12:51:26.765 +05:30 [Information] Request finished in 3289.9907ms 200 application/json; charset=utf-8 +2017-07-20 12:51:26.765 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:26.781 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:51:26.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:51:26.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:51:28.434 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:28.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:28.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:28.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:28.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3145.8596ms +2017-07-20 12:51:28.452 +05:30 [Information] Request finished in 3275.5466ms 200 application/json; charset=utf-8 +2017-07-20 12:51:28.454 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:34.591 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:51:34.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:51:34.598 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:51:34.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:51:34.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:34.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:34.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:34.784 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 7995.9901ms +2017-07-20 12:51:34.786 +05:30 [Information] Request finished in 8007.0312ms 200 application/json; charset=utf-8 +2017-07-20 12:51:34.787 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:34.858 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:51:34.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:51:34.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:51:36.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:36.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:36.703 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:36.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:36.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2104.4857ms +2017-07-20 12:51:36.710 +05:30 [Information] Request finished in 2122.9159ms 200 application/json; charset=utf-8 +2017-07-20 12:51:36.711 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:38.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:51:41.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:41.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:41.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:41.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6722.887ms +2017-07-20 12:51:41.603 +05:30 [Information] Request finished in 6734.8773ms 200 application/json; charset=utf-8 +2017-07-20 12:51:41.605 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:41.604 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:51:41.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:51:41.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:51:44.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:44.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:44.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:44.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:44.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3095.5856ms +2017-07-20 12:51:44.731 +05:30 [Information] Request finished in 3128.5242ms 200 application/json; charset=utf-8 +2017-07-20 12:51:44.732 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:44.747 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:51:44.748 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:51:44.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:51:47.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:51:47.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:47.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:47.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:47.829 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3074.3641ms +2017-07-20 12:51:47.833 +05:30 [Information] Request finished in 3086.5527ms 200 application/json; charset=utf-8 +2017-07-20 12:51:47.834 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:51:47.840 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:51:47.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:51:47.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:51:50.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:51:51.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:51.047 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:51.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:51.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3215.8414ms +2017-07-20 12:51:51.064 +05:30 [Information] Request finished in 3225.4199ms 200 application/json; charset=utf-8 +2017-07-20 12:51:51.065 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB6"" completed keep alive response. +2017-07-20 12:51:51.073 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:51:51.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:51:51.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:51:54.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:51:54.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:51:54.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:51:54.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:51:54.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3124.3044ms +2017-07-20 12:51:54.205 +05:30 [Information] Request finished in 3132.007ms 200 application/json; charset=utf-8 +2017-07-20 12:51:54.205 +05:30 [Debug] Connection id ""0HL6F7VCQ3KB5"" completed keep alive response. +2017-07-20 12:53:50.477 +05:30 [Debug] Hosting starting +2017-07-20 12:53:50.960 +05:30 [Debug] Connection id ""0HL6F812GO259"" started. +2017-07-20 12:53:50.960 +05:30 [Debug] Connection id ""0HL6F812GO25A"" started. +2017-07-20 12:53:51.030 +05:30 [Debug] Hosting started +2017-07-20 12:53:51.181 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 12:53:51.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 12:53:51.266 +05:30 [Information] Request finished in 124.0084ms 200 +2017-07-20 12:53:51.335 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:53:52.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 12:53:52.165 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3cc4bbe0-ebb5-409d-96b1-5839d8ed7bd6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 12:53:52.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 12:53:52.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 12:53:52.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 12:53:52.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:53:52.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:53:52.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:53:52.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 597.5861ms +2017-07-20 12:53:53.065 +05:30 [Information] Request finished in 1941.6217ms 200 application/json; charset=utf-8 +2017-07-20 12:53:53.069 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:08.025 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:54:08.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:54:08.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:54:11.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:54:17.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:17.608 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:17.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:18.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10140.9899ms +2017-07-20 12:54:18.541 +05:30 [Information] Request finished in 10421.0593ms 200 application/json; charset=utf-8 +2017-07-20 12:54:18.542 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:54:19.203 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:54:19.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:54:19.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:54:19.442 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:54:19.443 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:54:19.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:54:22.400 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:54:22.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:22.407 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:22.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:22.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3191.2513ms +2017-07-20 12:54:22.414 +05:30 [Information] Request finished in 3214.4897ms 200 application/json; charset=utf-8 +2017-07-20 12:54:22.415 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:22.420 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 12:54:22.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 12:54:22.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 12:54:22.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:54:22.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:22.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:22.727 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:22.818 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3342.4366ms +2017-07-20 12:54:22.821 +05:30 [Information] Request finished in 3379.7181ms 200 application/json; charset=utf-8 +2017-07-20 12:54:22.822 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:54:25.593 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 12:54:25.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:25.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:25.608 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:25.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3187.6291ms +2017-07-20 12:54:25.617 +05:30 [Information] Request finished in 3195.8403ms 200 application/json; charset=utf-8 +2017-07-20 12:54:25.617 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:25.721 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:54:25.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:54:25.722 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:54:28.751 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:54:28.754 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:28.754 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:28.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:28.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3033.5878ms +2017-07-20 12:54:28.763 +05:30 [Information] Request finished in 3040.908ms 200 application/json; charset=utf-8 +2017-07-20 12:54:28.764 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:54:28.797 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:54:28.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:54:28.804 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:54:31.845 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:54:31.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:31.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:31.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:31.862 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3055.2499ms +2017-07-20 12:54:31.866 +05:30 [Information] Request finished in 3068.6943ms 200 application/json; charset=utf-8 +2017-07-20 12:54:31.870 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:31.895 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:54:31.896 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:54:31.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:54:34.961 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:35.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:35.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:35.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:35.121 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3222.4654ms +2017-07-20 12:54:35.128 +05:30 [Information] Request finished in 3230.9216ms 200 application/json; charset=utf-8 +2017-07-20 12:54:35.136 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:54:35.213 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:54:35.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:54:35.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:54:38.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:38.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:38.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:38.348 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:38.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3142.6969ms +2017-07-20 12:54:38.362 +05:30 [Information] Request finished in 3149.064ms 200 application/json; charset=utf-8 +2017-07-20 12:54:38.362 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:40.911 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 12:54:40.912 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 12:54:40.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 12:54:40.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 12:54:40.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 12:54:40.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 12:54:41.684 +05:30 [Debug] Connection id ""0HL6F812GO25B"" started. +2017-07-20 12:54:41.686 +05:30 [Debug] Connection id ""0HL6F812GO25C"" started. +2017-07-20 12:54:41.715 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 12:54:41.717 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 12:54:41.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 12:54:41.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 12:54:41.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 12:54:41.762 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 12:54:42.543 +05:30 [Debug] Connection id ""0HL6F812GO25D"" started. +2017-07-20 12:54:42.545 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:54:42.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:54:42.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:54:44.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:44.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:44.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:44.487 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:54:44.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:44.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:44.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3588.3873ms +2017-07-20 12:54:44.551 +05:30 [Information] Request finished in 3641.4234ms 200 application/json; charset=utf-8 +2017-07-20 12:54:44.552 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:54:44.584 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:44.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:54:44.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:44.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:44.589 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3671.8635ms +2017-07-20 12:54:44.592 +05:30 [Information] Request finished in 3681.8541ms 200 application/json; charset=utf-8 +2017-07-20 12:54:44.592 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:54:44.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:54:44.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:44.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:44.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:44.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2112.7743ms +2017-07-20 12:54:44.663 +05:30 [Information] Request finished in 2118.5932ms 200 application/json; charset=utf-8 +2017-07-20 12:54:44.664 +05:30 [Debug] Connection id ""0HL6F812GO25D"" completed keep alive response. +2017-07-20 12:54:44.679 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 12:54:44.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 12:54:44.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 12:54:45.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:45.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:54:45.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:45.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:54:45.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:45.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:45.750 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3986.8069ms +2017-07-20 12:54:45.753 +05:30 [Information] Request finished in 4060.543ms 200 application/json; charset=utf-8 +2017-07-20 12:54:45.754 +05:30 [Debug] Connection id ""0HL6F812GO25C"" completed keep alive response. +2017-07-20 12:54:47.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:47.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:54:47.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:47.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:47.387 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5598.277ms +2017-07-20 12:54:47.390 +05:30 [Information] Request finished in 5674.6302ms 200 application/json; charset=utf-8 +2017-07-20 12:54:47.391 +05:30 [Debug] Connection id ""0HL6F812GO25B"" completed keep alive response. +2017-07-20 12:54:47.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 12:54:47.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:54:47.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:54:47.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:54:47.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3203.63ms +2017-07-20 12:54:47.896 +05:30 [Information] Request finished in 3216.5665ms 200 application/json; charset=utf-8 +2017-07-20 12:54:47.896 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:55:06.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:55:06.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:55:06.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:55:09.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:55:09.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:09.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:09.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:09.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3152.039ms +2017-07-20 12:55:09.680 +05:30 [Information] Request finished in 3180.1281ms 200 application/json; charset=utf-8 +2017-07-20 12:55:09.680 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:55:14.779 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:55:14.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:55:14.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:55:16.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:55:16.886 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:16.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:16.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:16.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2106.2086ms +2017-07-20 12:55:16.896 +05:30 [Information] Request finished in 2116.3585ms 200 application/json; charset=utf-8 +2017-07-20 12:55:16.897 +05:30 [Debug] Connection id ""0HL6F812GO25D"" completed keep alive response. +2017-07-20 12:55:16.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:55:16.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:55:16.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:55:19.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:55:19.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:19.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:19.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:19.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.3447ms +2017-07-20 12:55:19.988 +05:30 [Information] Request finished in 3050.0856ms 200 application/json; charset=utf-8 +2017-07-20 12:55:19.989 +05:30 [Debug] Connection id ""0HL6F812GO25C"" completed keep alive response. +2017-07-20 12:55:19.995 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 12:55:19.996 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 12:55:19.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 12:55:23.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:55:23.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:23.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:23.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:23.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3039.2464ms +2017-07-20 12:55:23.044 +05:30 [Information] Request finished in 3049.34ms 200 application/json; charset=utf-8 +2017-07-20 12:55:23.045 +05:30 [Debug] Connection id ""0HL6F812GO25B"" completed keep alive response. +2017-07-20 12:55:23.051 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 12:55:23.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 12:55:23.052 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 12:55:26.115 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:26.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:26.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:26.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:26.179 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3125.724ms +2017-07-20 12:55:26.183 +05:30 [Information] Request finished in 3132.0782ms 200 application/json; charset=utf-8 +2017-07-20 12:55:26.184 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:55:26.192 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-20 12:55:26.193 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-20 12:55:26.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-20 12:55:29.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:29.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:29.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:29.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:29.297 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3100.585ms +2017-07-20 12:55:29.299 +05:30 [Information] Request finished in 3107.064ms 200 application/json; charset=utf-8 +2017-07-20 12:55:29.299 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:55:30.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 12:55:30.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 12:55:30.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-20 12:55:30.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 12:55:30.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-20 12:55:30.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-20 12:55:31.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 12:55:31.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 12:55:31.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 12:55:31.104 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 12:55:31.105 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 12:55:31.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 12:55:31.707 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 12:55:31.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 12:55:31.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 12:55:33.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:33.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:33.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:33.617 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:55:33.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:33.635 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:33.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3115.5669ms +2017-07-20 12:55:33.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:33.657 +05:30 [Information] Request finished in 3125.9382ms 200 application/json; charset=utf-8 +2017-07-20 12:55:33.660 +05:30 [Debug] Connection id ""0HL6F812GO25D"" completed keep alive response. +2017-07-20 12:55:33.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:33.740 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:55:33.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:33.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:33.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3205.9825ms +2017-07-20 12:55:33.745 +05:30 [Information] Request finished in 3214.2155ms 200 application/json; charset=utf-8 +2017-07-20 12:55:33.746 +05:30 [Debug] Connection id ""0HL6F812GO25C"" completed keep alive response. +2017-07-20 12:55:34.120 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:34.121 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:55:34.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:34.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:34.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3018.1988ms +2017-07-20 12:55:34.129 +05:30 [Information] Request finished in 3026.9949ms 200 application/json; charset=utf-8 +2017-07-20 12:55:34.129 +05:30 [Debug] Connection id ""0HL6F812GO25B"" completed keep alive response. +2017-07-20 12:55:34.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 12:55:34.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:34.426 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 12:55:34.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:34.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:34.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3324.2798ms +2017-07-20 12:55:34.432 +05:30 [Information] Request finished in 3330.6936ms 200 application/json; charset=utf-8 +2017-07-20 12:55:34.433 +05:30 [Debug] Connection id ""0HL6F812GO259"" completed keep alive response. +2017-07-20 12:55:34.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 12:55:34.780 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:34.781 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:34.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:34.785 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3075.0561ms +2017-07-20 12:55:34.787 +05:30 [Information] Request finished in 3080.3303ms 200 application/json; charset=utf-8 +2017-07-20 12:55:34.788 +05:30 [Debug] Connection id ""0HL6F812GO25A"" completed keep alive response. +2017-07-20 12:55:34.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 12:55:34.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 12:55:34.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 12:55:37.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 12:55:38.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 12:55:38.177 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 12:55:38.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 12:55:38.179 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3375.4033ms +2017-07-20 12:55:38.181 +05:30 [Information] Request finished in 3381.2152ms 200 application/json; charset=utf-8 +2017-07-20 12:55:38.182 +05:30 [Debug] Connection id ""0HL6F812GO25D"" completed keep alive response. +2017-07-20 12:57:50.929 +05:30 [Debug] Connection id ""0HL6F812GO25B"" received FIN. +2017-07-20 12:57:50.929 +05:30 [Debug] Connection id ""0HL6F812GO25A"" received FIN. +2017-07-20 12:57:50.929 +05:30 [Debug] Connection id ""0HL6F812GO25D"" received FIN. +2017-07-20 12:57:50.930 +05:30 [Debug] Connection id ""0HL6F812GO25B"" disconnecting. +2017-07-20 12:57:50.934 +05:30 [Debug] Connection id ""0HL6F812GO25A"" disconnecting. +2017-07-20 12:57:50.930 +05:30 [Debug] Connection id ""0HL6F812GO25C"" received FIN. +2017-07-20 12:57:50.935 +05:30 [Debug] Connection id ""0HL6F812GO25D"" disconnecting. +2017-07-20 12:57:50.937 +05:30 [Debug] Connection id ""0HL6F812GO259"" received FIN. +2017-07-20 12:57:50.938 +05:30 [Debug] Connection id ""0HL6F812GO259"" disconnecting. +2017-07-20 12:57:50.938 +05:30 [Debug] Connection id ""0HL6F812GO259"" sending FIN. +2017-07-20 12:57:50.935 +05:30 [Debug] Connection id ""0HL6F812GO25B"" sending FIN. +2017-07-20 12:57:50.940 +05:30 [Debug] Connection id ""0HL6F812GO25A"" sending FIN. +2017-07-20 12:57:50.937 +05:30 [Debug] Connection id ""0HL6F812GO25C"" disconnecting. +2017-07-20 12:57:50.946 +05:30 [Debug] Connection id ""0HL6F812GO25D"" sending FIN. +2017-07-20 12:57:50.948 +05:30 [Debug] Connection id ""0HL6F812GO259"" sent FIN with status "0". +2017-07-20 12:57:50.948 +05:30 [Debug] Connection id ""0HL6F812GO25D"" sent FIN with status "0". +2017-07-20 12:57:50.951 +05:30 [Debug] Connection id ""0HL6F812GO25D"" stopped. +2017-07-20 12:57:50.951 +05:30 [Debug] Connection id ""0HL6F812GO25A"" sent FIN with status "0". +2017-07-20 12:57:50.952 +05:30 [Debug] Connection id ""0HL6F812GO25A"" stopped. +2017-07-20 12:57:50.953 +05:30 [Debug] Connection id ""0HL6F812GO25B"" sent FIN with status "0". +2017-07-20 12:57:50.954 +05:30 [Debug] Connection id ""0HL6F812GO25B"" stopped. +2017-07-20 12:57:50.950 +05:30 [Debug] Connection id ""0HL6F812GO259"" stopped. +2017-07-20 12:57:50.956 +05:30 [Debug] Connection id ""0HL6F812GO25C"" sending FIN. +2017-07-20 12:57:50.956 +05:30 [Debug] Connection id ""0HL6F812GO25C"" sent FIN with status "0". +2017-07-20 12:57:50.957 +05:30 [Debug] Connection id ""0HL6F812GO25C"" stopped. +2017-07-20 13:03:48.809 +05:30 [Debug] Hosting starting +2017-07-20 13:03:49.225 +05:30 [Debug] Hosting started +2017-07-20 13:03:49.351 +05:30 [Debug] Connection id ""0HL6F86KRFFP0"" started. +2017-07-20 13:03:49.351 +05:30 [Debug] Connection id ""0HL6F86KRFFOV"" started. +2017-07-20 13:03:49.562 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 13:03:49.562 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 13:03:49.644 +05:30 [Information] Request finished in 128.3024ms 200 +2017-07-20 13:03:49.722 +05:30 [Debug] Connection id ""0HL6F86KRFFOV"" completed keep alive response. +2017-07-20 13:03:50.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 13:03:50.583 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"497b6ce9-0dd8-4fa8-93e9-0b71aabe049b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 13:03:51.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 13:03:51.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 13:03:51.327 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 13:03:51.381 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 13:03:51.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:03:51.391 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:03:51.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 481.9387ms +2017-07-20 13:03:51.794 +05:30 [Information] Request finished in 2295.3411ms 200 application/json; charset=utf-8 +2017-07-20 13:03:51.798 +05:30 [Debug] Connection id ""0HL6F86KRFFP0"" completed keep alive response. +2017-07-20 13:04:07.757 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:04:07.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:04:07.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:04:11.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:04:15.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:04:15.502 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:04:15.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:04:15.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7871.7836ms +2017-07-20 13:04:15.640 +05:30 [Information] Request finished in 7882.6198ms 200 application/json; charset=utf-8 +2017-07-20 13:04:15.641 +05:30 [Debug] Connection id ""0HL6F86KRFFOV"" completed keep alive response. +2017-07-20 13:04:15.952 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 13:04:15.953 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 13:04:15.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 13:04:19.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:04:19.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:04:19.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:04:19.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:04:19.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3222.6343ms +2017-07-20 13:04:19.180 +05:30 [Information] Request finished in 3229.5602ms 200 application/json; charset=utf-8 +2017-07-20 13:04:19.182 +05:30 [Debug] Connection id ""0HL6F86KRFFP0"" completed keep alive response. +2017-07-20 13:04:19.349 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:04:19.350 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:04:19.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:04:22.381 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:04:22.384 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:04:22.385 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:04:22.386 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:04:22.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3034.9736ms +2017-07-20 13:04:22.390 +05:30 [Information] Request finished in 3041.5099ms 200 application/json; charset=utf-8 +2017-07-20 13:04:22.391 +05:30 [Debug] Connection id ""0HL6F86KRFFOV"" completed keep alive response. +2017-07-20 13:04:27.360 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 13:04:27.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 13:04:27.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 13:04:30.418 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:04:30.426 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:04:30.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:04:30.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:04:30.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.1552ms +2017-07-20 13:04:30.435 +05:30 [Information] Request finished in 3074.8594ms 200 application/json; charset=utf-8 +2017-07-20 13:04:30.436 +05:30 [Debug] Connection id ""0HL6F86KRFFP0"" completed keep alive response. +2017-07-20 13:04:36.007 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 13:04:36.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 13:04:36.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 13:04:39.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 13:08:41.928 +05:30 [Debug] Hosting starting +2017-07-20 13:08:42.276 +05:30 [Debug] Hosting started +2017-07-20 13:08:42.325 +05:30 [Debug] Connection id ""0HL6F89C5FVK2"" started. +2017-07-20 13:08:42.325 +05:30 [Debug] Connection id ""0HL6F89C5FVK3"" started. +2017-07-20 13:08:42.549 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 13:08:42.549 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 13:08:42.643 +05:30 [Information] Request finished in 167.9369ms 200 +2017-07-20 13:08:42.724 +05:30 [Debug] Connection id ""0HL6F89C5FVK3"" completed keep alive response. +2017-07-20 13:08:43.409 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 13:08:43.461 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3c17827f-ff69-4d08-b913-e9c9bfab0157"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 13:08:43.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 13:08:43.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 13:08:43.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 13:08:43.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 13:08:43.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:08:43.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:08:44.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 515.5712ms +2017-07-20 13:08:44.331 +05:30 [Information] Request finished in 1870.7497ms 200 application/json; charset=utf-8 +2017-07-20 13:08:44.336 +05:30 [Debug] Connection id ""0HL6F89C5FVK2"" completed keep alive response. +2017-07-20 13:08:56.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:08:56.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:08:56.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:09:00.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:09:04.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:09:04.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:09:04.675 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:09:04.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7985.2535ms +2017-07-20 13:09:04.811 +05:30 [Information] Request finished in 7998.0205ms 200 application/json; charset=utf-8 +2017-07-20 13:09:04.811 +05:30 [Debug] Connection id ""0HL6F89C5FVK3"" completed keep alive response. +2017-07-20 13:09:05.027 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 13:09:05.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 13:09:05.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 13:09:08.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:09:08.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:09:08.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:09:08.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:09:08.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3218.5466ms +2017-07-20 13:09:08.258 +05:30 [Information] Request finished in 3230.6696ms 200 application/json; charset=utf-8 +2017-07-20 13:09:08.259 +05:30 [Debug] Connection id ""0HL6F89C5FVK2"" completed keep alive response. +2017-07-20 13:09:08.421 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:09:08.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:09:08.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:09:11.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:09:11.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:09:11.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:09:11.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:09:11.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.3697ms +2017-07-20 13:09:11.491 +05:30 [Information] Request finished in 3069.8868ms 200 application/json; charset=utf-8 +2017-07-20 13:09:11.492 +05:30 [Debug] Connection id ""0HL6F89C5FVK3"" completed keep alive response. +2017-07-20 13:09:16.108 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 13:09:16.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 13:09:16.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 13:09:18.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:09:18.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:09:18.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:09:18.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:09:18.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2104.2976ms +2017-07-20 13:09:18.222 +05:30 [Information] Request finished in 2115.346ms 200 application/json; charset=utf-8 +2017-07-20 13:09:18.223 +05:30 [Debug] Connection id ""0HL6F89C5FVK2"" completed keep alive response. +2017-07-20 13:09:18.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 13:09:18.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 13:09:18.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 13:09:21.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 13:29:26.077 +05:30 [Debug] Hosting starting +2017-07-20 13:29:26.322 +05:30 [Debug] Hosting started +2017-07-20 13:29:26.537 +05:30 [Debug] Connection id ""0HL6F8KUV8TS7"" started. +2017-07-20 13:29:26.537 +05:30 [Debug] Connection id ""0HL6F8KUV8TS6"" started. +2017-07-20 13:29:26.779 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 13:29:26.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 13:29:26.880 +05:30 [Information] Request finished in 165.4671ms 200 +2017-07-20 13:29:26.946 +05:30 [Debug] Connection id ""0HL6F8KUV8TS7"" completed keep alive response. +2017-07-20 13:29:27.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 13:29:27.697 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b263de1d-09e4-4e9d-9bc5-19cbb4631940"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 13:29:27.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 13:29:28.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 13:29:28.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 13:29:28.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 13:29:28.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:29:28.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:29:28.514 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 524.4879ms +2017-07-20 13:29:28.660 +05:30 [Information] Request finished in 1965.7602ms 200 application/json; charset=utf-8 +2017-07-20 13:29:28.663 +05:30 [Debug] Connection id ""0HL6F8KUV8TS6"" completed keep alive response. +2017-07-20 13:29:42.877 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:29:42.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:29:42.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:29:45.371 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:29:49.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:29:49.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:29:49.992 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:29:50.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7245.7941ms +2017-07-20 13:29:50.135 +05:30 [Information] Request finished in 7257.2127ms 200 application/json; charset=utf-8 +2017-07-20 13:29:50.136 +05:30 [Debug] Connection id ""0HL6F8KUV8TS7"" completed keep alive response. +2017-07-20 13:29:50.481 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 13:29:50.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 13:29:50.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 13:29:53.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:29:53.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:29:53.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:29:53.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:29:54.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3549.0263ms +2017-07-20 13:29:54.038 +05:30 [Information] Request finished in 3556.9865ms 200 application/json; charset=utf-8 +2017-07-20 13:29:54.039 +05:30 [Debug] Connection id ""0HL6F8KUV8TS6"" completed keep alive response. +2017-07-20 13:29:55.093 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 13:29:55.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 13:29:55.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 13:29:58.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:29:58.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:29:58.404 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:29:58.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:29:58.408 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3301.6711ms +2017-07-20 13:29:58.422 +05:30 [Information] Request finished in 3329.2435ms 200 application/json; charset=utf-8 +2017-07-20 13:29:58.423 +05:30 [Debug] Connection id ""0HL6F8KUV8TS7"" completed keep alive response. +2017-07-20 13:29:58.577 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:29:58.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:29:58.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:30:00.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:30:00.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:30:00.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:30:00.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:30:00.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2094.7761ms +2017-07-20 13:30:00.689 +05:30 [Information] Request finished in 2120.2247ms 200 application/json; charset=utf-8 +2017-07-20 13:30:00.691 +05:30 [Debug] Connection id ""0HL6F8KUV8TS6"" completed keep alive response. +2017-07-20 13:30:02.208 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 13:30:02.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 13:30:02.211 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 13:30:05.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:30:05.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:30:05.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:30:05.273 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:30:05.275 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3062.4311ms +2017-07-20 13:30:05.281 +05:30 [Information] Request finished in 3078.1241ms 200 application/json; charset=utf-8 +2017-07-20 13:30:05.282 +05:30 [Debug] Connection id ""0HL6F8KUV8TS7"" completed keep alive response. +2017-07-20 13:30:05.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 13:30:05.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 13:30:05.300 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 13:30:08.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 13:42:59.263 +05:30 [Debug] Hosting starting +2017-07-20 13:42:59.605 +05:30 [Debug] Hosting started +2017-07-20 13:42:59.753 +05:30 [Debug] Connection id ""0HL6F8SHAM9RI"" started. +2017-07-20 13:42:59.753 +05:30 [Debug] Connection id ""0HL6F8SHAM9RJ"" started. +2017-07-20 13:42:59.963 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 13:42:59.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 13:43:00.062 +05:30 [Information] Request finished in 146.3661ms 200 +2017-07-20 13:43:00.159 +05:30 [Debug] Connection id ""0HL6F8SHAM9RJ"" completed keep alive response. +2017-07-20 13:43:00.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 13:43:00.825 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1f39a303-98c6-435b-a59c-c44b905180c3"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 13:43:01.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 13:43:01.253 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 13:43:01.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 13:43:01.307 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 13:43:01.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:43:01.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:43:01.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 554.8942ms +2017-07-20 13:43:01.880 +05:30 [Information] Request finished in 1985.5392ms 200 application/json; charset=utf-8 +2017-07-20 13:43:01.886 +05:30 [Debug] Connection id ""0HL6F8SHAM9RI"" completed keep alive response. +2017-07-20 13:43:16.593 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:43:16.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:43:16.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:43:20.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:43:24.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 13:43:24.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 13:43:24.346 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 13:43:25.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:43:25.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:43:25.881 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:43:26.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9409.8483ms +2017-07-20 13:43:26.031 +05:30 [Information] Request finished in 9446.9845ms 200 application/json; charset=utf-8 +2017-07-20 13:43:26.032 +05:30 [Debug] Connection id ""0HL6F8SHAM9RJ"" completed keep alive response. +2017-07-20 13:43:26.252 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 13:43:26.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 13:43:26.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 13:43:27.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:43:27.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:43:27.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:43:27.782 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:43:27.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3466.4123ms +2017-07-20 13:43:27.819 +05:30 [Information] Request finished in 3476.5552ms 200 application/json; charset=utf-8 +2017-07-20 13:43:27.819 +05:30 [Debug] Connection id ""0HL6F8SHAM9RI"" completed keep alive response. +2017-07-20 13:43:29.542 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 13:43:29.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 13:43:29.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 13:43:29.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:43:29.634 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:43:29.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:43:29.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:43:29.643 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3387.6095ms +2017-07-20 13:43:29.647 +05:30 [Information] Request finished in 3394.2136ms 200 application/json; charset=utf-8 +2017-07-20 13:43:29.650 +05:30 [Debug] Connection id ""0HL6F8SHAM9RJ"" completed keep alive response. +2017-07-20 13:43:32.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 13:49:36.945 +05:30 [Debug] Hosting starting +2017-07-20 13:49:37.165 +05:30 [Debug] Hosting started +2017-07-20 13:49:37.357 +05:30 [Debug] Connection id ""0HL6F907QI86D"" started. +2017-07-20 13:49:37.357 +05:30 [Debug] Connection id ""0HL6F907QI86C"" started. +2017-07-20 13:49:37.591 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 13:49:37.591 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 13:49:37.660 +05:30 [Information] Request finished in 104.0586ms 200 +2017-07-20 13:49:37.718 +05:30 [Debug] Connection id ""0HL6F907QI86C"" completed keep alive response. +2017-07-20 13:49:38.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 13:49:38.578 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3b14cd57-7c70-499d-8047-aade016d2119"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 13:49:38.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 13:49:38.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 13:49:38.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 13:49:38.947 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 13:49:38.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:49:38.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:49:39.257 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 499.92ms +2017-07-20 13:49:39.372 +05:30 [Information] Request finished in 1830.9152ms 200 application/json; charset=utf-8 +2017-07-20 13:49:39.375 +05:30 [Debug] Connection id ""0HL6F907QI86D"" completed keep alive response. +2017-07-20 13:49:52.186 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:49:52.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:49:52.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:49:55.695 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:50:00.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:50:00.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:50:00.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:50:00.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8325.467ms +2017-07-20 13:50:00.524 +05:30 [Information] Request finished in 8337.696ms 200 application/json; charset=utf-8 +2017-07-20 13:50:00.524 +05:30 [Debug] Connection id ""0HL6F907QI86C"" completed keep alive response. +2017-07-20 13:50:00.799 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 13:50:00.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 13:50:00.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 13:50:03.867 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 13:50:03.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 13:50:03.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 13:50:03.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:50:04.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:50:04.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:50:04.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:50:04.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3274.2865ms +2017-07-20 13:50:04.086 +05:30 [Information] Request finished in 3288.8214ms 200 application/json; charset=utf-8 +2017-07-20 13:50:04.087 +05:30 [Debug] Connection id ""0HL6F907QI86D"" completed keep alive response. +2017-07-20 13:50:06.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 13:50:07.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:50:07.168 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:50:07.170 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:50:07.171 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3301.6894ms +2017-07-20 13:50:07.174 +05:30 [Information] Request finished in 3307.686ms 200 application/json; charset=utf-8 +2017-07-20 13:50:07.175 +05:30 [Debug] Connection id ""0HL6F907QI86C"" completed keep alive response. +2017-07-20 13:50:07.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 13:50:07.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 13:50:07.287 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 13:50:10.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:50:10.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:50:10.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:50:10.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:50:10.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.6298ms +2017-07-20 13:50:10.331 +05:30 [Information] Request finished in 3051.192ms 200 application/json; charset=utf-8 +2017-07-20 13:50:10.333 +05:30 [Debug] Connection id ""0HL6F907QI86D"" completed keep alive response. +2017-07-20 13:50:11.651 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 13:50:11.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 13:50:11.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 13:50:14.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 13:50:14.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 13:50:14.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 13:50:14.711 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 13:50:14.713 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.4027ms +2017-07-20 13:50:14.717 +05:30 [Information] Request finished in 3074.7333ms 200 application/json; charset=utf-8 +2017-07-20 13:50:14.718 +05:30 [Debug] Connection id ""0HL6F907QI86C"" completed keep alive response. +2017-07-20 13:50:14.729 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 13:50:14.730 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 13:50:14.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 13:50:17.783 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 15:29:14.518 +05:30 [Debug] Hosting starting +2017-07-20 15:29:14.791 +05:30 [Debug] Hosting started +2017-07-20 15:29:14.908 +05:30 [Debug] Connection id ""0HL6FANT8US61"" started. +2017-07-20 15:29:14.912 +05:30 [Debug] Connection id ""0HL6FANT8US62"" started. +2017-07-20 15:29:15.175 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 15:29:15.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 15:29:15.256 +05:30 [Information] Request finished in 121.9233ms 200 +2017-07-20 15:29:15.346 +05:30 [Debug] Connection id ""0HL6FANT8US62"" completed keep alive response. +2017-07-20 15:29:16.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 15:29:16.727 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bf3dd58b-5ce1-4d0e-bd23-7ee441122407"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 15:29:16.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 15:29:17.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 15:29:17.027 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 15:29:17.091 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 15:29:17.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:29:17.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:29:18.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1382.9436ms +2017-07-20 15:29:18.395 +05:30 [Information] Request finished in 3277.8755ms 200 application/json; charset=utf-8 +2017-07-20 15:29:18.397 +05:30 [Debug] Connection id ""0HL6FANT8US61"" completed keep alive response. +2017-07-20 15:29:18.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-20 15:29:18.417 +05:30 [Debug] Request did not match any routes. +2017-07-20 15:29:18.433 +05:30 [Debug] The request path "" does not match the path filter +2017-07-20 15:29:18.436 +05:30 [Information] Request finished in 21.0488ms 404 +2017-07-20 15:29:18.436 +05:30 [Debug] Connection id ""0HL6FANT8US62"" completed keep alive response. +2017-07-20 15:31:14.218 +05:30 [Debug] Connection id ""0HL6FANT8US61"" received FIN. +2017-07-20 15:31:14.219 +05:30 [Debug] Connection id ""0HL6FANT8US63"" started. +2017-07-20 15:31:14.220 +05:30 [Debug] Connection id ""0HL6FANT8US61"" disconnecting. +2017-07-20 15:31:14.223 +05:30 [Debug] Connection id ""0HL6FANT8US62"" received FIN. +2017-07-20 15:31:14.223 +05:30 [Debug] Connection id ""0HL6FANT8US61"" sending FIN. +2017-07-20 15:31:14.223 +05:30 [Debug] Connection id ""0HL6FANT8US62"" disconnecting. +2017-07-20 15:31:14.225 +05:30 [Debug] Connection id ""0HL6FANT8US62"" sending FIN. +2017-07-20 15:31:14.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 15:31:14.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 15:31:14.236 +05:30 [Debug] Connection id ""0HL6FANT8US61"" sent FIN with status "0". +2017-07-20 15:31:14.238 +05:30 [Debug] Connection id ""0HL6FANT8US61"" stopped. +2017-07-20 15:31:14.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 15:31:14.239 +05:30 [Debug] Connection id ""0HL6FANT8US62"" sent FIN with status "0". +2017-07-20 15:31:14.252 +05:30 [Debug] Connection id ""0HL6FANT8US62"" stopped. +2017-07-20 15:31:17.913 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:31:24.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:31:24.683 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:31:24.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:31:24.810 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10568.2535ms +2017-07-20 15:31:24.818 +05:30 [Information] Request finished in 10592.1376ms 200 application/json; charset=utf-8 +2017-07-20 15:31:24.819 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:31:25.069 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 15:31:25.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 15:31:25.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 15:31:28.699 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 15:31:28.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:31:28.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:31:28.798 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:31:28.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3793.8799ms +2017-07-20 15:31:28.870 +05:30 [Information] Request finished in 3800.6933ms 200 application/json; charset=utf-8 +2017-07-20 15:31:28.871 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:31:29.652 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 15:31:29.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 15:31:29.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 15:31:32.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 15:31:33.002 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:31:33.003 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:31:33.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:31:33.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3350.6485ms +2017-07-20 15:31:33.009 +05:30 [Information] Request finished in 3371.1057ms 200 application/json; charset=utf-8 +2017-07-20 15:31:33.010 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:31:33.126 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 15:31:33.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 15:31:33.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 15:31:36.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:31:36.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:31:36.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:31:36.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:31:36.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.1022ms +2017-07-20 15:31:36.170 +05:30 [Information] Request finished in 3043.8993ms 200 application/json; charset=utf-8 +2017-07-20 15:31:36.170 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:31:57.215 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 15:31:57.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 15:31:57.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 15:31:59.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:31:59.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:31:59.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:31:59.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:31:59.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2139.5684ms +2017-07-20 15:31:59.375 +05:30 [Information] Request finished in 2159.0275ms 200 application/json; charset=utf-8 +2017-07-20 15:31:59.376 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:32:04.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 15:32:04.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 15:32:04.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 15:32:06.979 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 15:32:45.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:32:45.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:32:45.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:32:46.969 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 42121.956ms +2017-07-20 15:32:46.974 +05:30 [Information] Request finished in 42142.1137ms 200 application/json; charset=utf-8 +2017-07-20 15:32:46.976 +05:30 [Debug] Connection id ""0HL6FANT8US63"" completed keep alive response. +2017-07-20 15:35:14.885 +05:30 [Debug] Connection id ""0HL6FANT8US63"" received FIN. +2017-07-20 15:35:14.886 +05:30 [Debug] Connection id ""0HL6FANT8US63"" disconnecting. +2017-07-20 15:35:14.887 +05:30 [Debug] Connection id ""0HL6FANT8US63"" sending FIN. +2017-07-20 15:35:14.889 +05:30 [Debug] Connection id ""0HL6FANT8US63"" sent FIN with status "0". +2017-07-20 15:35:14.890 +05:30 [Debug] Connection id ""0HL6FANT8US63"" stopped. +2017-07-20 15:47:39.848 +05:30 [Debug] Hosting starting +2017-07-20 15:47:40.080 +05:30 [Debug] Hosting started +2017-07-20 15:47:40.265 +05:30 [Debug] Connection id ""0HL6FB26MDJFJ"" started. +2017-07-20 15:47:40.265 +05:30 [Debug] Connection id ""0HL6FB26MDJFK"" started. +2017-07-20 15:47:40.483 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 15:47:40.483 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 15:47:40.560 +05:30 [Information] Request finished in 120.1266ms 200 +2017-07-20 15:47:40.628 +05:30 [Debug] Connection id ""0HL6FB26MDJFK"" completed keep alive response. +2017-07-20 15:47:41.537 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 15:47:41.615 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"5afa82ee-8c32-44b4-b4b8-ad436d4abe26"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 15:47:41.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 15:47:41.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 15:47:41.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 15:47:42.016 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 15:47:42.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:47:42.025 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:47:42.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 536.0746ms +2017-07-20 15:47:42.501 +05:30 [Information] Request finished in 2074.5282ms 200 application/json; charset=utf-8 +2017-07-20 15:47:42.504 +05:30 [Debug] Connection id ""0HL6FB26MDJFJ"" completed keep alive response. +2017-07-20 15:47:56.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 15:47:56.152 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 15:47:56.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 15:47:59.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:48:01.617 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 15:48:01.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 15:48:01.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 15:48:04.847 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 15:48:05.309 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:48:05.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:48:05.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:48:05.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9401.7492ms +2017-07-20 15:48:05.570 +05:30 [Information] Request finished in 9417.685ms 200 application/json; charset=utf-8 +2017-07-20 15:48:05.574 +05:30 [Debug] Connection id ""0HL6FB26MDJFK"" completed keep alive response. +2017-07-20 15:48:05.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:48:05.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:48:05.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:48:05.873 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 15:48:05.874 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 15:48:05.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 15:48:05.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4250.3312ms +2017-07-20 15:48:05.882 +05:30 [Information] Request finished in 4266.9302ms 200 application/json; charset=utf-8 +2017-07-20 15:48:05.883 +05:30 [Debug] Connection id ""0HL6FB26MDJFJ"" completed keep alive response. +2017-07-20 15:48:07.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 15:48:07.415 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 15:48:07.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 15:48:09.449 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 15:48:09.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:48:09.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:48:09.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:48:09.464 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3582.6704ms +2017-07-20 15:48:09.467 +05:30 [Information] Request finished in 3594.0382ms 200 application/json; charset=utf-8 +2017-07-20 15:48:09.468 +05:30 [Debug] Connection id ""0HL6FB26MDJFK"" completed keep alive response. +2017-07-20 15:48:10.498 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 15:51:59.857 +05:30 [Debug] Hosting starting +2017-07-20 15:52:00.147 +05:30 [Debug] Hosting started +2017-07-20 15:52:00.181 +05:30 [Debug] Connection id ""0HL6FB4K550QQ"" started. +2017-07-20 15:52:00.181 +05:30 [Debug] Connection id ""0HL6FB4K550QP"" started. +2017-07-20 15:52:00.558 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 15:52:00.558 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 15:52:00.700 +05:30 [Information] Request finished in 213.0571ms 200 +2017-07-20 15:52:00.882 +05:30 [Debug] Connection id ""0HL6FB4K550QP"" completed keep alive response. +2017-07-20 15:52:01.800 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 15:52:01.850 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2ef50785-0daf-469d-be6d-ff1db4250594"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 15:52:02.046 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 15:52:02.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 15:52:02.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 15:52:02.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 15:52:02.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:02.311 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:02.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 608.4433ms +2017-07-20 15:52:02.754 +05:30 [Information] Request finished in 2332.7345ms 200 application/json; charset=utf-8 +2017-07-20 15:52:02.757 +05:30 [Debug] Connection id ""0HL6FB4K550QQ"" completed keep alive response. +2017-07-20 15:52:16.911 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 15:52:16.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 15:52:16.914 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 15:52:20.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:52:23.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:52:23.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:23.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:24.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7190.105ms +2017-07-20 15:52:24.109 +05:30 [Information] Request finished in 7198.0926ms 200 application/json; charset=utf-8 +2017-07-20 15:52:24.110 +05:30 [Debug] Connection id ""0HL6FB4K550QP"" completed keep alive response. +2017-07-20 15:52:24.388 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 15:52:24.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 15:52:24.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 15:52:26.587 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 15:52:26.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:52:26.639 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:26.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:26.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2300.2066ms +2017-07-20 15:52:26.705 +05:30 [Information] Request finished in 2317.4485ms 200 application/json; charset=utf-8 +2017-07-20 15:52:26.706 +05:30 [Debug] Connection id ""0HL6FB4K550QQ"" completed keep alive response. +2017-07-20 15:52:26.919 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 15:52:26.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 15:52:26.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 15:52:29.973 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:52:29.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:52:29.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:29.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:29.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.7412ms +2017-07-20 15:52:29.985 +05:30 [Information] Request finished in 3065.4818ms 200 application/json; charset=utf-8 +2017-07-20 15:52:29.986 +05:30 [Debug] Connection id ""0HL6FB4K550QP"" completed keep alive response. +2017-07-20 15:52:31.740 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 15:52:31.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 15:52:31.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 15:52:34.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 15:52:34.795 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:52:34.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:34.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:34.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.9131ms +2017-07-20 15:52:34.803 +05:30 [Information] Request finished in 3064.8018ms 200 application/json; charset=utf-8 +2017-07-20 15:52:34.803 +05:30 [Debug] Connection id ""0HL6FB4K550QQ"" completed keep alive response. +2017-07-20 15:52:34.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 15:52:34.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 15:52:34.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 15:52:37.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 15:52:54.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 15:52:54.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 15:52:54.597 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 15:52:55.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 21104.5734ms +2017-07-20 15:52:55.945 +05:30 [Information] Request finished in 21129.3474ms 200 application/json; charset=utf-8 +2017-07-20 15:52:55.946 +05:30 [Debug] Connection id ""0HL6FB4K550QP"" completed keep alive response. +2017-07-20 16:06:30.490 +05:30 [Debug] Hosting starting +2017-07-20 16:06:30.778 +05:30 [Debug] Hosting started +2017-07-20 16:06:30.926 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ0"" started. +2017-07-20 16:06:30.931 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ1"" started. +2017-07-20 16:06:31.191 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 16:06:31.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 16:06:31.303 +05:30 [Information] Request finished in 198.8514ms 200 +2017-07-20 16:06:31.429 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ0"" completed keep alive response. +2017-07-20 16:06:32.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 16:06:32.144 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b5c20f4f-59bd-4a6c-bb95-7f619186ea4e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 16:06:32.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 16:06:32.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 16:06:32.519 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 16:06:32.577 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:06:32.587 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:06:32.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:06:33.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 746.2061ms +2017-07-20 16:06:33.198 +05:30 [Information] Request finished in 2104.6436ms 200 application/json; charset=utf-8 +2017-07-20 16:06:33.201 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ1"" completed keep alive response. +2017-07-20 16:06:47.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:06:47.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:06:47.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:06:51.049 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:06:54.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:06:54.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:06:54.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:06:54.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7396.1174ms +2017-07-20 16:06:54.975 +05:30 [Information] Request finished in 7410.6681ms 200 application/json; charset=utf-8 +2017-07-20 16:06:54.977 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ0"" completed keep alive response. +2017-07-20 16:06:55.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 16:06:55.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 16:06:55.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 16:06:58.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:06:58.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:06:58.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:06:58.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:06:58.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3198.5154ms +2017-07-20 16:06:58.485 +05:30 [Information] Request finished in 3204.1458ms 200 application/json; charset=utf-8 +2017-07-20 16:06:58.485 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ1"" completed keep alive response. +2017-07-20 16:06:58.654 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:06:58.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:06:58.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:07:01.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:07:01.697 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:07:01.697 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:07:01.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:07:01.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.5737ms +2017-07-20 16:07:01.706 +05:30 [Information] Request finished in 3051.585ms 200 application/json; charset=utf-8 +2017-07-20 16:07:01.706 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ0"" completed keep alive response. +2017-07-20 16:07:05.951 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:07:05.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:07:05.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:07:09.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:07:09.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:07:09.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:07:09.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:07:09.020 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.1267ms +2017-07-20 16:07:09.023 +05:30 [Information] Request finished in 3075.3449ms 200 application/json; charset=utf-8 +2017-07-20 16:07:09.024 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ1"" completed keep alive response. +2017-07-20 16:07:21.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:07:21.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:07:21.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:07:24.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:07:24.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:07:24.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:07:24.957 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:07:25.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3306.4717ms +2017-07-20 16:07:25.004 +05:30 [Information] Request finished in 3313.0867ms 200 application/json; charset=utf-8 +2017-07-20 16:07:25.004 +05:30 [Debug] Connection id ""0HL6FBCNL7RJ0"" completed keep alive response. +2017-07-20 16:08:39.219 +05:30 [Debug] Hosting starting +2017-07-20 16:08:39.544 +05:30 [Debug] Hosting started +2017-07-20 16:08:39.767 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" started. +2017-07-20 16:08:39.767 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" started. +2017-07-20 16:08:39.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 16:08:39.977 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 16:08:40.066 +05:30 [Information] Request finished in 136.472ms 200 +2017-07-20 16:08:40.130 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:08:41.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 16:08:41.242 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ba5fb37e-b461-46af-bf9b-427ffc7cf4db"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 16:08:41.363 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 16:08:41.465 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 16:08:41.468 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 16:08:41.520 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:08:41.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:08:41.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:08:41.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 408.8025ms +2017-07-20 16:08:41.855 +05:30 [Information] Request finished in 1944.2259ms 200 application/json; charset=utf-8 +2017-07-20 16:08:41.858 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:08:53.348 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:08:53.349 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:08:53.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:08:57.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:08:58.986 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:08:58.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:08:58.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:09:01.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:09:04.208 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:04.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:04.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:04.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11157.2993ms +2017-07-20 16:09:04.580 +05:30 [Information] Request finished in 11227.0774ms 200 application/json; charset=utf-8 +2017-07-20 16:09:04.582 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:09:04.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:04.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:04.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:04.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5837.482ms +2017-07-20 16:09:04.831 +05:30 [Information] Request finished in 5846.7336ms 200 application/json; charset=utf-8 +2017-07-20 16:09:04.832 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:09:04.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 16:09:04.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 16:09:04.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 16:09:07.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:09:07.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:09:07.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:09:09.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:09:09.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:09.835 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:09.841 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:09.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 4919.9128ms +2017-07-20 16:09:09.852 +05:30 [Information] Request finished in 4931.2637ms 200 application/json; charset=utf-8 +2017-07-20 16:09:09.853 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:09:10.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:09:10.960 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:10.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:10.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:10.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3260.2393ms +2017-07-20 16:09:11.000 +05:30 [Information] Request finished in 3266.7759ms 200 application/json; charset=utf-8 +2017-07-20 16:09:11.000 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:09:32.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:09:32.496 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:09:32.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:09:33.110 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" started. +2017-07-20 16:09:33.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:09:33.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:09:33.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:09:33.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:09:33.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:09:33.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:09:33.884 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" started. +2017-07-20 16:09:33.885 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:09:33.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:09:33.887 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:09:35.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:09:35.826 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:35.827 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:09:35.828 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:35.829 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:35.838 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3336.4471ms +2017-07-20 16:09:35.840 +05:30 [Information] Request finished in 3346.2546ms 200 application/json; charset=utf-8 +2017-07-20 16:09:35.841 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:09:35.985 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:09:36.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:36.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:36.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:36.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2155.4838ms +2017-07-20 16:09:36.048 +05:30 [Information] Request finished in 2161.9551ms 200 application/json; charset=utf-8 +2017-07-20 16:09:36.049 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:09:36.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:09:36.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:09:37.076 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:37.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:09:37.077 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:37.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:37.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3985.0884ms +2017-07-20 16:09:37.141 +05:30 [Information] Request finished in 4028.706ms 200 application/json; charset=utf-8 +2017-07-20 16:09:37.142 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:09:38.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:09:38.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:09:38.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:09:38.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:09:38.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5413.7016ms +2017-07-20 16:09:38.570 +05:30 [Information] Request finished in 5456.4519ms 200 application/json; charset=utf-8 +2017-07-20 16:09:38.570 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" completed keep alive response. +2017-07-20 16:09:57.894 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:09:57.897 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:09:57.900 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:10:00.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:00.925 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:00.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:00.927 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:00.930 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3026.4793ms +2017-07-20 16:10:00.932 +05:30 [Information] Request finished in 3058.8522ms 200 application/json; charset=utf-8 +2017-07-20 16:10:00.933 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:10:00.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:10:00.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:10:00.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:10:03.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:03.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:03.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:03.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:03.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2098.1567ms +2017-07-20 16:10:03.064 +05:30 [Information] Request finished in 2107.991ms 200 application/json; charset=utf-8 +2017-07-20 16:10:03.065 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:10:03.072 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:10:03.077 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:10:03.079 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:10:06.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:10:06.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:06.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:06.117 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:06.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3038.2503ms +2017-07-20 16:10:06.124 +05:30 [Information] Request finished in 3053.3708ms 200 application/json; charset=utf-8 +2017-07-20 16:10:06.125 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:10:08.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:10:08.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:10:08.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:10:09.236 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:10:09.238 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:10:09.240 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:10:09.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:10:09.352 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:10:09.354 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:10:09.759 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:10:09.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:10:09.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:10:10.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:10:10.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:10.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:10:10.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:10.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:10.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2508.3802ms +2017-07-20 16:10:10.576 +05:30 [Information] Request finished in 2520.1357ms 200 application/json; charset=utf-8 +2017-07-20 16:10:10.577 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" completed keep alive response. +2017-07-20 16:10:11.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:10:11.710 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:11.710 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:10:11.711 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:11.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:11.714 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2472.2222ms +2017-07-20 16:10:11.719 +05:30 [Information] Request finished in 2669.5339ms 200 application/json; charset=utf-8 +2017-07-20 16:10:11.720 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:10:12.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:10:12.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:12.805 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:12.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:12.807 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:12.808 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.237ms +2017-07-20 16:10:12.811 +05:30 [Information] Request finished in 3052.7553ms 200 application/json; charset=utf-8 +2017-07-20 16:10:12.812 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:10:12.818 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:10:12.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:10:12.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:10:13.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:13.212 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:10:13.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:13.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:13.225 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3854.2548ms +2017-07-20 16:10:13.241 +05:30 [Information] Request finished in 4038.6519ms 200 application/json; charset=utf-8 +2017-07-20 16:10:13.242 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:10:15.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:10:15.972 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:15.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:15.976 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:15.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3158.9739ms +2017-07-20 16:10:15.995 +05:30 [Information] Request finished in 3176.0824ms 200 application/json; charset=utf-8 +2017-07-20 16:10:15.996 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" completed keep alive response. +2017-07-20 16:10:52.411 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:10:52.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:10:52.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:10:52.469 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:10:52.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:10:52.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:10:55.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:55.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:55.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:55.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:55.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:55.521 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:55.519 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:55.522 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:55.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3106.15ms +2017-07-20 16:10:55.525 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.7012ms +2017-07-20 16:10:55.528 +05:30 [Information] Request finished in 3119.2602ms 200 application/json; charset=utf-8 +2017-07-20 16:10:55.529 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:10:55.535 +05:30 [Information] Request finished in 3067.1878ms 200 application/json; charset=utf-8 +2017-07-20 16:10:55.538 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:10:55.549 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:10:55.551 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:10:55.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:10:55.554 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:10:55.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:10:55.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:10:58.633 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["70", "8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:58.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:10:58.642 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:10:58.643 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:10:58.644 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:10:58.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3088.1721ms +2017-07-20 16:10:58.649 +05:30 [Information] Request finished in 3101.2164ms 200 application/json; charset=utf-8 +2017-07-20 16:10:58.650 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" completed keep alive response. +2017-07-20 16:10:58.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:10:58.654 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:10:58.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:10:58.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:10:58.686 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:10:58.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3130.4681ms +2017-07-20 16:10:58.689 +05:30 [Information] Request finished in 3142.6334ms 200 +2017-07-20 16:10:58.689 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:11:01.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:11:01.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:11:01.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:11:01.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:11:01.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3061.5196ms +2017-07-20 16:11:01.757 +05:30 [Information] Request finished in 3076.3219ms 200 application/json; charset=utf-8 +2017-07-20 16:11:01.760 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:11:03.136 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:11:03.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:11:03.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:11:03.655 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:11:03.657 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:11:03.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:11:03.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:11:03.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:11:03.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:11:04.295 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:11:04.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:11:04.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:11:05.380 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:11:05.665 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:11:05.668 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:11:05.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:11:05.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:11:05.688 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2022.3787ms +2017-07-20 16:11:05.693 +05:30 [Information] Request finished in 2037.717ms 200 application/json; charset=utf-8 +2017-07-20 16:11:05.694 +05:30 [Debug] Connection id ""0HL6FBDU1V42T"" completed keep alive response. +2017-07-20 16:11:06.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:11:06.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:11:06.325 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:11:06.328 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:11:06.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:11:06.329 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:11:06.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3191.4385ms +2017-07-20 16:11:06.333 +05:30 [Information] Request finished in 3197.9777ms 200 application/json; charset=utf-8 +2017-07-20 16:11:06.334 +05:30 [Debug] Connection id ""0HL6FBDU1V42U"" completed keep alive response. +2017-07-20 16:11:06.561 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:11:06.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:11:06.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:11:06.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:11:06.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2269.6651ms +2017-07-20 16:11:06.572 +05:30 [Information] Request finished in 2279.7699ms 200 application/json; charset=utf-8 +2017-07-20 16:11:06.572 +05:30 [Debug] Connection id ""0HL6FBDU1V430"" completed keep alive response. +2017-07-20 16:11:06.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:11:06.972 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:11:06.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:11:06.974 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:11:06.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3315.8909ms +2017-07-20 16:11:07.000 +05:30 [Information] Request finished in 3343.6133ms 200 application/json; charset=utf-8 +2017-07-20 16:11:07.001 +05:30 [Debug] Connection id ""0HL6FBDU1V42V"" completed keep alive response. +2017-07-20 16:21:31.243 +05:30 [Debug] Hosting starting +2017-07-20 16:21:31.523 +05:30 [Debug] Hosting started +2017-07-20 16:21:31.593 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" started. +2017-07-20 16:21:31.593 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" started. +2017-07-20 16:21:31.848 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 16:21:31.848 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 16:21:31.934 +05:30 [Information] Request finished in 148.7913ms 200 +2017-07-20 16:21:31.999 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:21:33.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 16:21:33.224 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0de417ce-1b3a-4a40-bfa7-3deba08f9ad6"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 16:21:33.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 16:21:33.486 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 16:21:33.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 16:21:33.539 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:21:33.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:21:33.548 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:21:33.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 574.418ms +2017-07-20 16:21:34.103 +05:30 [Information] Request finished in 2320.4609ms 200 application/json; charset=utf-8 +2017-07-20 16:21:34.111 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" completed keep alive response. +2017-07-20 16:21:42.898 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:21:42.900 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:21:42.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:21:46.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:21:50.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:21:50.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:21:50.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:21:50.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7903.2976ms +2017-07-20 16:21:50.834 +05:30 [Information] Request finished in 7946.3077ms 200 application/json; charset=utf-8 +2017-07-20 16:21:50.839 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:22:42.217 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" received FIN. +2017-07-20 16:22:42.220 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" disconnecting. +2017-07-20 16:22:42.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:22:42.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:22:42.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:22:42.224 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" sending FIN. +2017-07-20 16:22:42.246 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" sent FIN with status "0". +2017-07-20 16:22:42.251 +05:30 [Debug] Connection id ""0HL6FBL42KRFV"" stopped. +2017-07-20 16:22:45.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf35db9dc1bf"]) - ModelState is Valid +2017-07-20 16:22:45.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:22:45.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:22:45.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:22:45.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.72ms +2017-07-20 16:22:45.284 +05:30 [Information] Request finished in 3064.6969ms 200 application/json; charset=utf-8 +2017-07-20 16:22:45.285 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:23:18.239 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:23:18.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:23:18.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:23:21.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:23:21.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:21.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:21.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:22.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3768.8451ms +2017-07-20 16:23:22.021 +05:30 [Information] Request finished in 3780.7926ms 200 application/json; charset=utf-8 +2017-07-20 16:23:22.026 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:23:22.377 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:23:22.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:23:22.380 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:23:25.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:23:25.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:25.529 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:25.535 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:25.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3192.1142ms +2017-07-20 16:23:25.576 +05:30 [Information] Request finished in 3198.3439ms 200 application/json; charset=utf-8 +2017-07-20 16:23:25.576 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:23:27.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:23:27.719 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:23:27.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:23:28.275 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" started. +2017-07-20 16:23:28.275 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" started. +2017-07-20 16:23:28.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:23:28.288 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:23:28.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:23:28.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:23:28.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:23:28.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:23:29.017 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" started. +2017-07-20 16:23:29.019 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:23:29.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:23:29.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:23:30.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:23:30.777 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:23:30.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:30.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:23:30.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:30.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:30.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3125.0376ms +2017-07-20 16:23:30.850 +05:30 [Information] Request finished in 3132.1969ms 200 application/json; charset=utf-8 +2017-07-20 16:23:30.851 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" completed keep alive response. +2017-07-20 16:23:31.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:23:31.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:31.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:31.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:23:31.483 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:31.500 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2468.4275ms +2017-07-20 16:23:31.505 +05:30 [Information] Request finished in 2485.9608ms 200 application/json; charset=utf-8 +2017-07-20 16:23:31.507 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" completed keep alive response. +2017-07-20 16:23:31.802 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:31.803 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:23:31.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:31.804 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:31.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3545.4255ms +2017-07-20 16:23:31.869 +05:30 [Information] Request finished in 3590.3535ms 200 application/json; charset=utf-8 +2017-07-20 16:23:31.870 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" completed keep alive response. +2017-07-20 16:23:32.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:23:32.262 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:23:32.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:23:32.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:23:32.301 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3975.2584ms +2017-07-20 16:23:32.308 +05:30 [Information] Request finished in 4027.7413ms 200 application/json; charset=utf-8 +2017-07-20 16:23:32.313 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" completed keep alive response. +2017-07-20 16:25:31.564 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" received FIN. +2017-07-20 16:25:31.565 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" received FIN. +2017-07-20 16:25:31.566 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" disconnecting. +2017-07-20 16:25:31.566 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" disconnecting. +2017-07-20 16:25:31.566 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" sending FIN. +2017-07-20 16:25:31.567 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" received FIN. +2017-07-20 16:25:31.572 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" received FIN. +2017-07-20 16:25:31.574 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" disconnecting. +2017-07-20 16:25:31.576 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" sending FIN. +2017-07-20 16:25:31.576 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" disconnecting. +2017-07-20 16:25:31.576 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" sent FIN with status "0". +2017-07-20 16:25:31.579 +05:30 [Debug] Connection id ""0HL6FBL42KRG2"" stopped. +2017-07-20 16:25:31.570 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" sending FIN. +2017-07-20 16:25:31.582 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" sent FIN with status "0". +2017-07-20 16:25:31.582 +05:30 [Debug] Connection id ""0HL6FBL42KRFU"" stopped. +2017-07-20 16:25:31.583 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" sent FIN with status "0". +2017-07-20 16:25:31.584 +05:30 [Debug] Connection id ""0HL6FBL42KRG1"" stopped. +2017-07-20 16:25:31.580 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" sending FIN. +2017-07-20 16:25:31.588 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" sent FIN with status "0". +2017-07-20 16:25:31.589 +05:30 [Debug] Connection id ""0HL6FBL42KRG0"" stopped. +2017-07-20 16:26:58.783 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" started. +2017-07-20 16:26:58.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 16:26:58.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 16:26:58.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 16:27:01.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:27:05.471 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:27:05.472 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:27:05.472 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:27:05.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:27:05.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 6665.0777ms +2017-07-20 16:27:05.485 +05:30 [Information] Request finished in 6698.1575ms 200 application/json; charset=utf-8 +2017-07-20 16:27:05.485 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" completed keep alive response. +2017-07-20 16:29:03.112 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" received FIN. +2017-07-20 16:29:03.113 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" disconnecting. +2017-07-20 16:29:03.115 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" sending FIN. +2017-07-20 16:29:03.115 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" sent FIN with status "0". +2017-07-20 16:29:03.113 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" started. +2017-07-20 16:29:03.116 +05:30 [Debug] Connection id ""0HL6FBL42KRG3"" stopped. +2017-07-20 16:29:03.119 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:29:03.120 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:29:03.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:29:03.166 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" started. +2017-07-20 16:29:03.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:29:03.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:29:03.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:29:06.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5d8f7d12a7"]) - ModelState is Valid +2017-07-20 16:29:06.215 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5d8f7d12a7"]) - ModelState is Valid +2017-07-20 16:29:06.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:06.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:06.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:06.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:06.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:06.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3098.2007ms +2017-07-20 16:29:06.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:06.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.2794ms +2017-07-20 16:29:06.227 +05:30 [Information] Request finished in 3105.9152ms 200 application/json; charset=utf-8 +2017-07-20 16:29:06.229 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" completed keep alive response. +2017-07-20 16:29:06.231 +05:30 [Information] Request finished in 3061.5349ms 200 application/json; charset=utf-8 +2017-07-20 16:29:06.234 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" completed keep alive response. +2017-07-20 16:29:06.264 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:29:06.265 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:29:06.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:29:06.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:29:06.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:29:06.268 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:29:09.308 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["71", "8d4cf5d8f7d12a7"]) - ModelState is Valid +2017-07-20 16:29:09.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf5d8f7d12a7"]) - ModelState is Valid +2017-07-20 16:29:09.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:09.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:29:09.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:09.396 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:09.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3127.0353ms +2017-07-20 16:29:09.402 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:29:09.403 +05:30 [Information] Request finished in 3151.0829ms 200 application/json; charset=utf-8 +2017-07-20 16:29:09.404 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" completed keep alive response. +2017-07-20 16:29:09.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3134.2634ms +2017-07-20 16:29:09.429 +05:30 [Information] Request finished in 3177.9161ms 200 +2017-07-20 16:29:09.432 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" completed keep alive response. +2017-07-20 16:29:09.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:29:09.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:29:09.459 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:29:12.490 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:29:12.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:12.497 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:12.498 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:12.499 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3038.8548ms +2017-07-20 16:29:12.501 +05:30 [Information] Request finished in 3043.7417ms 200 application/json; charset=utf-8 +2017-07-20 16:29:12.502 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" completed keep alive response. +2017-07-20 16:29:14.080 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:29:14.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:29:14.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:29:14.575 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" started. +2017-07-20 16:29:14.577 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:29:14.580 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:29:14.581 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:29:14.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:29:14.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:29:14.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:29:17.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:29:17.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:17.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:29:17.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:17.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:17.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3062.872ms +2017-07-20 16:29:17.156 +05:30 [Information] Request finished in 3071.4668ms 200 application/json; charset=utf-8 +2017-07-20 16:29:17.158 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" completed keep alive response. +2017-07-20 16:29:17.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:29:17.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:29:18.149 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:18.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:29:18.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:18.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:18.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3578.549ms +2017-07-20 16:29:18.178 +05:30 [Information] Request finished in 3598.6066ms 200 application/json; charset=utf-8 +2017-07-20 16:29:18.179 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" completed keep alive response. +2017-07-20 16:29:19.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:29:19.072 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:29:19.073 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:29:19.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:29:19.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4493.3161ms +2017-07-20 16:29:19.088 +05:30 [Information] Request finished in 4513.2082ms 200 application/json; charset=utf-8 +2017-07-20 16:29:19.088 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" completed keep alive response. +2017-07-20 16:30:43.616 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" received FIN. +2017-07-20 16:30:43.619 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" received FIN. +2017-07-20 16:30:43.623 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" started. +2017-07-20 16:30:43.623 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" disconnecting. +2017-07-20 16:30:43.637 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" disconnecting. +2017-07-20 16:30:43.634 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" received FIN. +2017-07-20 16:30:43.650 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" sending FIN. +2017-07-20 16:30:43.663 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" sending FIN. +2017-07-20 16:30:43.667 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" disconnecting. +2017-07-20 16:30:43.700 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" sent FIN with status "0". +2017-07-20 16:30:43.705 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" sent FIN with status "0". +2017-07-20 16:30:43.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:30:43.713 +05:30 [Debug] Connection id ""0HL6FBL42KRG5"" stopped. +2017-07-20 16:30:43.713 +05:30 [Debug] Connection id ""0HL6FBL42KRG4"" stopped. +2017-07-20 16:30:43.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:30:43.719 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" sending FIN. +2017-07-20 16:30:43.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:30:43.722 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" sent FIN with status "0". +2017-07-20 16:30:43.724 +05:30 [Debug] Connection id ""0HL6FBL42KRG6"" stopped. +2017-07-20 16:30:45.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:30:45.938 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:45.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:45.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:45.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2217.5225ms +2017-07-20 16:30:45.944 +05:30 [Information] Request finished in 2297.9977ms 200 application/json; charset=utf-8 +2017-07-20 16:30:45.945 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:30:46.027 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:30:46.028 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:30:46.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:30:48.198 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:30:48.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:48.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:48.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:48.209 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2179.1166ms +2017-07-20 16:30:48.212 +05:30 [Information] Request finished in 2184.7089ms 200 application/json; charset=utf-8 +2017-07-20 16:30:48.213 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:30:49.565 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:30:49.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:30:49.567 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:30:50.101 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" started. +2017-07-20 16:30:50.105 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" started. +2017-07-20 16:30:50.121 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:30:50.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:30:50.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:30:50.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:30:50.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:30:50.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:30:50.724 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" started. +2017-07-20 16:30:50.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:30:50.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:30:50.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:30:52.745 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:30:52.763 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:52.766 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:30:52.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:52.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:52.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3203.8244ms +2017-07-20 16:30:52.785 +05:30 [Information] Request finished in 3218.8001ms 200 application/json; charset=utf-8 +2017-07-20 16:30:52.787 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:30:53.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:30:53.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:30:53.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:30:53.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:53.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:53.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:53.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3243.5506ms +2017-07-20 16:30:54.003 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:54.004 +05:30 [Information] Request finished in 3263.5086ms 200 application/json; charset=utf-8 +2017-07-20 16:30:54.004 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:30:54.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:54.005 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" completed keep alive response. +2017-07-20 16:30:54.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:54.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3862.8555ms +2017-07-20 16:30:54.019 +05:30 [Information] Request finished in 3903.6955ms 200 application/json; charset=utf-8 +2017-07-20 16:30:54.019 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" completed keep alive response. +2017-07-20 16:30:54.377 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:30:54.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:30:54.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:30:54.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:30:54.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4249.386ms +2017-07-20 16:30:54.405 +05:30 [Information] Request finished in 4292.987ms 200 application/json; charset=utf-8 +2017-07-20 16:30:54.407 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" completed keep alive response. +2017-07-20 16:31:47.276 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:31:47.280 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:31:47.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:31:47.370 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:31:47.372 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:31:47.373 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:31:49.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5e974dbdfc"]) - ModelState is Valid +2017-07-20 16:31:49.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:31:49.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:31:49.399 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:31:49.401 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2114.377ms +2017-07-20 16:31:49.409 +05:30 [Information] Request finished in 2130.4274ms 200 application/json; charset=utf-8 +2017-07-20 16:31:49.410 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:31:51.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5e974dbdfc"]) - ModelState is Valid +2017-07-20 16:31:51.882 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:31:51.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:31:51.885 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:31:51.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4512.99ms +2017-07-20 16:31:51.893 +05:30 [Information] Request finished in 4526.0423ms 200 application/json; charset=utf-8 +2017-07-20 16:31:51.893 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" completed keep alive response. +2017-07-20 16:31:54.292 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" received FIN. +2017-07-20 16:31:54.294 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" disconnecting. +2017-07-20 16:31:54.294 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:31:54.298 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:31:54.296 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" sending FIN. +2017-07-20 16:31:54.300 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" sent FIN with status "0". +2017-07-20 16:31:54.300 +05:30 [Debug] Connection id ""0HL6FBL42KRG9"" stopped. +2017-07-20 16:31:54.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:31:54.304 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:31:54.309 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:31:54.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:31:56.526 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["72", "8d4cf5e974dbdfc"]) - ModelState is Valid +2017-07-20 16:31:56.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:31:56.566 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:31:56.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 2256.1262ms +2017-07-20 16:31:56.576 +05:30 [Information] Request finished in 2271.8369ms 200 +2017-07-20 16:31:56.585 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:31:57.671 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf5e974dbdfc"]) - ModelState is Valid +2017-07-20 16:31:57.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:31:57.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:31:57.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:31:57.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3423.9902ms +2017-07-20 16:31:57.734 +05:30 [Information] Request finished in 3438.5892ms 200 application/json; charset=utf-8 +2017-07-20 16:31:57.734 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" completed keep alive response. +2017-07-20 16:31:58.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:31:58.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:31:58.801 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:31:59.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:31:59.985 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:31:59.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:31:59.987 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:31:59.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 1183.6936ms +2017-07-20 16:31:59.994 +05:30 [Information] Request finished in 1215.6365ms 200 application/json; charset=utf-8 +2017-07-20 16:31:59.995 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" completed keep alive response. +2017-07-20 16:32:01.250 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:32:01.251 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:32:01.252 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:32:01.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:32:01.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:32:01.691 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:32:01.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:32:01.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:32:01.693 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:32:04.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:32:04.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:32:04.287 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:32:04.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:32:04.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:32:04.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3038.1536ms +2017-07-20 16:32:04.297 +05:30 [Information] Request finished in 3046.3157ms 200 application/json; charset=utf-8 +2017-07-20 16:32:04.298 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" completed keep alive response. +2017-07-20 16:32:04.824 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:32:04.894 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:32:05.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:32:05.069 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:32:05.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:32:05.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:32:05.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3379.1132ms +2017-07-20 16:32:05.077 +05:30 [Information] Request finished in 3391.7838ms 200 application/json; charset=utf-8 +2017-07-20 16:32:05.077 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" completed keep alive response. +2017-07-20 16:32:05.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:32:05.483 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:32:05.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:32:05.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:32:05.487 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3791.7949ms +2017-07-20 16:32:05.489 +05:30 [Information] Request finished in 3804.2476ms 200 application/json; charset=utf-8 +2017-07-20 16:32:05.490 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" completed keep alive response. +2017-07-20 16:33:20.655 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" received FIN. +2017-07-20 16:33:20.656 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" received FIN. +2017-07-20 16:33:20.656 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" received FIN. +2017-07-20 16:33:20.656 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" started. +2017-07-20 16:33:20.657 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" disconnecting. +2017-07-20 16:33:20.657 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" disconnecting. +2017-07-20 16:33:20.657 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" sending FIN. +2017-07-20 16:33:20.660 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" sent FIN with status "0". +2017-07-20 16:33:20.661 +05:30 [Debug] Connection id ""0HL6FBL42KRGA"" stopped. +2017-07-20 16:33:20.656 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" disconnecting. +2017-07-20 16:33:20.661 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" sending FIN. +2017-07-20 16:33:20.662 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" sent FIN with status "0". +2017-07-20 16:33:20.662 +05:30 [Debug] Connection id ""0HL6FBL42KRG8"" stopped. +2017-07-20 16:33:20.660 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" sending FIN. +2017-07-20 16:33:20.663 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" sent FIN with status "0". +2017-07-20 16:33:20.663 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:33:20.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:33:20.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:33:20.664 +05:30 [Debug] Connection id ""0HL6FBL42KRG7"" stopped. +2017-07-20 16:33:23.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5e974dbdfc"]) - ModelState is Valid +2017-07-20 16:33:23.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:23.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:23.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:23.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.7956ms +2017-07-20 16:33:23.721 +05:30 [Information] Request finished in 3063.4474ms 200 application/json; charset=utf-8 +2017-07-20 16:33:23.722 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:33:29.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:33:29.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:33:29.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:33:33.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:33:33.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:33.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:33.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:33.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3243.0146ms +2017-07-20 16:33:33.170 +05:30 [Information] Request finished in 3253.0148ms 200 application/json; charset=utf-8 +2017-07-20 16:33:33.170 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:33:33.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:33:33.258 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:33:33.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:33:36.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:33:36.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:36.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:36.327 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:36.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3069.155ms +2017-07-20 16:33:36.335 +05:30 [Information] Request finished in 3078.5599ms 200 application/json; charset=utf-8 +2017-07-20 16:33:36.338 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:33:37.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:33:37.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:33:37.828 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:33:38.373 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" started. +2017-07-20 16:33:38.373 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" started. +2017-07-20 16:33:38.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:33:38.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:33:38.397 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:33:38.400 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:33:38.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:33:38.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:33:39.027 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" started. +2017-07-20 16:33:39.029 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:33:39.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:33:39.030 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:33:40.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:33:40.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:40.960 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:33:40.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:40.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:40.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3133.8539ms +2017-07-20 16:33:40.968 +05:30 [Information] Request finished in 3142.3335ms 200 application/json; charset=utf-8 +2017-07-20 16:33:40.969 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:33:41.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:33:41.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:41.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:41.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:41.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2136.4832ms +2017-07-20 16:33:41.171 +05:30 [Information] Request finished in 2142.2607ms 200 application/json; charset=utf-8 +2017-07-20 16:33:41.172 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:33:41.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:33:41.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:33:41.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:41.747 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:33:41.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:41.749 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:41.752 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3348.7395ms +2017-07-20 16:33:41.755 +05:30 [Information] Request finished in 3373.0186ms 200 application/json; charset=utf-8 +2017-07-20 16:33:41.756 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:33:42.137 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:42.138 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:33:42.138 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:42.140 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:42.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3742.1926ms +2017-07-20 16:33:42.153 +05:30 [Information] Request finished in 3773.0228ms 200 application/json; charset=utf-8 +2017-07-20 16:33:42.154 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:33:56.741 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:33:56.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:33:56.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:33:56.791 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:33:56.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:33:56.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:33:59.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5efb0468e1"]) - ModelState is Valid +2017-07-20 16:33:59.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:33:59.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:33:59.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:33:59.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.878ms +2017-07-20 16:33:59.791 +05:30 [Information] Request finished in 3052.807ms 200 application/json; charset=utf-8 +2017-07-20 16:33:59.793 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:34:00.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5efb0468e1"]) - ModelState is Valid +2017-07-20 16:34:00.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:34:00.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:00.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:34:00.943 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:00.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:34:00.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:00.952 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4155.6877ms +2017-07-20 16:34:00.955 +05:30 [Information] Request finished in 4168.0586ms 200 application/json; charset=utf-8 +2017-07-20 16:34:00.956 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:34:00.967 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:34:00.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:34:00.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:34:04.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["73", "8d4cf5efb0468e1"]) - ModelState is Valid +2017-07-20 16:34:04.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf5efb0468e1"]) - ModelState is Valid +2017-07-20 16:34:04.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:34:04.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:04.065 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:34:04.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:04.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3120.4626ms +2017-07-20 16:34:04.069 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:04.084 +05:30 [Information] Request finished in 3131.9999ms 200 +2017-07-20 16:34:04.085 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:34:04.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3102.8588ms +2017-07-20 16:34:04.109 +05:30 [Information] Request finished in 3133.2888ms 200 application/json; charset=utf-8 +2017-07-20 16:34:04.111 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:34:04.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:34:04.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:34:04.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:34:07.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:34:07.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:07.258 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:07.259 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:07.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3090.6932ms +2017-07-20 16:34:07.268 +05:30 [Information] Request finished in 3106.8141ms 200 application/json; charset=utf-8 +2017-07-20 16:34:07.268 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:34:08.767 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:34:08.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:34:08.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:34:09.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:34:09.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:34:09.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:34:09.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:34:09.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:34:09.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:34:11.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:34:11.107 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:11.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:34:11.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:11.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:11.114 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2343.7712ms +2017-07-20 16:34:11.117 +05:30 [Information] Request finished in 2350.3022ms 200 application/json; charset=utf-8 +2017-07-20 16:34:11.118 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:34:11.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:34:11.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:11.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:34:11.444 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:11.445 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:11.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2307.6625ms +2017-07-20 16:34:11.450 +05:30 [Information] Request finished in 2322.3ms 200 application/json; charset=utf-8 +2017-07-20 16:34:11.451 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:34:12.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:34:12.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:12.884 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:34:12.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:12.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:12.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3749.4059ms +2017-07-20 16:34:12.899 +05:30 [Information] Request finished in 3769.1758ms 200 application/json; charset=utf-8 +2017-07-20 16:34:12.900 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:34:17.509 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:34:17.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:34:17.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:34:20.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5efb0468e1"]) - ModelState is Valid +2017-07-20 16:34:20.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:20.603 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:20.604 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:20.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3092.5905ms +2017-07-20 16:34:20.611 +05:30 [Information] Request finished in 3101.7898ms 200 application/json; charset=utf-8 +2017-07-20 16:34:20.612 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:34:51.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:34:51.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:34:51.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:34:54.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:34:54.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:54.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:54.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:54.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3116.1412ms +2017-07-20 16:34:54.769 +05:30 [Information] Request finished in 3136.2948ms 200 application/json; charset=utf-8 +2017-07-20 16:34:54.770 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:34:54.916 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:34:54.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:34:54.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:34:57.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:34:57.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:34:57.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:34:57.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:34:57.967 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3042.4168ms +2017-07-20 16:34:57.971 +05:30 [Information] Request finished in 3055.1479ms 200 application/json; charset=utf-8 +2017-07-20 16:34:57.973 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:34:59.479 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:34:59.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:34:59.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:34:59.969 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:34:59.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:34:59.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:34:59.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:34:59.984 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:34:59.985 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:35:00.683 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:35:00.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:35:00.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:35:02.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:02.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:02.720 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:02.720 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:02.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:02.722 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3239.7887ms +2017-07-20 16:35:02.725 +05:30 [Information] Request finished in 3245.8876ms 200 application/json; charset=utf-8 +2017-07-20 16:35:02.725 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:35:03.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:03.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:03.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:35:04.016 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:04.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:04.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:04.022 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:04.025 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4041.9069ms +2017-07-20 16:35:04.027 +05:30 [Information] Request finished in 4061.271ms 200 application/json; charset=utf-8 +2017-07-20 16:35:04.028 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:35:04.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:04.072 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:04.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:04.084 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3396.9288ms +2017-07-20 16:35:04.091 +05:30 [Information] Request finished in 3406.2649ms 200 application/json; charset=utf-8 +2017-07-20 16:35:04.095 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:35:04.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:04.468 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:04.469 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:04.470 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:04.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4486.2342ms +2017-07-20 16:35:04.479 +05:30 [Information] Request finished in 4509.0139ms 200 application/json; charset=utf-8 +2017-07-20 16:35:04.480 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:35:14.224 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:35:14.230 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:35:14.234 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:35:16.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:16.346 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:16.347 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:16.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:16.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2102.401ms +2017-07-20 16:35:16.365 +05:30 [Information] Request finished in 2143.8183ms 200 application/json; charset=utf-8 +2017-07-20 16:35:16.366 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:35:16.395 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:35:16.396 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:35:16.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:35:19.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:19.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:19.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:19.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:19.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3092.3246ms +2017-07-20 16:35:19.494 +05:30 [Information] Request finished in 3099.2059ms 200 application/json; charset=utf-8 +2017-07-20 16:35:19.494 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:35:19.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:35:19.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:35:19.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:35:22.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:22.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:22.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:22.598 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:22.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3086.285ms +2017-07-20 16:35:22.603 +05:30 [Information] Request finished in 3096.7103ms 200 application/json; charset=utf-8 +2017-07-20 16:35:22.603 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:35:23.864 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:35:23.865 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:35:23.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:35:24.224 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:35:24.225 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:35:24.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:35:24.231 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:35:24.232 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:35:24.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:35:24.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:35:24.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:35:24.768 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:35:27.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:27.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:27.062 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:27.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:27.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:27.068 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3197.303ms +2017-07-20 16:35:27.074 +05:30 [Information] Request finished in 3214.1927ms 200 application/json; charset=utf-8 +2017-07-20 16:35:27.076 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:35:27.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:27.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:27.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:27.526 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:27.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:27.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:27.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3304.4853ms +2017-07-20 16:35:27.535 +05:30 [Information] Request finished in 3318.8863ms 200 application/json; charset=utf-8 +2017-07-20 16:35:27.537 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:35:27.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:27.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:27.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:27.810 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:27.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.9425ms +2017-07-20 16:35:27.816 +05:30 [Information] Request finished in 3050.3574ms 200 application/json; charset=utf-8 +2017-07-20 16:35:27.817 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:35:27.829 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:35:27.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:35:27.832 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:35:27.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:27.975 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:27.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:27.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:27.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3745.9604ms +2017-07-20 16:35:28.000 +05:30 [Information] Request finished in 3781.7695ms 200 application/json; charset=utf-8 +2017-07-20 16:35:28.000 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:35:30.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:35:30.897 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:30.898 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:30.899 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:30.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3064.8515ms +2017-07-20 16:35:30.902 +05:30 [Information] Request finished in 3074.223ms 200 application/json; charset=utf-8 +2017-07-20 16:35:30.903 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:35:44.991 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:35:44.992 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:35:44.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:35:45.041 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:35:45.042 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:35:45.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:35:47.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:47.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:47.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:47.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:47.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2116.8523ms +2017-07-20 16:35:47.116 +05:30 [Information] Request finished in 2125.7242ms 200 application/json; charset=utf-8 +2017-07-20 16:35:47.116 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:35:48.981 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:35:49.003 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:49.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:35:49.004 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:35:49.007 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:49.008 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:49.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:49.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3960.1697ms +2017-07-20 16:35:49.013 +05:30 [Information] Request finished in 3974.151ms 200 application/json; charset=utf-8 +2017-07-20 16:35:49.014 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:35:49.020 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:35:49.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:35:49.022 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:35:51.119 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:51.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:51.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:51.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:51.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2106.8826ms +2017-07-20 16:35:51.135 +05:30 [Information] Request finished in 2114.462ms 200 application/json; charset=utf-8 +2017-07-20 16:35:51.135 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:35:51.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:35:51.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:35:51.154 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:35:52.073 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["74", "8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:35:52.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:35:52.103 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:35:52.105 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3099.4969ms +2017-07-20 16:35:52.108 +05:30 [Information] Request finished in 3141.0546ms 200 +2017-07-20 16:35:52.109 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:35:54.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:54.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:54.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:54.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:54.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3066.4025ms +2017-07-20 16:35:54.225 +05:30 [Information] Request finished in 3084.6976ms 200 application/json; charset=utf-8 +2017-07-20 16:35:54.226 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:35:55.575 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:35:55.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:35:55.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:35:56.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:35:56.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:35:56.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:35:56.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:35:56.109 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:35:56.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:35:56.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:35:56.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:35:56.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:35:59.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:59.275 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:35:59.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:59.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:59.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:59.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:59.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3752.9797ms +2017-07-20 16:35:59.403 +05:30 [Information] Request finished in 3826.6349ms 200 application/json; charset=utf-8 +2017-07-20 16:35:59.404 +05:30 [Debug] Connection id ""0HL6FBL42KRGD"" completed keep alive response. +2017-07-20 16:35:59.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:35:59.550 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:35:59.550 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:35:59.551 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:35:59.554 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3442.1786ms +2017-07-20 16:35:59.556 +05:30 [Information] Request finished in 3461.0911ms 200 application/json; charset=utf-8 +2017-07-20 16:35:59.557 +05:30 [Debug] Connection id ""0HL6FBL42KRGE"" completed keep alive response. +2017-07-20 16:36:00.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf5f2c6bec32"]) - ModelState is Valid +2017-07-20 16:36:00.207 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:36:00.208 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:36:00.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:36:00.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3573.5582ms +2017-07-20 16:36:00.213 +05:30 [Information] Request finished in 3589.2812ms 200 application/json; charset=utf-8 +2017-07-20 16:36:00.214 +05:30 [Debug] Connection id ""0HL6FBL42KRGC"" completed keep alive response. +2017-07-20 16:36:00.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:36:00.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:36:00.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:36:00.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:36:00.999 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:36:01.004 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4893.4159ms +2017-07-20 16:36:01.006 +05:30 [Information] Request finished in 4919.9684ms 200 application/json; charset=utf-8 +2017-07-20 16:36:01.008 +05:30 [Debug] Connection id ""0HL6FBL42KRGB"" completed keep alive response. +2017-07-20 16:41:04.165 +05:30 [Debug] Hosting starting +2017-07-20 16:41:04.380 +05:30 [Debug] Hosting started +2017-07-20 16:41:04.623 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" started. +2017-07-20 16:41:04.623 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" started. +2017-07-20 16:41:04.844 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 16:41:04.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 16:41:04.932 +05:30 [Information] Request finished in 122.2368ms 200 +2017-07-20 16:41:05.049 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" completed keep alive response. +2017-07-20 16:41:05.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 16:41:06.017 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b37dc9ac-895c-4f4a-8770-b217aaf44fc5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 16:41:06.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 16:41:06.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 16:41:06.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 16:41:06.616 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:41:06.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:41:06.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:41:07.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 616.5987ms +2017-07-20 16:41:07.267 +05:30 [Information] Request finished in 2452.6714ms 200 application/json; charset=utf-8 +2017-07-20 16:41:07.270 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" completed keep alive response. +2017-07-20 16:41:42.166 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:41:42.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:41:42.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:41:45.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:41:50.846 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:41:50.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:41:50.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:41:51.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8918.227ms +2017-07-20 16:41:51.111 +05:30 [Information] Request finished in 8949.5299ms 200 application/json; charset=utf-8 +2017-07-20 16:41:51.112 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" completed keep alive response. +2017-07-20 16:41:51.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:41:51.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:41:51.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:41:53.643 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:41:53.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:41:53.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:41:53.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:41:53.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2250.1163ms +2017-07-20 16:41:53.822 +05:30 [Information] Request finished in 2274.9357ms 200 application/json; charset=utf-8 +2017-07-20 16:41:53.822 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" completed keep alive response. +2017-07-20 16:41:56.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:41:56.208 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:41:56.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:41:56.803 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" started. +2017-07-20 16:41:56.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:41:56.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:41:56.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:41:56.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:41:56.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:41:56.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:41:57.563 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" started. +2017-07-20 16:41:57.564 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:41:57.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:41:57.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:42:00.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:42:00.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:42:00.296 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:42:00.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:42:00.511 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:42:00.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:42:00.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:42:00.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4349.7347ms +2017-07-20 16:42:00.606 +05:30 [Information] Request finished in 4401.5327ms 200 application/json; charset=utf-8 +2017-07-20 16:42:00.607 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" completed keep alive response. +2017-07-20 16:42:00.678 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:42:00.680 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:42:00.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:42:00.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:42:00.759 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3937.1491ms +2017-07-20 16:42:00.761 +05:30 [Information] Request finished in 3954.4459ms 200 application/json; charset=utf-8 +2017-07-20 16:42:00.762 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" completed keep alive response. +2017-07-20 16:42:01.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:42:01.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:42:01.375 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:42:01.377 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:42:01.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3817.19ms +2017-07-20 16:42:01.392 +05:30 [Information] Request finished in 3827.6824ms 200 application/json; charset=utf-8 +2017-07-20 16:42:01.393 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" completed keep alive response. +2017-07-20 16:42:02.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:42:02.169 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:42:02.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:42:02.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:42:02.190 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5329.7711ms +2017-07-20 16:42:02.200 +05:30 [Information] Request finished in 5391.9079ms 200 application/json; charset=utf-8 +2017-07-20 16:42:02.200 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" completed keep alive response. +2017-07-20 16:43:04.598 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" received FIN. +2017-07-20 16:43:04.598 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" received FIN. +2017-07-20 16:43:04.599 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" received FIN. +2017-07-20 16:43:04.602 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" received FIN. +2017-07-20 16:43:04.602 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" disconnecting. +2017-07-20 16:43:04.600 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" disconnecting. +2017-07-20 16:43:04.606 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" disconnecting. +2017-07-20 16:43:04.606 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" sending FIN. +2017-07-20 16:43:04.605 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" sending FIN. +2017-07-20 16:43:04.603 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" disconnecting. +2017-07-20 16:43:04.610 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" sending FIN. +2017-07-20 16:43:04.611 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" sending FIN. +2017-07-20 16:43:04.620 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" sent FIN with status "0". +2017-07-20 16:43:04.620 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" sent FIN with status "0". +2017-07-20 16:43:04.628 +05:30 [Debug] Connection id ""0HL6FC01LHR18"" stopped. +2017-07-20 16:43:04.628 +05:30 [Debug] Connection id ""0HL6FC01LHR19"" stopped. +2017-07-20 16:43:04.629 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" sent FIN with status "0". +2017-07-20 16:43:04.628 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" sent FIN with status "0". +2017-07-20 16:43:04.629 +05:30 [Debug] Connection id ""0HL6FC01LHR17"" stopped. +2017-07-20 16:43:04.629 +05:30 [Debug] Connection id ""0HL6FC01LHR16"" stopped. +2017-07-20 16:43:20.653 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" started. +2017-07-20 16:43:20.687 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:43:20.688 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:43:20.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:43:21.294 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" started. +2017-07-20 16:43:21.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:43:21.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:43:21.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:43:22.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:43:22.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:22.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:22.961 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:22.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2271.1897ms +2017-07-20 16:43:22.966 +05:30 [Information] Request finished in 2282.1092ms 200 application/json; charset=utf-8 +2017-07-20 16:43:22.967 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:43:25.121 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:43:25.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:43:25.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:43:26.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:43:26.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:26.202 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:26.204 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:26.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4847.1733ms +2017-07-20 16:43:26.210 +05:30 [Information] Request finished in 4912.4231ms 200 application/json; charset=utf-8 +2017-07-20 16:43:26.210 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:43:26.393 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:43:26.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:43:26.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:43:29.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:43:29.434 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:29.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:29.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:29.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3040.7869ms +2017-07-20 16:43:29.446 +05:30 [Information] Request finished in 3052.6725ms 200 application/json; charset=utf-8 +2017-07-20 16:43:29.447 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:43:29.457 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:43:29.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:43:29.460 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:43:32.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["75", "8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:43:32.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:43:32.362 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:43:32.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 7239.072ms +2017-07-20 16:43:32.368 +05:30 [Information] Request finished in 7250.9797ms 200 +2017-07-20 16:43:32.369 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:43:32.494 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:43:32.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:32.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:32.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:32.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.473ms +2017-07-20 16:43:32.533 +05:30 [Information] Request finished in 3075.8988ms 200 application/json; charset=utf-8 +2017-07-20 16:43:32.533 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:43:32.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:43:32.603 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:43:32.604 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:43:35.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:43:35.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:35.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:35.637 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:35.639 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3033.8534ms +2017-07-20 16:43:35.642 +05:30 [Information] Request finished in 3039.4316ms 200 application/json; charset=utf-8 +2017-07-20 16:43:35.642 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:43:36.996 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:43:36.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:43:36.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:43:37.478 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" started. +2017-07-20 16:43:37.484 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:43:37.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:43:37.486 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:43:37.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:43:37.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:43:37.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:43:39.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:43:39.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:39.199 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:43:39.200 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:39.201 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:39.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2203.4363ms +2017-07-20 16:43:39.205 +05:30 [Information] Request finished in 2207.6313ms 200 application/json; charset=utf-8 +2017-07-20 16:43:39.205 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:43:40.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:43:40.680 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:43:40.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:40.867 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:43:40.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:40.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:40.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3381.0125ms +2017-07-20 16:43:40.873 +05:30 [Information] Request finished in 3391.2425ms 200 application/json; charset=utf-8 +2017-07-20 16:43:40.874 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:43:41.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:43:41.251 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:43:41.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:43:41.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:43:41.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3755.4147ms +2017-07-20 16:43:41.259 +05:30 [Information] Request finished in 3776.0216ms 200 application/json; charset=utf-8 +2017-07-20 16:43:41.260 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" completed keep alive response. +2017-07-20 16:44:35.700 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:44:35.701 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:44:35.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:44:39.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf602522dc9d"]) - ModelState is Valid +2017-07-20 16:44:39.150 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:39.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:39.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:39.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3452.2904ms +2017-07-20 16:44:39.161 +05:30 [Information] Request finished in 3498.0477ms 200 application/json; charset=utf-8 +2017-07-20 16:44:39.162 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:44:40.726 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:44:40.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:44:40.728 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:44:42.946 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:44:43.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:43.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:43.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:43.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2311.8856ms +2017-07-20 16:44:43.044 +05:30 [Information] Request finished in 2319.2052ms 200 application/json; charset=utf-8 +2017-07-20 16:44:43.044 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:44:43.157 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" received FIN. +2017-07-20 16:44:43.158 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" disconnecting. +2017-07-20 16:44:43.161 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" sending FIN. +2017-07-20 16:44:43.161 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" sent FIN with status "0". +2017-07-20 16:44:43.162 +05:30 [Debug] Connection id ""0HL6FC01LHR1C"" stopped. +2017-07-20 16:44:43.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:44:43.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:44:43.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:44:46.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:44:46.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:46.307 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:46.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:46.311 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3137.4241ms +2017-07-20 16:44:46.313 +05:30 [Information] Request finished in 3152.8236ms 200 application/json; charset=utf-8 +2017-07-20 16:44:46.314 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:44:47.658 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:44:47.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:44:47.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:44:48.209 +05:30 [Debug] Connection id ""0HL6FC01LHR1D"" started. +2017-07-20 16:44:48.216 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:44:48.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:44:48.218 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:44:48.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:44:48.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:44:48.219 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:44:48.737 +05:30 [Debug] Connection id ""0HL6FC01LHR1E"" started. +2017-07-20 16:44:48.739 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:44:48.741 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:44:48.746 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:44:51.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:44:51.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:44:51.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:51.212 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:44:51.216 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:51.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:51.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3560.296ms +2017-07-20 16:44:51.235 +05:30 [Information] Request finished in 3571.6075ms 200 application/json; charset=utf-8 +2017-07-20 16:44:51.235 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:44:51.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:51.866 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:44:51.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:51.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:51.873 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3648.5585ms +2017-07-20 16:44:51.876 +05:30 [Information] Request finished in 3663.0976ms 200 application/json; charset=utf-8 +2017-07-20 16:44:51.877 +05:30 [Debug] Connection id ""0HL6FC01LHR1D"" completed keep alive response. +2017-07-20 16:44:52.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:44:52.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:44:52.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:52.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:52.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:52.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3727.2897ms +2017-07-20 16:44:52.498 +05:30 [Information] Request finished in 3758.4767ms 200 application/json; charset=utf-8 +2017-07-20 16:44:52.499 +05:30 [Debug] Connection id ""0HL6FC01LHR1E"" completed keep alive response. +2017-07-20 16:44:52.564 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:52.567 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:44:52.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:52.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:52.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4360.1077ms +2017-07-20 16:44:52.608 +05:30 [Information] Request finished in 4387.8858ms 200 application/json; charset=utf-8 +2017-07-20 16:44:52.608 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:44:55.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:44:55.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:44:55.591 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:44:56.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:44:56.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:44:56.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:44:58.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf608b14d9e0"]) - ModelState is Valid +2017-07-20 16:44:58.677 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:44:58.678 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:44:58.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:44:58.684 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3088.2403ms +2017-07-20 16:44:58.687 +05:30 [Information] Request finished in 3099.0171ms 200 application/json; charset=utf-8 +2017-07-20 16:44:58.688 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:45:00.697 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:45:00.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:45:00.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:45:00.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf608b14d9e0"]) - ModelState is Valid +2017-07-20 16:45:00.744 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:00.744 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:00.745 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:00.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 4562.2466ms +2017-07-20 16:45:00.750 +05:30 [Information] Request finished in 4578.6092ms 200 application/json; charset=utf-8 +2017-07-20 16:45:00.751 +05:30 [Debug] Connection id ""0HL6FC01LHR1D"" completed keep alive response. +2017-07-20 16:45:00.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:45:00.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:45:00.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:45:02.963 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf608b14d9e0"]) - ModelState is Valid +2017-07-20 16:45:02.967 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:02.967 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:02.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:02.973 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2160.1928ms +2017-07-20 16:45:02.977 +05:30 [Information] Request finished in 2171.0478ms 200 application/json; charset=utf-8 +2017-07-20 16:45:02.979 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:45:02.990 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:45:02.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:45:02.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:45:03.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["76", "8d4cf608b14d9e0"]) - ModelState is Valid +2017-07-20 16:45:03.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:45:03.981 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:45:03.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3282.6707ms +2017-07-20 16:45:03.985 +05:30 [Information] Request finished in 3296.9635ms 200 +2017-07-20 16:45:03.986 +05:30 [Debug] Connection id ""0HL6FC01LHR1E"" completed keep alive response. +2017-07-20 16:45:06.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf608b14d9e0"]) - ModelState is Valid +2017-07-20 16:45:06.110 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:06.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:06.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:06.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3113.6423ms +2017-07-20 16:45:06.116 +05:30 [Information] Request finished in 3125.9004ms 200 application/json; charset=utf-8 +2017-07-20 16:45:06.118 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:45:06.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:45:06.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:45:06.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:45:09.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:45:09.216 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:09.217 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:09.218 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:09.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3065.6891ms +2017-07-20 16:45:09.224 +05:30 [Information] Request finished in 3073.4218ms 200 application/json; charset=utf-8 +2017-07-20 16:45:09.225 +05:30 [Debug] Connection id ""0HL6FC01LHR1D"" completed keep alive response. +2017-07-20 16:45:10.511 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:45:10.512 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:45:10.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:45:11.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:45:11.092 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:45:11.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:45:11.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:45:11.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:45:11.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:45:13.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:45:13.647 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:13.647 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:45:13.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:13.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:13.652 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3136.8325ms +2017-07-20 16:45:13.655 +05:30 [Information] Request finished in 3144.1934ms 200 application/json; charset=utf-8 +2017-07-20 16:45:13.656 +05:30 [Debug] Connection id ""0HL6FC01LHR1B"" completed keep alive response. +2017-07-20 16:45:14.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:45:14.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:45:14.599 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:14.600 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:45:14.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:14.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:14.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3505.5384ms +2017-07-20 16:45:14.608 +05:30 [Information] Request finished in 3516.4231ms 200 application/json; charset=utf-8 +2017-07-20 16:45:14.608 +05:30 [Debug] Connection id ""0HL6FC01LHR1E"" completed keep alive response. +2017-07-20 16:45:15.145 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:45:15.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:45:15.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:45:15.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:45:15.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4053.3251ms +2017-07-20 16:45:15.156 +05:30 [Information] Request finished in 4063.506ms 200 application/json; charset=utf-8 +2017-07-20 16:45:15.157 +05:30 [Debug] Connection id ""0HL6FC01LHR1A"" completed keep alive response. +2017-07-20 16:46:24.667 +05:30 [Debug] Hosting starting +2017-07-20 16:46:24.877 +05:30 [Debug] Hosting started +2017-07-20 16:46:25.130 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" started. +2017-07-20 16:46:25.130 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" started. +2017-07-20 16:46:25.328 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 16:46:25.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 16:46:25.404 +05:30 [Information] Request finished in 118.1385ms 200 +2017-07-20 16:46:25.465 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" completed keep alive response. +2017-07-20 16:46:26.171 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 16:46:26.240 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"46b7046c-72f7-4bf5-8ac1-65bfb7d0153e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 16:46:26.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 16:46:26.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 16:46:26.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 16:46:27.054 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:46:27.062 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:46:27.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:46:27.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 962.42ms +2017-07-20 16:46:27.781 +05:30 [Information] Request finished in 2507.4526ms 200 application/json; charset=utf-8 +2017-07-20 16:46:27.784 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" completed keep alive response. +2017-07-20 16:47:05.748 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:47:05.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:47:05.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:47:09.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:47:14.135 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:14.146 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:14.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:14.357 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8594.9834ms +2017-07-20 16:47:14.360 +05:30 [Information] Request finished in 8623.5385ms 200 application/json; charset=utf-8 +2017-07-20 16:47:14.361 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" completed keep alive response. +2017-07-20 16:47:14.703 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:47:14.704 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:47:14.705 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:47:17.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:17.881 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:17.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:17.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:17.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3218.1536ms +2017-07-20 16:47:17.956 +05:30 [Information] Request finished in 3253.0251ms 200 application/json; charset=utf-8 +2017-07-20 16:47:17.956 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" completed keep alive response. +2017-07-20 16:47:22.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:47:22.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:47:22.984 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:47:23.318 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:47:23.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:47:23.330 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:47:24.298 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" started. +2017-07-20 16:47:24.474 +05:30 [Debug] Connection id ""0HL6FC3164TEH"" started. +2017-07-20 16:47:24.487 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:47:24.665 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:47:24.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:47:25.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:47:25.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:47:25.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:47:25.249 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" started. +2017-07-20 16:47:26.187 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:47:26.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:47:26.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:47:27.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:27.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:27.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:27.233 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:27.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4248.0909ms +2017-07-20 16:47:27.239 +05:30 [Information] Request finished in 4273.6535ms 200 application/json; charset=utf-8 +2017-07-20 16:47:27.240 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" completed keep alive response. +2017-07-20 16:47:28.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:28.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:47:28.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:47:28.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:47:28.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:28.345 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:28.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:28.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:28.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5019.1882ms +2017-07-20 16:47:28.354 +05:30 [Information] Request finished in 5100.5758ms 200 application/json; charset=utf-8 +2017-07-20 16:47:28.354 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" completed keep alive response. +2017-07-20 16:47:29.022 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" started. +2017-07-20 16:47:29.037 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:47:29.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:47:29.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:47:29.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:47:29.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:47:29.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:47:29.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:29.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:29.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:47:29.507 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" started. +2017-07-20 16:47:29.543 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:47:29.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:47:29.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:47:29.636 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:29.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:29.686 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:29.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3503.9734ms +2017-07-20 16:47:29.934 +05:30 [Information] Request finished in 3718.2691ms 200 application/json; charset=utf-8 +2017-07-20 16:47:29.934 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" completed keep alive response. +2017-07-20 16:47:30.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:30.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:30.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:30.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:31.066 +05:30 [Debug] Connection id ""0HL6FC3164TEH"" received FIN. +2017-07-20 16:47:31.080 +05:30 [Debug] Connection id ""0HL6FC3164TEH"" disconnecting. +2017-07-20 16:47:31.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5897.2046ms +2017-07-20 16:47:31.091 +05:30 [Information] Connection id ""0HL6FC3164TEH"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-20 16:47:31.099 +05:30 [Information] Request finished in 5920.6117ms 200 application/json; charset=utf-8 +2017-07-20 16:47:31.106 +05:30 [Debug] Connection id ""0HL6FC3164TEH"" stopped. +2017-07-20 16:47:31.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:31.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:31.963 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:31.964 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:31.964 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:31.967 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:31.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3628.7316ms +2017-07-20 16:47:31.972 +05:30 [Information] Request finished in 3664.7463ms 200 application/json; charset=utf-8 +2017-07-20 16:47:31.972 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" completed keep alive response. +2017-07-20 16:47:32.044 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:47:32.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:47:32.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:32.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:32.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:32.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:32.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3432.3642ms +2017-07-20 16:47:32.499 +05:30 [Information] Request finished in 3465.7124ms 200 application/json; charset=utf-8 +2017-07-20 16:47:32.500 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" completed keep alive response. +2017-07-20 16:47:32.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:32.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:32.581 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:32.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3036.9194ms +2017-07-20 16:47:32.669 +05:30 [Information] Request finished in 3159.4741ms 200 application/json; charset=utf-8 +2017-07-20 16:47:32.670 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" completed keep alive response. +2017-07-20 16:47:32.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:32.722 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:32.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:32.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:32.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8060.9955ms +2017-07-20 16:47:32.750 +05:30 [Information] Request finished in 8444.6202ms 200 application/json; charset=utf-8 +2017-07-20 16:47:32.750 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" completed keep alive response. +2017-07-20 16:47:33.291 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:33.291 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:47:33.292 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:33.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:33.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4255.1535ms +2017-07-20 16:47:33.305 +05:30 [Information] Request finished in 4275.8196ms 200 application/json; charset=utf-8 +2017-07-20 16:47:33.306 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" completed keep alive response. +2017-07-20 16:47:36.384 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:47:36.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:47:36.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:47:39.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf60e8bb9c6c"]) - ModelState is Valid +2017-07-20 16:47:39.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:47:39.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:47:39.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:47:39.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.9024ms +2017-07-20 16:47:39.470 +05:30 [Information] Request finished in 3086.7866ms 200 application/json; charset=utf-8 +2017-07-20 16:47:39.471 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" completed keep alive response. +2017-07-20 16:47:41.135 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:47:41.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:47:41.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:47:44.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["77", "8d4cf60e8bb9c6c"]) - ModelState is Valid +2017-07-20 16:47:44.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:47:44.393 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:47:44.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3254.5463ms +2017-07-20 16:47:44.397 +05:30 [Information] Request finished in 3263.0027ms 200 +2017-07-20 16:47:44.397 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" completed keep alive response. +2017-07-20 16:47:57.926 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:47:57.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:47:57.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:48:01.015 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf60e8bb9c6c"]) - ModelState is Valid +2017-07-20 16:48:01.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:48:01.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:48:01.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:48:01.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3096.5454ms +2017-07-20 16:48:01.048 +05:30 [Information] Request finished in 3120.1064ms 200 application/json; charset=utf-8 +2017-07-20 16:48:01.050 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" completed keep alive response. +2017-07-20 16:49:18.923 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" received FIN. +2017-07-20 16:49:18.923 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" received FIN. +2017-07-20 16:49:18.923 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" received FIN. +2017-07-20 16:49:18.925 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" received FIN. +2017-07-20 16:49:18.923 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" disconnecting. +2017-07-20 16:49:18.926 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" received FIN. +2017-07-20 16:49:18.926 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" disconnecting. +2017-07-20 16:49:18.931 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" disconnecting. +2017-07-20 16:49:18.925 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" received FIN. +2017-07-20 16:49:18.933 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" sending FIN. +2017-07-20 16:49:18.931 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" disconnecting. +2017-07-20 16:49:18.933 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" disconnecting. +2017-07-20 16:49:18.939 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" started. +2017-07-20 16:49:18.940 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" sending FIN. +2017-07-20 16:49:18.942 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" sending FIN. +2017-07-20 16:49:18.943 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" sending FIN. +2017-07-20 16:49:18.942 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" sending FIN. +2017-07-20 16:49:18.938 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" disconnecting. +2017-07-20 16:49:18.946 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:49:18.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:49:18.949 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" sent FIN with status "0". +2017-07-20 16:49:18.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:49:18.949 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" sent FIN with status "0". +2017-07-20 16:49:18.950 +05:30 [Debug] Connection id ""0HL6FC3164TEF"" stopped. +2017-07-20 16:49:18.951 +05:30 [Debug] Connection id ""0HL6FC3164TEE"" stopped. +2017-07-20 16:49:18.973 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" sending FIN. +2017-07-20 16:49:18.952 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" sent FIN with status "0". +2017-07-20 16:49:18.974 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" sent FIN with status "0". +2017-07-20 16:49:18.974 +05:30 [Debug] Connection id ""0HL6FC3164TEG"" stopped. +2017-07-20 16:49:18.975 +05:30 [Debug] Connection id ""0HL6FC3164TEJ"" stopped. +2017-07-20 16:49:18.975 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" sent FIN with status "0". +2017-07-20 16:49:18.976 +05:30 [Debug] Connection id ""0HL6FC3164TEI"" stopped. +2017-07-20 16:49:18.977 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" sent FIN with status "0". +2017-07-20 16:49:18.977 +05:30 [Debug] Connection id ""0HL6FC3164TEK"" stopped. +2017-07-20 16:49:22.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf60e8bb9c6c"]) - ModelState is Valid +2017-07-20 16:49:22.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:22.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:22.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:22.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.9905ms +2017-07-20 16:49:22.011 +05:30 [Information] Request finished in 3067.6377ms 200 application/json; charset=utf-8 +2017-07-20 16:49:22.012 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:49:29.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:49:29.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:49:29.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:49:32.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:49:32.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:32.311 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:32.313 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:32.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3222.3684ms +2017-07-20 16:49:32.318 +05:30 [Information] Request finished in 3242.2273ms 200 application/json; charset=utf-8 +2017-07-20 16:49:32.318 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:49:32.413 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:49:32.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:49:32.414 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:49:35.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:49:35.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:35.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:35.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:35.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3082.2473ms +2017-07-20 16:49:35.501 +05:30 [Information] Request finished in 3087.8602ms 200 application/json; charset=utf-8 +2017-07-20 16:49:35.501 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:49:36.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:49:36.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:49:36.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:49:37.461 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" started. +2017-07-20 16:49:37.461 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" started. +2017-07-20 16:49:37.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:49:37.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:49:37.469 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:49:37.471 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:49:37.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:49:37.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:49:37.900 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" started. +2017-07-20 16:49:37.901 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:49:37.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:49:37.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:49:39.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:49:39.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:39.908 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:49:39.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:39.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:39.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3149.8338ms +2017-07-20 16:49:39.914 +05:30 [Information] Request finished in 3155.258ms 200 application/json; charset=utf-8 +2017-07-20 16:49:39.915 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:49:40.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:49:40.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:49:40.798 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:40.799 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:49:40.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:40.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:40.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3329.6261ms +2017-07-20 16:49:40.804 +05:30 [Information] Request finished in 3341.1383ms 200 application/json; charset=utf-8 +2017-07-20 16:49:40.805 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" completed keep alive response. +2017-07-20 16:49:41.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:49:41.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:41.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:41.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:41.153 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3247.6135ms +2017-07-20 16:49:41.158 +05:30 [Information] Request finished in 3256.8217ms 200 application/json; charset=utf-8 +2017-07-20 16:49:41.159 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" completed keep alive response. +2017-07-20 16:49:42.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:42.042 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:49:42.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:42.044 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:42.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4570.3432ms +2017-07-20 16:49:42.048 +05:30 [Information] Request finished in 4580.8247ms 200 application/json; charset=utf-8 +2017-07-20 16:49:42.048 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" completed keep alive response. +2017-07-20 16:49:50.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:49:50.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:49:50.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:49:51.630 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:49:51.635 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:51.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:51.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:51.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1476.4089ms +2017-07-20 16:49:51.670 +05:30 [Information] Request finished in 1489.5436ms 200 application/json; charset=utf-8 +2017-07-20 16:49:51.671 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:49:51.824 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:49:51.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:49:51.833 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:49:55.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:49:55.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:55.004 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:55.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:55.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3171.6209ms +2017-07-20 16:49:55.012 +05:30 [Information] Request finished in 3204.8063ms 200 application/json; charset=utf-8 +2017-07-20 16:49:55.013 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" completed keep alive response. +2017-07-20 16:49:55.020 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:49:55.021 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:49:55.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:49:58.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:49:58.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:49:58.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:49:58.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:49:58.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3035.908ms +2017-07-20 16:49:58.066 +05:30 [Information] Request finished in 3046.1684ms 200 application/json; charset=utf-8 +2017-07-20 16:49:58.067 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" completed keep alive response. +2017-07-20 16:49:58.078 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:49:58.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:49:58.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:50:00.173 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:50:00.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:00.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:00.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:00.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2105.66ms +2017-07-20 16:50:00.195 +05:30 [Information] Request finished in 2117.5797ms 200 application/json; charset=utf-8 +2017-07-20 16:50:00.196 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" completed keep alive response. +2017-07-20 16:50:01.804 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:50:01.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:50:01.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:50:02.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:50:02.305 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:50:02.305 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:50:02.321 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:50:02.322 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:50:02.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:50:02.624 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:50:02.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:50:02.626 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:50:04.907 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:50:04.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:04.913 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:50:04.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:04.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:04.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3108.4171ms +2017-07-20 16:50:04.920 +05:30 [Information] Request finished in 3115.629ms 200 application/json; charset=utf-8 +2017-07-20 16:50:04.921 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:50:05.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:50:05.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:50:05.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:05.589 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:50:05.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:05.590 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:05.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3284.916ms +2017-07-20 16:50:05.603 +05:30 [Information] Request finished in 3302.5459ms 200 application/json; charset=utf-8 +2017-07-20 16:50:05.605 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" completed keep alive response. +2017-07-20 16:50:05.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:50:05.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:05.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:05.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:05.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3150.783ms +2017-07-20 16:50:05.782 +05:30 [Information] Request finished in 3157.5271ms 200 application/json; charset=utf-8 +2017-07-20 16:50:05.782 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" completed keep alive response. +2017-07-20 16:50:05.789 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:50:05.790 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:50:05.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:50:06.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:06.049 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:50:06.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:06.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:06.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3728.8874ms +2017-07-20 16:50:06.058 +05:30 [Information] Request finished in 3758.2923ms 200 application/json; charset=utf-8 +2017-07-20 16:50:06.058 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" completed keep alive response. +2017-07-20 16:50:08.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:50:08.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:50:08.863 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:50:08.864 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:50:08.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3074.0621ms +2017-07-20 16:50:08.887 +05:30 [Information] Request finished in 3097.7257ms 200 application/json; charset=utf-8 +2017-07-20 16:50:08.887 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" completed keep alive response. +2017-07-20 16:51:10.827 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" received FIN. +2017-07-20 16:51:10.827 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" received FIN. +2017-07-20 16:51:10.827 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" received FIN. +2017-07-20 16:51:10.829 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" disconnecting. +2017-07-20 16:51:10.829 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" disconnecting. +2017-07-20 16:51:10.829 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" received FIN. +2017-07-20 16:51:10.830 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" sending FIN. +2017-07-20 16:51:10.831 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" sent FIN with status "0". +2017-07-20 16:51:10.831 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" started. +2017-07-20 16:51:10.831 +05:30 [Debug] Connection id ""0HL6FC3164TEO"" stopped. +2017-07-20 16:51:10.833 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" sending FIN. +2017-07-20 16:51:10.827 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" disconnecting. +2017-07-20 16:51:10.842 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" sending FIN. +2017-07-20 16:51:10.834 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" sent FIN with status "0". +2017-07-20 16:51:10.843 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" sent FIN with status "0". +2017-07-20 16:51:10.844 +05:30 [Debug] Connection id ""0HL6FC3164TEN"" stopped. +2017-07-20 16:51:10.844 +05:30 [Debug] Connection id ""0HL6FC3164TEM"" stopped. +2017-07-20 16:51:10.848 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" disconnecting. +2017-07-20 16:51:10.849 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" sending FIN. +2017-07-20 16:51:10.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:51:10.850 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" sent FIN with status "0". +2017-07-20 16:51:10.851 +05:30 [Debug] Connection id ""0HL6FC3164TEL"" stopped. +2017-07-20 16:51:10.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:51:10.853 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:51:14.037 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:14.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:14.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:14.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:14.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3189.8421ms +2017-07-20 16:51:14.049 +05:30 [Information] Request finished in 3199.4761ms 200 application/json; charset=utf-8 +2017-07-20 16:51:14.050 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" completed keep alive response. +2017-07-20 16:51:14.067 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:51:14.068 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:51:14.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:51:17.110 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:17.114 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:17.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:17.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:17.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.8223ms +2017-07-20 16:51:17.119 +05:30 [Information] Request finished in 3055.8058ms 200 application/json; charset=utf-8 +2017-07-20 16:51:17.120 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" completed keep alive response. +2017-07-20 16:51:17.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:51:17.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:51:17.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:51:19.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:51:19.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:19.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:19.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:19.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2173.4093ms +2017-07-20 16:51:19.314 +05:30 [Information] Request finished in 2187.4134ms 200 application/json; charset=utf-8 +2017-07-20 16:51:19.315 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" completed keep alive response. +2017-07-20 16:51:20.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:51:20.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:51:20.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:51:21.397 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" started. +2017-07-20 16:51:21.405 +05:30 [Debug] Connection id ""0HL6FC3164TER"" started. +2017-07-20 16:51:21.406 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:51:21.414 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:51:21.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:51:21.418 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:51:21.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:51:21.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:51:21.823 +05:30 [Debug] Connection id ""0HL6FC3164TES"" started. +2017-07-20 16:51:21.825 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:51:21.825 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:51:21.826 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:51:23.692 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:51:23.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:51:24.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:24.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:51:24.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:24.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:24.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:24.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2612.5743ms +2017-07-20 16:51:24.037 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:51:24.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:24.040 +05:30 [Information] Request finished in 2639.2284ms 200 application/json; charset=utf-8 +2017-07-20 16:51:24.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:24.041 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" completed keep alive response. +2017-07-20 16:51:24.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3280.2595ms +2017-07-20 16:51:24.077 +05:30 [Information] Request finished in 3291.3585ms 200 application/json; charset=utf-8 +2017-07-20 16:51:24.078 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" completed keep alive response. +2017-07-20 16:51:24.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:51:25.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:25.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:25.116 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:25.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:25.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3292.1223ms +2017-07-20 16:51:25.124 +05:30 [Information] Request finished in 3299.0955ms 200 application/json; charset=utf-8 +2017-07-20 16:51:25.125 +05:30 [Debug] Connection id ""0HL6FC3164TES"" completed keep alive response. +2017-07-20 16:51:25.137 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:51:25.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:51:25.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:51:25.445 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:25.445 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:51:25.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:25.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:25.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4025.545ms +2017-07-20 16:51:25.457 +05:30 [Information] Request finished in 4042.192ms 200 application/json; charset=utf-8 +2017-07-20 16:51:25.458 +05:30 [Debug] Connection id ""0HL6FC3164TER"" completed keep alive response. +2017-07-20 16:51:27.190 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:51:27.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:51:27.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:51:27.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:51:27.320 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:27.321 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:27.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:27.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2237.9483ms +2017-07-20 16:51:27.384 +05:30 [Information] Request finished in 2248.8063ms 200 application/json; charset=utf-8 +2017-07-20 16:51:27.384 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" completed keep alive response. +2017-07-20 16:51:30.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:30.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:30.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:30.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:30.287 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3094.0601ms +2017-07-20 16:51:30.290 +05:30 [Information] Request finished in 3125.6617ms 200 application/json; charset=utf-8 +2017-07-20 16:51:30.291 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" completed keep alive response. +2017-07-20 16:51:31.924 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:51:31.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:51:31.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:51:35.043 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["78", "8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:35.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:51:35.121 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:51:35.123 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3195.8434ms +2017-07-20 16:51:35.128 +05:30 [Information] Request finished in 3204.4653ms 200 +2017-07-20 16:51:35.129 +05:30 [Debug] Connection id ""0HL6FC3164TES"" completed keep alive response. +2017-07-20 16:51:43.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:51:43.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:51:43.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:51:46.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf6137345871"]) - ModelState is Valid +2017-07-20 16:51:46.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:51:46.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:51:46.754 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:51:46.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3322.829ms +2017-07-20 16:51:46.769 +05:30 [Information] Request finished in 3340.3629ms 200 application/json; charset=utf-8 +2017-07-20 16:51:46.769 +05:30 [Debug] Connection id ""0HL6FC3164TER"" completed keep alive response. +2017-07-20 16:53:18.482 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" received FIN. +2017-07-20 16:53:18.483 +05:30 [Debug] Connection id ""0HL6FC3164TER"" received FIN. +2017-07-20 16:53:18.484 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" disconnecting. +2017-07-20 16:53:18.486 +05:30 [Debug] Connection id ""0HL6FC3164TET"" started. +2017-07-20 16:53:18.489 +05:30 [Debug] Connection id ""0HL6FC3164TER"" disconnecting. +2017-07-20 16:53:18.490 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" sending FIN. +2017-07-20 16:53:18.491 +05:30 [Debug] Connection id ""0HL6FC3164TER"" sending FIN. +2017-07-20 16:53:18.487 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" received FIN. +2017-07-20 16:53:18.492 +05:30 [Debug] Connection id ""0HL6FC3164TER"" sent FIN with status "0". +2017-07-20 16:53:18.492 +05:30 [Debug] Connection id ""0HL6FC3164TES"" received FIN. +2017-07-20 16:53:18.494 +05:30 [Debug] Connection id ""0HL6FC3164TER"" stopped. +2017-07-20 16:53:18.495 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" sent FIN with status "0". +2017-07-20 16:53:18.496 +05:30 [Debug] Connection id ""0HL6FC3164TEP"" stopped. +2017-07-20 16:53:18.513 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" disconnecting. +2017-07-20 16:53:18.513 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" sending FIN. +2017-07-20 16:53:18.514 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" sent FIN with status "0". +2017-07-20 16:53:18.514 +05:30 [Debug] Connection id ""0HL6FC3164TEQ"" stopped. +2017-07-20 16:53:18.513 +05:30 [Debug] Connection id ""0HL6FC3164TES"" disconnecting. +2017-07-20 16:53:18.515 +05:30 [Debug] Connection id ""0HL6FC3164TES"" sending FIN. +2017-07-20 16:53:18.516 +05:30 [Debug] Connection id ""0HL6FC3164TES"" sent FIN with status "0". +2017-07-20 16:53:18.516 +05:30 [Debug] Connection id ""0HL6FC3164TES"" stopped. +2017-07-20 16:53:18.517 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 16:53:18.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 16:53:18.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 16:53:21.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 16:53:21.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:21.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:21.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:21.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3342.2113ms +2017-07-20 16:53:21.878 +05:30 [Information] Request finished in 3385.961ms 200 application/json; charset=utf-8 +2017-07-20 16:53:21.878 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:53:22.102 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:53:22.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:53:22.106 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:53:25.193 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:53:25.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:25.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:25.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:25.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3106.0013ms +2017-07-20 16:53:25.229 +05:30 [Information] Request finished in 3197.2176ms 200 application/json; charset=utf-8 +2017-07-20 16:53:25.230 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:53:27.068 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:53:27.069 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:53:27.069 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:53:27.857 +05:30 [Debug] Connection id ""0HL6FC3164TEU"" started. +2017-07-20 16:53:27.857 +05:30 [Debug] Connection id ""0HL6FC3164TEV"" started. +2017-07-20 16:53:27.861 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:53:27.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:53:27.862 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:53:27.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:53:27.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:53:27.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:53:28.553 +05:30 [Debug] Connection id ""0HL6FC3164TF0"" started. +2017-07-20 16:53:28.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:53:28.685 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:53:28.688 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:53:30.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:53:30.366 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:53:30.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:30.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:53:30.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:30.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:30.382 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3310.328ms +2017-07-20 16:53:30.385 +05:30 [Information] Request finished in 3316.6851ms 200 application/json; charset=utf-8 +2017-07-20 16:53:30.385 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:53:31.104 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:53:31.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:31.381 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:53:31.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:31.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:31.385 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3513.7263ms +2017-07-20 16:53:31.387 +05:30 [Information] Request finished in 3527.009ms 200 application/json; charset=utf-8 +2017-07-20 16:53:31.388 +05:30 [Debug] Connection id ""0HL6FC3164TEU"" completed keep alive response. +2017-07-20 16:53:31.544 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:31.545 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:53:31.545 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:31.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:31.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3678.707ms +2017-07-20 16:53:31.552 +05:30 [Information] Request finished in 3690.7102ms 200 application/json; charset=utf-8 +2017-07-20 16:53:31.553 +05:30 [Debug] Connection id ""0HL6FC3164TEV"" completed keep alive response. +2017-07-20 16:53:31.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:53:31.947 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:53:31.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:53:31.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:53:31.977 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3276.3894ms +2017-07-20 16:53:31.981 +05:30 [Information] Request finished in 3314.6328ms 200 application/json; charset=utf-8 +2017-07-20 16:53:31.982 +05:30 [Debug] Connection id ""0HL6FC3164TF0"" completed keep alive response. +2017-07-20 16:54:21.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:54:21.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:54:21.807 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:54:24.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:54:24.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:24.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:25.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:25.048 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3227.3178ms +2017-07-20 16:54:25.053 +05:30 [Information] Request finished in 3247.5804ms 200 application/json; charset=utf-8 +2017-07-20 16:54:25.054 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:54:25.112 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:54:25.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:54:25.113 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:54:28.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:54:28.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:28.232 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:28.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:28.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3123.4554ms +2017-07-20 16:54:28.247 +05:30 [Information] Request finished in 3134.4031ms 200 application/json; charset=utf-8 +2017-07-20 16:54:28.248 +05:30 [Debug] Connection id ""0HL6FC3164TEU"" completed keep alive response. +2017-07-20 16:54:28.312 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 16:54:28.313 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 16:54:28.314 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 16:54:31.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:54:31.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:31.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:31.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:31.380 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3063.7712ms +2017-07-20 16:54:31.383 +05:30 [Information] Request finished in 3105.3835ms 200 application/json; charset=utf-8 +2017-07-20 16:54:31.384 +05:30 [Debug] Connection id ""0HL6FC3164TEV"" completed keep alive response. +2017-07-20 16:54:31.391 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 16:54:31.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 16:54:31.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 16:54:34.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:54:34.467 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:34.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:34.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:34.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3074.5007ms +2017-07-20 16:54:34.472 +05:30 [Information] Request finished in 3084.0867ms 200 application/json; charset=utf-8 +2017-07-20 16:54:34.472 +05:30 [Debug] Connection id ""0HL6FC3164TF0"" completed keep alive response. +2017-07-20 16:54:35.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 16:54:35.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 16:54:35.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 16:54:36.383 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 16:54:36.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 16:54:36.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 16:54:36.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 16:54:36.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 16:54:36.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 16:54:36.991 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:54:36.992 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:54:36.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:54:38.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:54:38.956 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:38.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:54:38.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:38.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:38.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3143.4038ms +2017-07-20 16:54:38.962 +05:30 [Information] Request finished in 3149.3319ms 200 application/json; charset=utf-8 +2017-07-20 16:54:38.963 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:54:39.779 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:54:39.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 16:54:40.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:40.063 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:54:40.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:40.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:40.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3673.5798ms +2017-07-20 16:54:40.068 +05:30 [Information] Request finished in 3704.9208ms 200 application/json; charset=utf-8 +2017-07-20 16:54:40.069 +05:30 [Debug] Connection id ""0HL6FC3164TEV"" completed keep alive response. +2017-07-20 16:54:40.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:54:40.188 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:40.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:40.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:40.195 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3200.2376ms +2017-07-20 16:54:40.200 +05:30 [Information] Request finished in 3207.6187ms 200 application/json; charset=utf-8 +2017-07-20 16:54:40.200 +05:30 [Debug] Connection id ""0HL6FC3164TF0"" completed keep alive response. +2017-07-20 16:54:40.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 16:54:40.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 16:54:40.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 16:54:40.496 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:40.497 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 16:54:40.498 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:40.500 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:40.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4116.5583ms +2017-07-20 16:54:40.507 +05:30 [Information] Request finished in 4143.4859ms 200 application/json; charset=utf-8 +2017-07-20 16:54:40.507 +05:30 [Debug] Connection id ""0HL6FC3164TEU"" completed keep alive response. +2017-07-20 16:54:43.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 16:54:43.361 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:43.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:43.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:43.366 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3125.3915ms +2017-07-20 16:54:43.369 +05:30 [Information] Request finished in 3154.3048ms 200 application/json; charset=utf-8 +2017-07-20 16:54:43.370 +05:30 [Debug] Connection id ""0HL6FC3164TET"" completed keep alive response. +2017-07-20 16:54:54.820 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:54:54.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:54:54.825 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:54:57.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:54:57.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:54:57.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:54:57.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:54:57.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.4769ms +2017-07-20 16:54:57.906 +05:30 [Information] Request finished in 3087.1077ms 200 application/json; charset=utf-8 +2017-07-20 16:54:57.907 +05:30 [Debug] Connection id ""0HL6FC3164TEV"" completed keep alive response. +2017-07-20 16:55:00.483 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 16:55:00.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 16:55:00.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 16:55:01.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["79", "8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:55:01.696 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 16:55:01.698 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 16:55:01.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 1211.8643ms +2017-07-20 16:55:01.703 +05:30 [Information] Request finished in 1221.0381ms 200 +2017-07-20 16:55:01.704 +05:30 [Debug] Connection id ""0HL6FC3164TF0"" completed keep alive response. +2017-07-20 16:55:06.340 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 16:55:06.342 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 16:55:06.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 16:55:09.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 16:55:09.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 16:55:09.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 16:55:09.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 16:55:09.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3083.6981ms +2017-07-20 16:55:09.431 +05:30 [Information] Request finished in 3092.3733ms 200 application/json; charset=utf-8 +2017-07-20 16:55:09.432 +05:30 [Debug] Connection id ""0HL6FC3164TEU"" completed keep alive response. +2017-07-20 17:04:45.676 +05:30 [Debug] Hosting starting +2017-07-20 17:04:45.917 +05:30 [Debug] Hosting started +2017-07-20 17:04:45.946 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" started. +2017-07-20 17:04:45.946 +05:30 [Debug] Connection id ""0HL6FCD98B9AU"" started. +2017-07-20 17:04:46.480 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 17:04:46.565 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 17:04:46.628 +05:30 [Information] Request finished in 498.138ms 200 +2017-07-20 17:04:46.729 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" completed keep alive response. +2017-07-20 17:04:47.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 17:04:47.820 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"9e40ce07-e1f5-4031-9e7a-1792ae6b4f70"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 17:04:48.035 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 17:04:48.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 17:04:48.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 17:04:48.234 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:04:48.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:04:48.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:04:48.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 549.7499ms +2017-07-20 17:04:48.802 +05:30 [Information] Request finished in 2624.5268ms 200 application/json; charset=utf-8 +2017-07-20 17:04:48.806 +05:30 [Debug] Connection id ""0HL6FCD98B9AU"" completed keep alive response. +2017-07-20 17:05:03.698 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:05:03.699 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:05:03.702 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:05:07.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 17:05:11.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:05:11.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:05:11.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:05:11.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7826.0668ms +2017-07-20 17:05:11.551 +05:30 [Information] Request finished in 7868.043ms 200 application/json; charset=utf-8 +2017-07-20 17:05:11.554 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" completed keep alive response. +2017-07-20 17:05:27.531 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:05:27.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:05:27.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:05:28.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:05:29.474 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:05:29.476 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:05:29.478 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:05:29.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2069.0057ms +2017-07-20 17:05:29.610 +05:30 [Information] Request finished in 2080.0087ms 200 application/json; charset=utf-8 +2017-07-20 17:05:29.611 +05:30 [Debug] Connection id ""0HL6FCD98B9AU"" completed keep alive response. +2017-07-20 17:05:29.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:05:29.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:05:29.953 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:05:33.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:05:33.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:05:33.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:05:33.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:05:33.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3200.5978ms +2017-07-20 17:05:33.158 +05:30 [Information] Request finished in 3213.4756ms 200 application/json; charset=utf-8 +2017-07-20 17:05:33.159 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" completed keep alive response. +2017-07-20 17:05:36.596 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:05:36.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:05:36.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:05:39.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 17:05:39.670 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:05:39.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:05:39.672 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:05:39.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.2621ms +2017-07-20 17:05:39.679 +05:30 [Information] Request finished in 3086.3085ms 200 application/json; charset=utf-8 +2017-07-20 17:05:39.680 +05:30 [Debug] Connection id ""0HL6FCD98B9AU"" completed keep alive response. +2017-07-20 17:05:57.290 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:05:57.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:05:57.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:05:59.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:05:59.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:05:59.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:05:59.488 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:05:59.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2196.4611ms +2017-07-20 17:05:59.497 +05:30 [Information] Request finished in 2209.0304ms 200 application/json; charset=utf-8 +2017-07-20 17:05:59.497 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" completed keep alive response. +2017-07-20 17:05:59.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:05:59.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:05:59.597 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:06:02.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:06:02.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:06:02.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:06:02.645 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:06:02.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3048.7147ms +2017-07-20 17:06:02.650 +05:30 [Information] Request finished in 3059.5005ms 200 application/json; charset=utf-8 +2017-07-20 17:06:02.651 +05:30 [Debug] Connection id ""0HL6FCD98B9AU"" completed keep alive response. +2017-07-20 17:06:05.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:06:05.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:06:05.921 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:06:08.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 17:06:08.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:06:08.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:06:08.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:06:08.996 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3073.3397ms +2017-07-20 17:06:08.998 +05:30 [Information] Request finished in 3078.737ms 200 application/json; charset=utf-8 +2017-07-20 17:06:08.999 +05:30 [Debug] Connection id ""0HL6FCD98B9AT"" completed keep alive response. +2017-07-20 17:06:33.127 +05:30 [Debug] Hosting starting +2017-07-20 17:06:33.661 +05:30 [Debug] Hosting started +2017-07-20 17:06:33.744 +05:30 [Debug] Connection id ""0HL6FCE9CCLPN"" started. +2017-07-20 17:06:33.744 +05:30 [Debug] Connection id ""0HL6FCE9CCLPM"" started. +2017-07-20 17:06:34.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 17:06:34.333 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 17:06:34.463 +05:30 [Information] Request finished in 135.0315ms 200 +2017-07-20 17:06:34.542 +05:30 [Debug] Connection id ""0HL6FCE9CCLPN"" completed keep alive response. +2017-07-20 17:06:35.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 17:06:35.959 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a35a6477-3706-4b4e-8628-14678df70104"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 17:06:36.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 17:06:36.720 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 17:06:36.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 17:06:36.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:06:36.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:06:37.210 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:06:37.995 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1472.6456ms +2017-07-20 17:06:38.333 +05:30 [Information] Request finished in 3958.5545ms 200 application/json; charset=utf-8 +2017-07-20 17:06:38.366 +05:30 [Debug] Connection id ""0HL6FCE9CCLPM"" completed keep alive response. +2017-07-20 17:06:53.669 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:06:53.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:06:53.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:06:57.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 17:07:01.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:07:01.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:07:01.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:07:02.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8253.6001ms +2017-07-20 17:07:02.159 +05:30 [Information] Request finished in 8413.553ms 200 application/json; charset=utf-8 +2017-07-20 17:07:02.160 +05:30 [Debug] Connection id ""0HL6FCE9CCLPN"" completed keep alive response. +2017-07-20 17:07:10.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:07:10.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:07:10.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:07:12.771 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:07:13.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:07:13.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:07:13.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:07:13.423 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2897.4182ms +2017-07-20 17:07:13.425 +05:30 [Information] Request finished in 2918.6633ms 200 application/json; charset=utf-8 +2017-07-20 17:07:13.426 +05:30 [Debug] Connection id ""0HL6FCE9CCLPM"" completed keep alive response. +2017-07-20 17:07:20.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:07:20.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:07:20.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:07:22.631 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:07:22.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:07:22.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:07:22.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:07:22.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2257.4759ms +2017-07-20 17:07:22.772 +05:30 [Information] Request finished in 2270.1316ms 200 application/json; charset=utf-8 +2017-07-20 17:07:22.772 +05:30 [Debug] Connection id ""0HL6FCE9CCLPN"" completed keep alive response. +2017-07-20 17:10:00.616 +05:30 [Debug] Hosting starting +2017-07-20 17:10:00.886 +05:30 [Debug] Hosting started +2017-07-20 17:10:00.971 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" started. +2017-07-20 17:10:00.978 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" started. +2017-07-20 17:10:01.200 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 17:10:01.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 17:10:01.303 +05:30 [Information] Request finished in 151.607ms 200 +2017-07-20 17:10:01.439 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:10:02.596 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 17:10:02.657 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"fc8c5416-efeb-4a00-85b4-89ec79292465"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 17:10:02.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 17:10:03.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 17:10:03.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 17:10:03.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:10:03.226 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:03.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:03.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 907.1926ms +2017-07-20 17:10:03.938 +05:30 [Information] Request finished in 2825.556ms 200 application/json; charset=utf-8 +2017-07-20 17:10:03.941 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:10:19.897 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:10:19.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:10:19.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:10:24.488 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf61c0c6bac0"]) - ModelState is Valid +2017-07-20 17:10:26.727 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:10:26.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:10:26.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:10:29.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:10:31.060 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:31.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:31.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:31.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11226.7841ms +2017-07-20 17:10:31.187 +05:30 [Information] Request finished in 11291.3066ms 200 application/json; charset=utf-8 +2017-07-20 17:10:31.198 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:10:31.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:31.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:31.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:31.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5061.1717ms +2017-07-20 17:10:31.801 +05:30 [Information] Request finished in 5073.537ms 200 application/json; charset=utf-8 +2017-07-20 17:10:31.802 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:10:32.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:10:32.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:10:32.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:10:35.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:10:35.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:35.950 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:35.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:35.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3163.7882ms +2017-07-20 17:10:35.984 +05:30 [Information] Request finished in 3175.7692ms 200 application/json; charset=utf-8 +2017-07-20 17:10:35.984 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:10:38.450 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:10:38.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:10:38.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:10:38.989 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" started. +2017-07-20 17:10:38.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:10:38.993 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:10:38.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:10:38.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:10:38.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:10:39.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:10:39.511 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" started. +2017-07-20 17:10:39.515 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:10:39.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:10:39.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:10:41.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:10:41.689 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:41.689 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:10:41.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:41.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:41.693 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3239.2312ms +2017-07-20 17:10:41.695 +05:30 [Information] Request finished in 3245.0692ms 200 application/json; charset=utf-8 +2017-07-20 17:10:41.695 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:10:42.442 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:10:42.474 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:10:42.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:10:42.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:42.813 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:10:42.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:42.815 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:42.888 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3891.2726ms +2017-07-20 17:10:42.891 +05:30 [Information] Request finished in 3899.8151ms 200 application/json; charset=utf-8 +2017-07-20 17:10:42.892 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:10:42.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:42.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:42.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:42.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3413.1898ms +2017-07-20 17:10:42.937 +05:30 [Information] Request finished in 3422.363ms 200 application/json; charset=utf-8 +2017-07-20 17:10:42.938 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" completed keep alive response. +2017-07-20 17:10:44.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:10:44.227 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:10:44.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:10:44.231 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:10:44.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5235.1101ms +2017-07-20 17:10:44.246 +05:30 [Information] Request finished in 5253.2581ms 200 application/json; charset=utf-8 +2017-07-20 17:10:44.247 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" completed keep alive response. +2017-07-20 17:10:59.122 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:10:59.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:10:59.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:11:01.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:11:01.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:11:01.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:11:01.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:11:01.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2389.5987ms +2017-07-20 17:11:01.520 +05:30 [Information] Request finished in 2398.3207ms 200 application/json; charset=utf-8 +2017-07-20 17:11:01.521 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:11:05.866 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:11:05.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:11:05.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:11:09.057 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:11:09.061 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:11:09.061 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:11:09.063 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:11:09.065 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3195.65ms +2017-07-20 17:11:09.068 +05:30 [Information] Request finished in 3214.199ms 200 application/json; charset=utf-8 +2017-07-20 17:11:09.069 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:11:20.199 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:11:20.200 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:11:20.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:11:23.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:11:23.237 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:11:23.238 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:11:23.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:11:23.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3038.7271ms +2017-07-20 17:11:23.243 +05:30 [Information] Request finished in 3045.2454ms 200 application/json; charset=utf-8 +2017-07-20 17:11:23.244 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" completed keep alive response. +2017-07-20 17:11:34.272 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 17:11:34.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 17:11:34.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 17:11:36.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:11:36.407 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:11:36.408 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:11:36.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:11:36.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2135.35ms +2017-07-20 17:11:36.412 +05:30 [Information] Request finished in 2146.4275ms 200 application/json; charset=utf-8 +2017-07-20 17:11:36.413 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" completed keep alive response. +2017-07-20 17:11:39.809 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:11:39.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:11:39.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:11:42.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:11:42.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:11:42.858 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:11:42.859 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:11:42.861 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.8347ms +2017-07-20 17:11:42.864 +05:30 [Information] Request finished in 3066.861ms 200 application/json; charset=utf-8 +2017-07-20 17:11:42.865 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:12:07.214 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:12:07.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:12:07.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:12:09.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:12:09.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:09.339 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:09.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:09.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2122.7609ms +2017-07-20 17:12:09.345 +05:30 [Information] Request finished in 2137.2394ms 200 application/json; charset=utf-8 +2017-07-20 17:12:09.345 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:12:09.355 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:12:09.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:12:09.356 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:12:12.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:12:12.401 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:12.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:12.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:12.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3046.9766ms +2017-07-20 17:12:12.407 +05:30 [Information] Request finished in 3053.5118ms 200 application/json; charset=utf-8 +2017-07-20 17:12:12.407 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" completed keep alive response. +2017-07-20 17:12:13.766 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:12:13.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:12:13.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:12:14.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:12:14.389 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:12:14.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:12:14.390 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:12:14.391 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:12:14.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:12:15.086 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:12:15.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:12:15.088 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:12:16.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:12:16.840 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:16.841 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:12:16.841 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:16.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:16.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3075.6969ms +2017-07-20 17:12:16.852 +05:30 [Information] Request finished in 3085.9122ms 200 application/json; charset=utf-8 +2017-07-20 17:12:16.853 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" completed keep alive response. +2017-07-20 17:12:17.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:12:17.275 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:17.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:17.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:17.282 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2190.2583ms +2017-07-20 17:12:17.285 +05:30 [Information] Request finished in 2206.5182ms 200 application/json; charset=utf-8 +2017-07-20 17:12:17.285 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" completed keep alive response. +2017-07-20 17:12:17.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:12:17.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:12:17.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:12:17.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:12:17.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:12:17.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:17.764 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:12:17.765 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:17.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:17.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3376.3137ms +2017-07-20 17:12:17.772 +05:30 [Information] Request finished in 3403.8223ms 200 application/json; charset=utf-8 +2017-07-20 17:12:17.772 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" completed keep alive response. +2017-07-20 17:12:18.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:18.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:12:18.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:18.277 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:18.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3884.9208ms +2017-07-20 17:12:18.282 +05:30 [Information] Request finished in 3913.4149ms 200 application/json; charset=utf-8 +2017-07-20 17:12:18.282 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" completed keep alive response. +2017-07-20 17:12:20.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:12:20.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:12:20.646 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:12:20.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:12:20.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3362.8175ms +2017-07-20 17:12:20.917 +05:30 [Information] Request finished in 3547.3ms 200 application/json; charset=utf-8 +2017-07-20 17:12:20.917 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" completed keep alive response. +2017-07-20 17:13:30.147 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" received FIN. +2017-07-20 17:13:30.147 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" received FIN. +2017-07-20 17:13:30.148 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" disconnecting. +2017-07-20 17:13:30.147 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" received FIN. +2017-07-20 17:13:30.149 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" received FIN. +2017-07-20 17:13:30.151 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" sending FIN. +2017-07-20 17:13:30.152 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" disconnecting. +2017-07-20 17:13:30.151 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" disconnecting. +2017-07-20 17:13:30.156 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" disconnecting. +2017-07-20 17:13:30.162 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" sending FIN. +2017-07-20 17:13:30.163 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" sending FIN. +2017-07-20 17:13:30.166 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" sent FIN with status "0". +2017-07-20 17:13:30.166 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" sent FIN with status "0". +2017-07-20 17:13:30.169 +05:30 [Debug] Connection id ""0HL6FCG74KM04"" stopped. +2017-07-20 17:13:30.169 +05:30 [Debug] Connection id ""0HL6FCG74KM03"" stopped. +2017-07-20 17:13:30.170 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" started. +2017-07-20 17:13:30.170 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" sent FIN with status "0". +2017-07-20 17:13:30.172 +05:30 [Debug] Connection id ""0HL6FCG74KM06"" stopped. +2017-07-20 17:13:30.171 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" sending FIN. +2017-07-20 17:13:30.173 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" sent FIN with status "0". +2017-07-20 17:13:30.174 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:13:30.175 +05:30 [Debug] Connection id ""0HL6FCG74KM05"" stopped. +2017-07-20 17:13:30.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:13:30.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:13:32.293 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:13:32.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:13:32.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:13:32.303 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:13:32.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2128.2046ms +2017-07-20 17:13:32.312 +05:30 [Information] Request finished in 2137.4804ms 200 application/json; charset=utf-8 +2017-07-20 17:13:32.312 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" completed keep alive response. +2017-07-20 17:13:34.173 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:13:34.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:13:34.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:13:37.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:13:37.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:13:37.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:13:37.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:13:37.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.153ms +2017-07-20 17:13:37.239 +05:30 [Information] Request finished in 3075.4949ms 200 application/json; charset=utf-8 +2017-07-20 17:13:37.239 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" completed keep alive response. +2017-07-20 17:13:46.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:13:46.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:13:46.345 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:13:49.418 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:13:49.425 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:13:49.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:13:49.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:13:49.429 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3082.1841ms +2017-07-20 17:13:49.432 +05:30 [Information] Request finished in 3093.241ms 200 application/json; charset=utf-8 +2017-07-20 17:13:49.433 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" completed keep alive response. +2017-07-20 17:14:20.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:14:20.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:14:20.970 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:14:21.490 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" started. +2017-07-20 17:14:21.496 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" started. +2017-07-20 17:14:21.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:14:21.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:14:21.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:14:21.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:14:21.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:14:21.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:14:22.164 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" started. +2017-07-20 17:14:22.172 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:14:22.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:14:22.207 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:14:23.773 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:14:24.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:14:24.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:14:24.086 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:14:24.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:14:24.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:14:24.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3119.7174ms +2017-07-20 17:14:24.094 +05:30 [Information] Request finished in 3127.467ms 200 application/json; charset=utf-8 +2017-07-20 17:14:24.095 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" completed keep alive response. +2017-07-20 17:14:24.728 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:14:25.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:14:25.013 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:14:25.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:14:25.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:14:25.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3502.4733ms +2017-07-20 17:14:25.022 +05:30 [Information] Request finished in 3525.005ms 200 application/json; charset=utf-8 +2017-07-20 17:14:25.022 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" completed keep alive response. +2017-07-20 17:14:25.285 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:14:25.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:14:25.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:14:25.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:14:25.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.193ms +2017-07-20 17:14:25.295 +05:30 [Information] Request finished in 3124.306ms 200 application/json; charset=utf-8 +2017-07-20 17:14:25.296 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" completed keep alive response. +2017-07-20 17:14:25.303 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:14:25.303 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:14:25.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:14:25.340 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:14:25.340 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:14:25.341 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:14:25.342 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:14:25.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3817.3204ms +2017-07-20 17:14:25.345 +05:30 [Information] Request finished in 3831.743ms 200 application/json; charset=utf-8 +2017-07-20 17:14:25.346 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" completed keep alive response. +2017-07-20 17:14:28.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:14:28.403 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:14:28.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:14:28.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:14:28.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3100.4623ms +2017-07-20 17:14:28.408 +05:30 [Information] Request finished in 3105.3766ms 200 application/json; charset=utf-8 +2017-07-20 17:14:28.408 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" completed keep alive response. +2017-07-20 17:16:00.938 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" received FIN. +2017-07-20 17:16:00.942 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" received FIN. +2017-07-20 17:16:00.947 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" received FIN. +2017-07-20 17:16:00.952 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" disconnecting. +2017-07-20 17:16:00.963 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" sending FIN. +2017-07-20 17:16:00.968 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" received FIN. +2017-07-20 17:16:00.968 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" disconnecting. +2017-07-20 17:16:00.973 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" sent FIN with status "0". +2017-07-20 17:16:00.942 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" disconnecting. +2017-07-20 17:16:00.974 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" disconnecting. +2017-07-20 17:16:00.975 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" sending FIN. +2017-07-20 17:16:00.977 +05:30 [Debug] Connection id ""0HL6FCG74KM0A"" stopped. +2017-07-20 17:16:00.979 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" sending FIN. +2017-07-20 17:16:00.980 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" sending FIN. +2017-07-20 17:16:00.980 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" sent FIN with status "0". +2017-07-20 17:16:00.986 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" sent FIN with status "0". +2017-07-20 17:16:00.988 +05:30 [Debug] Connection id ""0HL6FCG74KM07"" stopped. +2017-07-20 17:16:00.992 +05:30 [Debug] Connection id ""0HL6FCG74KM08"" stopped. +2017-07-20 17:16:00.993 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" sent FIN with status "0". +2017-07-20 17:16:00.997 +05:30 [Debug] Connection id ""0HL6FCG74KM09"" stopped. +2017-07-20 17:16:58.314 +05:30 [Debug] Connection id ""0HL6FCG74KM0B"" started. +2017-07-20 17:16:58.320 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:16:58.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:16:58.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:17:01.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:17:01.355 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:17:01.356 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:17:01.357 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:17:01.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3036.052ms +2017-07-20 17:17:01.362 +05:30 [Information] Request finished in 3043.5484ms 200 application/json; charset=utf-8 +2017-07-20 17:17:01.362 +05:30 [Debug] Connection id ""0HL6FCG74KM0B"" completed keep alive response. +2017-07-20 17:17:03.069 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:17:03.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:17:03.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:17:06.223 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:17:06.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:17:06.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:17:06.230 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:17:06.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3158.6584ms +2017-07-20 17:17:06.238 +05:30 [Information] Request finished in 3171.071ms 200 application/json; charset=utf-8 +2017-07-20 17:17:06.240 +05:30 [Debug] Connection id ""0HL6FCG74KM0B"" completed keep alive response. +2017-07-20 17:17:06.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:17:06.269 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:17:06.270 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:17:08.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:17:08.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:17:08.419 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:17:08.421 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:17:08.425 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2151.6302ms +2017-07-20 17:17:08.428 +05:30 [Information] Request finished in 2159.4413ms 200 application/json; charset=utf-8 +2017-07-20 17:17:08.429 +05:30 [Debug] Connection id ""0HL6FCG74KM0B"" completed keep alive response. +2017-07-20 17:19:17.046 +05:30 [Debug] Hosting starting +2017-07-20 17:19:17.320 +05:30 [Debug] Hosting started +2017-07-20 17:19:17.358 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" started. +2017-07-20 17:19:17.358 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" started. +2017-07-20 17:19:17.546 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 17:19:17.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 17:19:17.625 +05:30 [Information] Request finished in 110.1919ms 200 +2017-07-20 17:19:17.691 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:19:18.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 17:19:18.504 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"16cdeda1-5545-487b-b0da-da436d3cc874"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 17:19:18.686 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 17:19:18.881 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 17:19:18.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 17:19:18.949 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:19:18.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:19:19.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:19:19.414 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 716.5764ms +2017-07-20 17:19:19.526 +05:30 [Information] Request finished in 2003.396ms 200 application/json; charset=utf-8 +2017-07-20 17:19:19.529 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" completed keep alive response. +2017-07-20 17:19:38.732 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:19:38.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:19:38.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:19:42.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:19:47.747 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:19:47.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:19:47.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:19:47.919 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9178.2392ms +2017-07-20 17:19:47.926 +05:30 [Information] Request finished in 9194.0069ms 200 application/json; charset=utf-8 +2017-07-20 17:19:47.927 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:19:48.290 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-20 17:19:48.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-20 17:19:48.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-20 17:19:51.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:19:51.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:19:51.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:19:51.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:19:51.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3274.0789ms +2017-07-20 17:19:51.579 +05:30 [Information] Request finished in 3291.4794ms 200 application/json; charset=utf-8 +2017-07-20 17:19:51.579 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" completed keep alive response. +2017-07-20 17:19:51.757 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:19:51.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:19:51.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:19:53.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:19:53.854 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:19:53.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:19:53.857 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:19:53.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2097.2046ms +2017-07-20 17:19:53.870 +05:30 [Information] Request finished in 2109.498ms 200 application/json; charset=utf-8 +2017-07-20 17:19:53.871 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:19:56.952 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:19:56.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:19:56.957 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:20:00.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:20:00.022 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:00.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:00.024 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:00.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3066.2069ms +2017-07-20 17:20:00.029 +05:30 [Information] Request finished in 3083.0498ms 200 application/json; charset=utf-8 +2017-07-20 17:20:00.029 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" completed keep alive response. +2017-07-20 17:20:00.044 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:20:00.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:20:00.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:20:03.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:20:03.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:03.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:03.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:03.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3216.8684ms +2017-07-20 17:20:03.270 +05:30 [Information] Request finished in 3226.4719ms 200 application/json; charset=utf-8 +2017-07-20 17:20:03.271 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:20:06.027 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:20:06.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:20:06.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:20:06.455 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" started. +2017-07-20 17:20:06.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:20:06.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:20:06.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:20:06.517 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:20:06.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:20:06.573 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:20:07.460 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" started. +2017-07-20 17:20:07.463 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:20:07.477 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:20:07.479 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:20:08.330 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:20:08.514 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:08.514 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:20:08.515 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:08.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:08.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2487.9462ms +2017-07-20 17:20:08.521 +05:30 [Information] Request finished in 2497.8152ms 200 application/json; charset=utf-8 +2017-07-20 17:20:08.521 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" completed keep alive response. +2017-07-20 17:20:09.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:20:09.744 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:20:10.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:10.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:20:10.022 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:10.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:10.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3628.1933ms +2017-07-20 17:20:10.118 +05:30 [Information] Request finished in 3665.6564ms 200 application/json; charset=utf-8 +2017-07-20 17:20:10.119 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:20:10.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:20:10.517 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:10.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:10.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:10.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3040.6578ms +2017-07-20 17:20:10.529 +05:30 [Information] Request finished in 3066.1254ms 200 application/json; charset=utf-8 +2017-07-20 17:20:10.530 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" completed keep alive response. +2017-07-20 17:20:10.548 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:20:10.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:20:10.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:20:11.533 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:11.535 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:20:11.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:11.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:11.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4970.7407ms +2017-07-20 17:20:11.551 +05:30 [Information] Request finished in 5089.1835ms 200 application/json; charset=utf-8 +2017-07-20 17:20:11.552 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" completed keep alive response. +2017-07-20 17:20:11.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:20:12.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:20:12.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:20:12.306 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:20:12.352 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1750.2507ms +2017-07-20 17:20:12.563 +05:30 [Information] Request finished in 1868.3264ms 200 application/json; charset=utf-8 +2017-07-20 17:20:12.564 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" completed keep alive response. +2017-07-20 17:21:05.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:21:05.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:21:05.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:21:08.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:21:08.193 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:08.196 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:08.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:08.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3105.6818ms +2017-07-20 17:21:08.206 +05:30 [Information] Request finished in 3119.1655ms 200 application/json; charset=utf-8 +2017-07-20 17:21:08.208 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:21:09.520 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:21:09.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:21:09.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:21:12.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:21:12.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:12.597 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:12.645 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:12.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3124.5ms +2017-07-20 17:21:12.724 +05:30 [Information] Request finished in 3178.1926ms 200 application/json; charset=utf-8 +2017-07-20 17:21:12.725 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" completed keep alive response. +2017-07-20 17:21:12.736 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" received FIN. +2017-07-20 17:21:12.737 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" received FIN. +2017-07-20 17:21:12.745 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" disconnecting. +2017-07-20 17:21:12.745 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" disconnecting. +2017-07-20 17:21:12.770 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" sending FIN. +2017-07-20 17:21:12.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:21:12.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:21:12.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:21:12.775 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" sending FIN. +2017-07-20 17:21:12.779 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" sent FIN with status "0". +2017-07-20 17:21:12.782 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" sent FIN with status "0". +2017-07-20 17:21:12.790 +05:30 [Debug] Connection id ""0HL6FCLCUNRHF"" stopped. +2017-07-20 17:21:12.790 +05:30 [Debug] Connection id ""0HL6FCLCUNRHD"" stopped. +2017-07-20 17:21:15.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:21:15.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:15.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:15.064 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:15.066 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2289.8005ms +2017-07-20 17:21:15.068 +05:30 [Information] Request finished in 2302.9581ms 200 application/json; charset=utf-8 +2017-07-20 17:21:15.069 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:21:16.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:21:16.826 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:21:16.827 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:21:18.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:21:18.357 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" started. +2017-07-20 17:21:18.387 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:21:18.624 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:21:18.623 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:21:18.623 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" started. +2017-07-20 17:21:18.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:21:18.716 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:21:18.728 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:21:18.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:21:18.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:21:19.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:21:19.841 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:19.842 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:21:19.842 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:19.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:19.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3020.5631ms +2017-07-20 17:21:19.933 +05:30 [Information] Request finished in 3091.9403ms 200 application/json; charset=utf-8 +2017-07-20 17:21:19.934 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" completed keep alive response. +2017-07-20 17:21:20.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:21:20.987 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:20.988 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:20.989 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:20.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2252.2163ms +2017-07-20 17:21:20.994 +05:30 [Information] Request finished in 2276.0924ms 200 application/json; charset=utf-8 +2017-07-20 17:21:20.994 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" completed keep alive response. +2017-07-20 17:21:21.002 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:21:21.003 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:21:21.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:21:21.801 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:21:22.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:21:22.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:22.574 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:21:22.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:22.575 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:22.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3847.2888ms +2017-07-20 17:21:22.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:22.592 +05:30 [Information] Request finished in 4199.4165ms 200 application/json; charset=utf-8 +2017-07-20 17:21:22.592 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:21:22.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:22.594 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" completed keep alive response. +2017-07-20 17:21:22.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:22.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3988.8652ms +2017-07-20 17:21:22.624 +05:30 [Information] Request finished in 4913.7718ms 200 application/json; charset=utf-8 +2017-07-20 17:21:22.625 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" completed keep alive response. +2017-07-20 17:21:24.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:21:24.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:21:24.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:21:24.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:21:24.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3208.3666ms +2017-07-20 17:21:24.217 +05:30 [Information] Request finished in 3215.5252ms 200 application/json; charset=utf-8 +2017-07-20 17:21:24.218 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" completed keep alive response. +2017-07-20 17:22:54.821 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" received FIN. +2017-07-20 17:22:54.822 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" received FIN. +2017-07-20 17:22:54.821 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" received FIN. +2017-07-20 17:22:54.823 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" disconnecting. +2017-07-20 17:22:54.823 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" disconnecting. +2017-07-20 17:22:54.823 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" received FIN. +2017-07-20 17:22:54.829 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" sending FIN. +2017-07-20 17:22:54.830 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" started. +2017-07-20 17:22:54.830 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" sending FIN. +2017-07-20 17:22:54.834 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" sent FIN with status "0". +2017-07-20 17:22:54.835 +05:30 [Debug] Connection id ""0HL6FCLCUNRHG"" stopped. +2017-07-20 17:22:54.830 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" disconnecting. +2017-07-20 17:22:54.836 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" sent FIN with status "0". +2017-07-20 17:22:54.838 +05:30 [Debug] Connection id ""0HL6FCLCUNRHI"" stopped. +2017-07-20 17:22:54.837 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" sending FIN. +2017-07-20 17:22:54.839 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" sent FIN with status "0". +2017-07-20 17:22:54.839 +05:30 [Debug] Connection id ""0HL6FCLCUNRHE"" stopped. +2017-07-20 17:22:54.825 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" disconnecting. +2017-07-20 17:22:54.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:22:54.842 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" sending FIN. +2017-07-20 17:22:54.843 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" sent FIN with status "0". +2017-07-20 17:22:54.843 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:22:54.844 +05:30 [Debug] Connection id ""0HL6FCLCUNRHH"" stopped. +2017-07-20 17:22:54.845 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:22:57.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:22:57.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:22:57.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:22:57.964 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:22:57.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3119.9389ms +2017-07-20 17:22:57.975 +05:30 [Information] Request finished in 3141.3201ms 200 application/json; charset=utf-8 +2017-07-20 17:22:57.976 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" completed keep alive response. +2017-07-20 17:22:58.003 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:22:58.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:22:58.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:23:01.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:23:01.122 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:01.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:01.126 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:01.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3107.7195ms +2017-07-20 17:23:01.140 +05:30 [Information] Request finished in 3138.7765ms 200 application/json; charset=utf-8 +2017-07-20 17:23:01.140 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" completed keep alive response. +2017-07-20 17:23:01.150 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:23:01.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:23:01.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:23:03.240 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:23:03.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:03.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:03.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:03.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2098.7599ms +2017-07-20 17:23:03.257 +05:30 [Information] Request finished in 2108.6028ms 200 application/json; charset=utf-8 +2017-07-20 17:23:03.258 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" completed keep alive response. +2017-07-20 17:23:05.462 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:23:05.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:23:05.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:23:06.258 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" started. +2017-07-20 17:23:06.261 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" started. +2017-07-20 17:23:06.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:23:06.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:23:06.279 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:23:06.291 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:23:06.293 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:23:06.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:23:07.747 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" started. +2017-07-20 17:23:07.749 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:23:07.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:23:07.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:23:09.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:23:09.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:09.179 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:23:09.179 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:09.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:09.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3716.4098ms +2017-07-20 17:23:09.196 +05:30 [Information] Request finished in 3733.1644ms 200 application/json; charset=utf-8 +2017-07-20 17:23:09.197 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" completed keep alive response. +2017-07-20 17:23:09.338 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:23:09.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:09.342 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:09.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:09.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1593.0146ms +2017-07-20 17:23:09.348 +05:30 [Information] Request finished in 1598.9192ms 200 application/json; charset=utf-8 +2017-07-20 17:23:09.349 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" completed keep alive response. +2017-07-20 17:23:09.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:23:09.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:23:09.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:23:09.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:23:09.557 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:23:09.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:09.771 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:23:09.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:09.773 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:09.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3494.5738ms +2017-07-20 17:23:09.778 +05:30 [Information] Request finished in 3515.7504ms 200 application/json; charset=utf-8 +2017-07-20 17:23:09.779 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" completed keep alive response. +2017-07-20 17:23:10.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:10.991 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:23:10.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:10.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:10.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4699.492ms +2017-07-20 17:23:10.997 +05:30 [Information] Request finished in 4734.0295ms 200 application/json; charset=utf-8 +2017-07-20 17:23:10.998 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" completed keep alive response. +2017-07-20 17:23:11.466 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:23:11.538 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:11.538 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:11.539 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:11.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2177.0113ms +2017-07-20 17:23:11.553 +05:30 [Information] Request finished in 2193.0564ms 200 application/json; charset=utf-8 +2017-07-20 17:23:11.553 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" completed keep alive response. +2017-07-20 17:23:31.886 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:23:31.888 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:23:31.891 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:23:34.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:23:34.141 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:34.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:34.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:34.167 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2250.5547ms +2017-07-20 17:23:34.172 +05:30 [Information] Request finished in 2285.4477ms 200 application/json; charset=utf-8 +2017-07-20 17:23:34.178 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" completed keep alive response. +2017-07-20 17:23:35.581 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-20 17:23:35.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-20 17:23:35.584 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-20 17:23:38.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["80", "8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:23:38.681 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-20 17:23:38.688 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-20 17:23:38.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3103.3015ms +2017-07-20 17:23:38.691 +05:30 [Information] Request finished in 3111.7625ms 200 +2017-07-20 17:23:38.692 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" completed keep alive response. +2017-07-20 17:23:43.642 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:23:43.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:23:43.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:23:46.732 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:23:46.735 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:23:46.736 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:23:46.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:23:46.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3093.6433ms +2017-07-20 17:23:46.741 +05:30 [Information] Request finished in 3209.623ms 200 application/json; charset=utf-8 +2017-07-20 17:23:46.742 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" completed keep alive response. +2017-07-20 17:24:52.393 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" received FIN. +2017-07-20 17:24:52.393 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" received FIN. +2017-07-20 17:24:52.394 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" disconnecting. +2017-07-20 17:24:52.395 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" received FIN. +2017-07-20 17:24:52.395 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" received FIN. +2017-07-20 17:24:52.433 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" disconnecting. +2017-07-20 17:24:52.439 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" sending FIN. +2017-07-20 17:24:52.440 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" disconnecting. +2017-07-20 17:24:52.439 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" disconnecting. +2017-07-20 17:24:52.443 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" sending FIN. +2017-07-20 17:24:52.441 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" started. +2017-07-20 17:24:52.446 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" sending FIN. +2017-07-20 17:24:52.451 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" sent FIN with status "0". +2017-07-20 17:24:52.455 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" sent FIN with status "0". +2017-07-20 17:24:52.456 +05:30 [Debug] Connection id ""0HL6FCLCUNRHJ"" stopped. +2017-07-20 17:24:52.461 +05:30 [Debug] Connection id ""0HL6FCLCUNRHK"" stopped. +2017-07-20 17:24:52.462 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" sending FIN. +2017-07-20 17:24:52.467 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" sent FIN with status "0". +2017-07-20 17:24:52.469 +05:30 [Debug] Connection id ""0HL6FCLCUNRHM"" stopped. +2017-07-20 17:24:52.468 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" sent FIN with status "0". +2017-07-20 17:24:52.470 +05:30 [Debug] Connection id ""0HL6FCLCUNRHL"" stopped. +2017-07-20 17:24:52.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:24:52.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:24:52.473 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:24:53.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf64273e30db"]) - ModelState is Valid +2017-07-20 17:24:53.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:24:53.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:24:53.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:24:53.852 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1376.1508ms +2017-07-20 17:24:53.855 +05:30 [Information] Request finished in 1383.2029ms 200 application/json; charset=utf-8 +2017-07-20 17:24:53.855 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" completed keep alive response. +2017-07-20 17:26:38.311 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" received FIN. +2017-07-20 17:26:38.311 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" started. +2017-07-20 17:26:38.312 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" disconnecting. +2017-07-20 17:26:38.315 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" sending FIN. +2017-07-20 17:26:38.317 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" sent FIN with status "0". +2017-07-20 17:26:38.318 +05:30 [Debug] Connection id ""0HL6FCLCUNRHN"" stopped. +2017-07-20 17:26:38.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:26:38.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:26:38.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:26:41.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:26:41.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:41.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:41.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:41.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3409.1826ms +2017-07-20 17:26:41.742 +05:30 [Information] Request finished in 3424.4371ms 200 application/json; charset=utf-8 +2017-07-20 17:26:41.744 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" completed keep alive response. +2017-07-20 17:26:41.999 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:26:42.000 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:26:42.001 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:26:45.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:26:45.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:45.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:45.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:45.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3058.4947ms +2017-07-20 17:26:45.071 +05:30 [Information] Request finished in 3069.9085ms 200 application/json; charset=utf-8 +2017-07-20 17:26:45.072 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" completed keep alive response. +2017-07-20 17:26:47.064 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:26:47.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:26:47.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:26:47.663 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" started. +2017-07-20 17:26:47.664 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" started. +2017-07-20 17:26:47.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:26:47.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:26:47.675 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:26:47.680 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:26:47.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:26:47.682 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:26:48.527 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" started. +2017-07-20 17:26:48.532 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:26:48.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:26:48.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:26:49.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:26:49.675 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:49.676 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:26:49.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:49.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:49.687 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2618.5133ms +2017-07-20 17:26:49.691 +05:30 [Information] Request finished in 2626.8439ms 200 application/json; charset=utf-8 +2017-07-20 17:26:49.692 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" completed keep alive response. +2017-07-20 17:26:49.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:26:50.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:50.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:50.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:50.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 1569.8118ms +2017-07-20 17:26:50.113 +05:30 [Information] Request finished in 1580.2103ms 200 application/json; charset=utf-8 +2017-07-20 17:26:50.114 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" completed keep alive response. +2017-07-20 17:26:50.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:26:50.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:26:51.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:51.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:26:51.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:51.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:51.096 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3417.1096ms +2017-07-20 17:26:51.105 +05:30 [Information] Request finished in 3437.1752ms 200 application/json; charset=utf-8 +2017-07-20 17:26:51.105 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" completed keep alive response. +2017-07-20 17:26:52.669 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:26:52.670 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:26:52.671 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:26:52.694 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:26:52.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5013.3015ms +2017-07-20 17:26:52.717 +05:30 [Information] Request finished in 5046.1045ms 200 application/json; charset=utf-8 +2017-07-20 17:26:52.719 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" completed keep alive response. +2017-07-20 17:26:54.812 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:26:54.813 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:26:54.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:26:57.934 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:27:00.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:27:00.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:27:00.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:27:02.504 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:27:02.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:27:02.660 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:27:02.666 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:27:02.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:27:02.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 7874.2876ms +2017-07-20 17:27:02.698 +05:30 [Information] Request finished in 7898.3273ms 200 application/json; charset=utf-8 +2017-07-20 17:27:02.698 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" completed keep alive response. +2017-07-20 17:27:03.418 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:27:03.419 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:27:03.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter"' and content type '""' to write the response. +2017-07-20 17:27:03.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:27:03.428 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 3028.8484ms +2017-07-20 17:27:03.434 +05:30 [Information] Request finished in 3068.6405ms 204 +2017-07-20 17:27:03.434 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" completed keep alive response. +2017-07-20 17:29:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" received FIN. +2017-07-20 17:29:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" received FIN. +2017-07-20 17:29:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" disconnecting. +2017-07-20 17:29:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" sending FIN. +2017-07-20 17:29:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" received FIN. +2017-07-20 17:29:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" sent FIN with status "0". +2017-07-20 17:29:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" disconnecting. +2017-07-20 17:29:17.330 +05:30 [Debug] Connection id ""0HL6FCLCUNRHQ"" stopped. +2017-07-20 17:29:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" received FIN. +2017-07-20 17:29:17.332 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" sending FIN. +2017-07-20 17:29:17.332 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" sent FIN with status "0". +2017-07-20 17:29:17.333 +05:30 [Debug] Connection id ""0HL6FCLCUNRHO"" stopped. +2017-07-20 17:29:17.345 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" disconnecting. +2017-07-20 17:29:17.349 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" sending FIN. +2017-07-20 17:29:17.349 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" sent FIN with status "0". +2017-07-20 17:29:17.350 +05:30 [Debug] Connection id ""0HL6FCLCUNRHP"" stopped. +2017-07-20 17:29:17.346 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" disconnecting. +2017-07-20 17:29:17.353 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" sending FIN. +2017-07-20 17:29:17.354 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" sent FIN with status "0". +2017-07-20 17:29:17.355 +05:30 [Debug] Connection id ""0HL6FCLCUNRHR"" stopped. +2017-07-20 17:32:02.398 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" started. +2017-07-20 17:32:02.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:32:02.402 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:32:02.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:32:05.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:05.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:05.751 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:05.752 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:05.753 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:05.754 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3349.9916ms +2017-07-20 17:32:05.756 +05:30 [Information] Request finished in 3355.5572ms 200 application/json; charset=utf-8 +2017-07-20 17:32:05.757 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:06.209 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:32:06.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:32:06.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:32:09.318 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:32:10.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:10.190 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:10.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.HttpNoContentOutputFormatter"' and content type '""' to write the response. +2017-07-20 17:32:10.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:10.193 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 3982.087ms +2017-07-20 17:32:10.195 +05:30 [Information] Request finished in 3998.2969ms 204 +2017-07-20 17:32:10.195 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:12.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:32:12.582 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:32:12.583 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:32:13.284 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" started. +2017-07-20 17:32:13.285 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:32:13.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:32:13.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:32:15.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:16.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:32:16.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:16.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:16.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:16.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3120.7904ms +2017-07-20 17:32:16.412 +05:30 [Information] Request finished in 3127.2773ms 200 application/json; charset=utf-8 +2017-07-20 17:32:16.413 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:32:16.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:32:16.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:32:16.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:32:17.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:17.189 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:17.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:17.192 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" started. +2017-07-20 17:32:17.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:17.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1&userId=1&profileId=187231345114052 0 +2017-07-20 17:32:17.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-07-20 17:32:17.200 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4614.4965ms +2017-07-20 17:32:17.201 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-07-20 17:32:17.206 +05:30 [Information] Request finished in 4622.8483ms 200 application/json; charset=utf-8 +2017-07-20 17:32:17.208 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:19.513 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:32:19.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:19.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:19.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:19.573 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3142.2083ms +2017-07-20 17:32:19.587 +05:30 [Information] Request finished in 3161.8525ms 200 application/json; charset=utf-8 +2017-07-20 17:32:19.587 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:32:20.324 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1", "1", "187231345114052"]) - ModelState is Valid +2017-07-20 17:32:21.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:21.960 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:21.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-20 17:32:21.962 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:21.964 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 4759.8957ms +2017-07-20 17:32:21.967 +05:30 [Information] Request finished in 4770.8377ms 200 text/plain; charset=utf-8 +2017-07-20 17:32:21.968 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:32:22.013 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:32:22.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:32:22.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:32:25.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:32:25.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:25.102 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:25.103 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:25.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3088.0327ms +2017-07-20 17:32:25.107 +05:30 [Information] Request finished in 3094.2432ms 200 application/json; charset=utf-8 +2017-07-20 17:32:25.108 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:25.115 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:32:25.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:32:25.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:32:28.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:32:28.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:28.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:28.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:28.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3155.7311ms +2017-07-20 17:32:28.276 +05:30 [Information] Request finished in 3161.7575ms 200 application/json; charset=utf-8 +2017-07-20 17:32:28.277 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:32:28.285 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:32:28.286 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:32:28.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:32:31.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:31.362 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:31.363 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:31.374 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:31.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3087.3295ms +2017-07-20 17:32:31.388 +05:30 [Information] Request finished in 3105.0829ms 200 application/json; charset=utf-8 +2017-07-20 17:32:31.389 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:32:33.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:32:33.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:32:33.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:32:33.674 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:32:33.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:32:33.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:32:33.689 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:32:33.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:32:33.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:32:34.034 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" started. +2017-07-20 17:32:34.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:32:34.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:32:34.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:32:35.339 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:35.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:35.372 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:35.372 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:35.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:35.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2482.8944ms +2017-07-20 17:32:35.640 +05:30 [Information] Request finished in 2581.5087ms 200 application/json; charset=utf-8 +2017-07-20 17:32:35.643 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:36.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:36.848 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:37.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:37.076 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:37.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:37.116 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:37.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:32:37.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:37.133 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:37.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3434.1499ms +2017-07-20 17:32:37.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:37.144 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.7072ms +2017-07-20 17:32:37.148 +05:30 [Information] Request finished in 3551.432ms 200 application/json; charset=utf-8 +2017-07-20 17:32:37.149 +05:30 [Information] Request finished in 3110.1562ms 200 application/json; charset=utf-8 +2017-07-20 17:32:37.150 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:32:37.150 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" completed keep alive response. +2017-07-20 17:32:37.387 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:32:37.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:32:37.388 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:32:37.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:37.733 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:32:37.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:37.746 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:37.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4069.5702ms +2017-07-20 17:32:37.762 +05:30 [Information] Request finished in 4166.4609ms 200 application/json; charset=utf-8 +2017-07-20 17:32:37.764 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:32:40.457 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:32:40.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:40.493 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:40.494 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:40.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3106.5426ms +2017-07-20 17:32:40.499 +05:30 [Information] Request finished in 3112.764ms 200 application/json; charset=utf-8 +2017-07-20 17:32:40.499 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:42.388 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-20 17:32:42.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-20 17:32:42.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-20 17:32:45.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:45.486 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:45.486 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:45.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:45.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3097.9435ms +2017-07-20 17:32:45.494 +05:30 [Information] Request finished in 3106.1837ms 200 application/json; charset=utf-8 +2017-07-20 17:32:45.494 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" completed keep alive response. +2017-07-20 17:32:45.503 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-20 17:32:45.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-20 17:32:45.509 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-20 17:32:48.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:32:48.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:48.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:48.622 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:48.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3111.0789ms +2017-07-20 17:32:48.627 +05:30 [Information] Request finished in 3126.5493ms 200 application/json; charset=utf-8 +2017-07-20 17:32:48.628 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:32:49.940 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 209 +2017-07-20 17:32:49.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-07-20 17:32:49.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-07-20 17:32:52.972 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAE3acOS3yZCIUrd9UgKbw7WsVBlmKPZChXZC1SN3SRQNbu5p0rqzOYTpnuquERkx7PSTKRCs3r5xgdI8C774vVZBzrHymZADgxaSDqc9OQlKvPLHgIBs9Is0ZASrqoBzR9dHlfhZAqQ8S4gJCLa2nHJF3G3uj8LJAZDZD", "1", "1"]) - ModelState is Valid +2017-07-20 17:32:53.665 +05:30 [Error] {"id":"187231345114052","birthday":"12/17/1993","cover":{"id":"118538431983344","offset_x":40,"offset_y":0,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/15823608_118538431983344_5000271662632656929_n.jpg?oh=008b52e566592c3e28a81b48611e4c08&oe=59EFA6C6"},"email":"soumyapanda@globussoft.in","gender":"male","name":"Soumya Panda"} +2017-07-20 17:32:54.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:54.743 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:54.744 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:54.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 4801.7636ms +2017-07-20 17:32:54.750 +05:30 [Information] Request finished in 4808.7067ms 200 application/json; charset=utf-8 +2017-07-20 17:32:54.750 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:32:54.826 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:32:54.827 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:32:54.835 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:32:57.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:32:57.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:32:57.929 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:32:57.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:32:57.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3095.6714ms +2017-07-20 17:32:57.958 +05:30 [Information] Request finished in 3130.3492ms 200 application/json; charset=utf-8 +2017-07-20 17:32:57.959 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:32:57.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:32:57.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:32:57.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:33:01.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:33:01.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:01.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:01.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:01.062 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3061.4428ms +2017-07-20 17:33:01.066 +05:30 [Information] Request finished in 3085.2637ms 200 application/json; charset=utf-8 +2017-07-20 17:33:01.066 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" completed keep alive response. +2017-07-20 17:33:01.072 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:33:01.074 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:33:01.076 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:33:04.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:04.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:04.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:04.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:04.169 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3087.6036ms +2017-07-20 17:33:04.174 +05:30 [Information] Request finished in 3102.4811ms 200 application/json; charset=utf-8 +2017-07-20 17:33:04.175 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:33:05.404 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:33:05.406 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:33:05.408 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:33:06.233 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:33:06.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:33:06.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:33:06.293 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:33:06.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:33:06.302 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:33:06.604 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:33:06.604 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:33:06.605 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:33:08.483 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:08.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:08.490 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:08.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:08.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:08.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3083.5756ms +2017-07-20 17:33:08.496 +05:30 [Information] Request finished in 3092.8762ms 200 application/json; charset=utf-8 +2017-07-20 17:33:08.498 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:33:08.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:33:08.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:08.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:08.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:08.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2239.7576ms +2017-07-20 17:33:08.851 +05:30 [Information] Request finished in 2246.3872ms 200 application/json; charset=utf-8 +2017-07-20 17:33:08.851 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:33:08.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:33:08.923 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:33:08.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:33:09.391 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:09.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:09.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:09.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:09.790 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:09.793 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:09.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3552.6434ms +2017-07-20 17:33:09.799 +05:30 [Information] Request finished in 3607.6802ms 200 application/json; charset=utf-8 +2017-07-20 17:33:09.801 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:33:10.460 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:10.461 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:10.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:10.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:10.466 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4162.0465ms +2017-07-20 17:33:10.476 +05:30 [Information] Request finished in 4237.8963ms 200 application/json; charset=utf-8 +2017-07-20 17:33:10.477 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" completed keep alive response. +2017-07-20 17:33:11.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:33:11.691 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:33:11.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:33:11.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:33:12.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:12.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:12.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:12.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3104.8479ms +2017-07-20 17:33:12.058 +05:30 [Information] Request finished in 3159.3781ms 200 application/json; charset=utf-8 +2017-07-20 17:33:12.059 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:33:14.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:15.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:15.010 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:15.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:15.012 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:15.014 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3320.0388ms +2017-07-20 17:33:15.018 +05:30 [Information] Request finished in 3326.4432ms 200 application/json; charset=utf-8 +2017-07-20 17:33:15.018 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:33:15.033 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:33:15.038 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:33:15.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:33:17.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:33:18.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:18.139 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:18.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:18.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:18.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 3107.0528ms +2017-07-20 17:33:18.151 +05:30 [Information] Request finished in 3129.0061ms 200 application/json; charset=utf-8 +2017-07-20 17:33:18.151 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" completed keep alive response. +2017-07-20 17:33:45.176 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Shareathon/AddGroupShareathon?Facebookaccountid=187231345114052&Timeintervalminutes=20&userId=1 multipart/form-data; boundary=----WebKitFormBoundaryD9cx9CuBbhlfVg26 313 +2017-07-20 17:33:45.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/AddGroupShareathon"'. +2017-07-20 17:33:45.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.AddGroupShareathon (Api.Socioboard)" +2017-07-20 17:33:48.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.AddGroupShareathon (Api.Socioboard)" with arguments (["1", "187231345114052", "20"]) - ModelState is Valid +2017-07-20 17:33:49.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.AddGroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:49.627 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:49.628 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-20 17:33:49.630 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:49.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.AddGroupShareathon (Api.Socioboard)" in 4447.5101ms +2017-07-20 17:33:49.638 +05:30 [Information] Request finished in 4464.1816ms 200 text/plain; charset=utf-8 +2017-07-20 17:33:49.639 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" completed keep alive response. +2017-07-20 17:33:49.773 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:33:49.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:33:49.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:33:52.871 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:33:53.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:53.186 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:53.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:53.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:53.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3394.4409ms +2017-07-20 17:33:53.206 +05:30 [Information] Request finished in 3466.7848ms 200 application/json; charset=utf-8 +2017-07-20 17:33:53.207 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" completed keep alive response. +2017-07-20 17:33:54.590 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:33:54.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:33:54.592 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:33:57.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:33:58.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:33:58.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:33:58.397 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:33:58.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:33:58.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 3806.0529ms +2017-07-20 17:33:58.402 +05:30 [Information] Request finished in 3812.2461ms 200 application/json; charset=utf-8 +2017-07-20 17:33:58.402 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" completed keep alive response. +2017-07-20 17:35:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" received FIN. +2017-07-20 17:35:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" received FIN. +2017-07-20 17:35:17.330 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" received FIN. +2017-07-20 17:35:17.330 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" disconnecting. +2017-07-20 17:35:17.332 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" sending FIN. +2017-07-20 17:35:17.328 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" received FIN. +2017-07-20 17:35:17.338 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" disconnecting. +2017-07-20 17:35:17.339 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" sending FIN. +2017-07-20 17:35:17.339 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" sent FIN with status "0". +2017-07-20 17:35:17.337 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" sent FIN with status "0". +2017-07-20 17:35:17.329 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" disconnecting. +2017-07-20 17:35:17.340 +05:30 [Debug] Connection id ""0HL6FCLCUNRHT"" stopped. +2017-07-20 17:35:17.341 +05:30 [Debug] Connection id ""0HL6FCLCUNRHS"" stopped. +2017-07-20 17:35:17.343 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" sending FIN. +2017-07-20 17:35:17.343 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" sent FIN with status "0". +2017-07-20 17:35:17.344 +05:30 [Debug] Connection id ""0HL6FCLCUNRHV"" stopped. +2017-07-20 17:35:17.330 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" disconnecting. +2017-07-20 17:35:17.348 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" sending FIN. +2017-07-20 17:35:17.348 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" sent FIN with status "0". +2017-07-20 17:35:17.349 +05:30 [Debug] Connection id ""0HL6FCLCUNRHU"" stopped. +2017-07-20 17:46:06.319 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" started. +2017-07-20 17:46:06.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:46:06.344 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:46:06.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:46:09.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:46:12.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:46:12.086 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:46:12.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:46:12.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:46:12.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 5745.1679ms +2017-07-20 17:46:12.094 +05:30 [Information] Request finished in 5771.1228ms 200 application/json; charset=utf-8 +2017-07-20 17:46:12.095 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" completed keep alive response. +2017-07-20 17:47:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" received FIN. +2017-07-20 17:47:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" disconnecting. +2017-07-20 17:47:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" sending FIN. +2017-07-20 17:47:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" sent FIN with status "0". +2017-07-20 17:47:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRI0"" stopped. +2017-07-20 17:49:31.307 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" started. +2017-07-20 17:49:31.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:49:31.315 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:49:31.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:49:34.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:49:34.390 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:49:34.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:49:34.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:49:34.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.4426ms +2017-07-20 17:49:34.397 +05:30 [Information] Request finished in 3087.9668ms 200 application/json; charset=utf-8 +2017-07-20 17:49:34.399 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" completed keep alive response. +2017-07-20 17:49:34.444 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:49:34.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:49:34.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:49:37.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:49:37.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:49:37.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:49:37.514 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:49:37.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.1095ms +2017-07-20 17:49:37.525 +05:30 [Information] Request finished in 3079.6054ms 200 application/json; charset=utf-8 +2017-07-20 17:49:37.527 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" completed keep alive response. +2017-07-20 17:49:37.574 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:49:37.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:49:37.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:49:40.617 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:49:40.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:49:40.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:49:40.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:49:40.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3050.1144ms +2017-07-20 17:49:40.632 +05:30 [Information] Request finished in 3076.7447ms 200 application/json; charset=utf-8 +2017-07-20 17:49:40.633 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" completed keep alive response. +2017-07-20 17:49:43.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:49:43.384 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:49:43.385 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:49:43.441 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" started. +2017-07-20 17:49:43.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:49:43.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:49:43.463 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:49:45.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:49:45.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:49:45.767 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:49:45.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:49:45.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:49:45.820 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2383.6723ms +2017-07-20 17:49:45.886 +05:30 [Information] Request finished in 2461.5357ms 200 application/json; charset=utf-8 +2017-07-20 17:49:45.887 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" completed keep alive response. +2017-07-20 17:49:47.281 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:49:47.572 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:49:47.573 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:49:47.573 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:49:47.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:49:47.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 4109.9728ms +2017-07-20 17:49:47.578 +05:30 [Information] Request finished in 4131.313ms 200 application/json; charset=utf-8 +2017-07-20 17:49:47.579 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" completed keep alive response. +2017-07-20 17:50:19.165 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:50:19.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:50:19.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:50:22.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:50:23.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:50:23.609 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:50:23.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:50:23.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:50:23.614 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 4442.3551ms +2017-07-20 17:50:23.617 +05:30 [Information] Request finished in 4464.7666ms 200 application/json; charset=utf-8 +2017-07-20 17:50:23.618 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" completed keep alive response. +2017-07-20 17:51:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" received FIN. +2017-07-20 17:51:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" disconnecting. +2017-07-20 17:51:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" sending FIN. +2017-07-20 17:51:17.328 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" sent FIN with status "0". +2017-07-20 17:51:17.328 +05:30 [Debug] Connection id ""0HL6FCLCUNRI2"" stopped. +2017-07-20 17:51:53.279 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" started. +2017-07-20 17:51:53.295 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" received FIN. +2017-07-20 17:51:53.296 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" disconnecting. +2017-07-20 17:51:53.297 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" sending FIN. +2017-07-20 17:51:53.298 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" sent FIN with status "0". +2017-07-20 17:51:53.298 +05:30 [Debug] Connection id ""0HL6FCLCUNRI1"" stopped. +2017-07-20 17:51:53.329 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-20 17:51:53.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-20 17:51:53.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-20 17:51:56.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-20 17:51:56.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:51:56.735 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:51:56.756 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:51:56.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3429.3895ms +2017-07-20 17:51:56.796 +05:30 [Information] Request finished in 3488.2739ms 200 application/json; charset=utf-8 +2017-07-20 17:51:56.800 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" completed keep alive response. +2017-07-20 17:51:56.923 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:51:56.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:51:56.929 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:51:59.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:51:59.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:51:59.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:00.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:00.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3071.9535ms +2017-07-20 17:52:00.006 +05:30 [Information] Request finished in 3084.094ms 200 application/json; charset=utf-8 +2017-07-20 17:52:00.007 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" completed keep alive response. +2017-07-20 17:52:06.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:52:06.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:52:06.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:52:06.997 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" started. +2017-07-20 17:52:07.134 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:52:07.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:52:07.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:52:08.787 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" started. +2017-07-20 17:52:08.788 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" started. +2017-07-20 17:52:08.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:52:08.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:52:08.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:52:08.801 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:52:08.802 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:52:08.803 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:52:09.582 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" started. +2017-07-20 17:52:10.126 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:52:10.127 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:52:10.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:52:10.893 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:10.920 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:11.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:11.160 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:11.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:11.197 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:11.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:11.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:11.217 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:11.218 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:11.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2399.8528ms +2017-07-20 17:52:11.269 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:11.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:11.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:11.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:11.331 +05:30 [Information] Request finished in 2481.4444ms 200 application/json; charset=utf-8 +2017-07-20 17:52:11.334 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" completed keep alive response. +2017-07-20 17:52:11.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4130.525ms +2017-07-20 17:52:11.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:11.540 +05:30 [Information] Request finished in 4473.3607ms 200 application/json; charset=utf-8 +2017-07-20 17:52:11.541 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" completed keep alive response. +2017-07-20 17:52:11.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4710.9065ms +2017-07-20 17:52:11.629 +05:30 [Information] Request finished in 4869.6599ms 200 application/json; charset=utf-8 +2017-07-20 17:52:11.632 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" completed keep alive response. +2017-07-20 17:52:12.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:12.506 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:12.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:12.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:12.510 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3705.427ms +2017-07-20 17:52:12.513 +05:30 [Information] Request finished in 3715.8874ms 200 application/json; charset=utf-8 +2017-07-20 17:52:12.514 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" completed keep alive response. +2017-07-20 17:52:12.799 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:52:12.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:52:12.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:52:13.435 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:52:13.505 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-20 17:52:13.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-20 17:52:13.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-20 17:52:13.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-20 17:52:13.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-20 17:52:13.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-20 17:52:13.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:13.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:13.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:13.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3466.4169ms +2017-07-20 17:52:13.599 +05:30 [Information] Request finished in 3472.8883ms 200 application/json; charset=utf-8 +2017-07-20 17:52:13.599 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" completed keep alive response. +2017-07-20 17:52:14.181 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:52:14.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:52:14.183 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:52:15.117 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:15.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:15.129 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:15.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:15.215 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:15.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2415.5497ms +2017-07-20 17:52:15.534 +05:30 [Information] Request finished in 2699.3808ms 200 application/json; charset=utf-8 +2017-07-20 17:52:15.542 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" completed keep alive response. +2017-07-20 17:52:16.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:16.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:17.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:52:17.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:52:17.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:52:17.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:17.553 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:17.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:17.563 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:17.563 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:17.564 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:17.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:17.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:17.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:52:17.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4085.9275ms +2017-07-20 17:52:17.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4095.5989ms +2017-07-20 17:52:17.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:17.619 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:17.621 +05:30 [Information] Request finished in 4133.8155ms 200 application/json; charset=utf-8 +2017-07-20 17:52:17.623 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" completed keep alive response. +2017-07-20 17:52:17.619 +05:30 [Information] Request finished in 4132.4045ms 200 application/json; charset=utf-8 +2017-07-20 17:52:17.628 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" completed keep alive response. +2017-07-20 17:52:17.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:17.668 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3483.297ms +2017-07-20 17:52:17.675 +05:30 [Information] Request finished in 3492.4334ms 200 application/json; charset=utf-8 +2017-07-20 17:52:17.678 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" completed keep alive response. +2017-07-20 17:52:17.732 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-20 17:52:17.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-20 17:52:17.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-20 17:52:20.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:52:20.908 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:20.909 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:20.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:20.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:20.914 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3378.9536ms +2017-07-20 17:52:20.916 +05:30 [Information] Request finished in 3445.8435ms 200 application/json; charset=utf-8 +2017-07-20 17:52:20.917 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" completed keep alive response. +2017-07-20 17:52:20.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-20 17:52:21.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:21.023 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:21.028 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:21.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3295.0185ms +2017-07-20 17:52:21.037 +05:30 [Information] Request finished in 3309.097ms 200 application/json; charset=utf-8 +2017-07-20 17:52:21.037 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" completed keep alive response. +2017-07-20 17:52:31.105 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:52:31.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:52:31.107 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:52:34.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:52:35.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:52:35.465 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:52:35.465 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:52:35.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:52:35.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 4361.2035ms +2017-07-20 17:52:35.474 +05:30 [Information] Request finished in 4370.7097ms 200 application/json; charset=utf-8 +2017-07-20 17:52:35.475 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" completed keep alive response. +2017-07-20 17:55:16.664 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" received FIN. +2017-07-20 17:55:16.664 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" received FIN. +2017-07-20 17:55:16.665 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" started. +2017-07-20 17:55:16.665 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" disconnecting. +2017-07-20 17:55:16.668 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" disconnecting. +2017-07-20 17:55:16.669 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" received FIN. +2017-07-20 17:55:16.710 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" received FIN. +2017-07-20 17:55:16.711 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" received FIN. +2017-07-20 17:55:16.711 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" disconnecting. +2017-07-20 17:55:16.712 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" sending FIN. +2017-07-20 17:55:16.713 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" sent FIN with status "0". +2017-07-20 17:55:16.713 +05:30 [Debug] Connection id ""0HL6FCLCUNRI3"" stopped. +2017-07-20 17:55:16.714 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" disconnecting. +2017-07-20 17:55:16.714 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" disconnecting. +2017-07-20 17:55:16.714 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" sending FIN. +2017-07-20 17:55:16.716 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" sending FIN. +2017-07-20 17:55:16.717 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" sent FIN with status "0". +2017-07-20 17:55:16.719 +05:30 [Debug] Connection id ""0HL6FCLCUNRI5"" stopped. +2017-07-20 17:55:16.691 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" sending FIN. +2017-07-20 17:55:16.719 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" sent FIN with status "0". +2017-07-20 17:55:16.721 +05:30 [Debug] Connection id ""0HL6FCLCUNRI7"" stopped. +2017-07-20 17:55:16.721 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" sending FIN. +2017-07-20 17:55:16.725 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" sent FIN with status "0". +2017-07-20 17:55:16.726 +05:30 [Debug] Connection id ""0HL6FCLCUNRI4"" stopped. +2017-07-20 17:55:16.727 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" sent FIN with status "0". +2017-07-20 17:55:16.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:55:16.741 +05:30 [Debug] Connection id ""0HL6FCLCUNRI6"" stopped. +2017-07-20 17:55:16.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:55:16.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:55:19.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:55:20.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:20.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:55:20.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:20.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:20.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3292.1663ms +2017-07-20 17:55:20.041 +05:30 [Information] Request finished in 3370.1767ms 200 application/json; charset=utf-8 +2017-07-20 17:55:20.041 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:55:21.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:55:21.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:55:21.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:55:24.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:55:24.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:24.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:24.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:24.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.2162ms +2017-07-20 17:55:24.352 +05:30 [Information] Request finished in 3056.556ms 200 application/json; charset=utf-8 +2017-07-20 17:55:24.354 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:55:24.386 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:55:24.391 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:55:24.393 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:55:27.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:55:27.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:27.456 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:27.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:27.459 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3064.3142ms +2017-07-20 17:55:27.462 +05:30 [Information] Request finished in 3078.5841ms 200 application/json; charset=utf-8 +2017-07-20 17:55:27.463 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:55:27.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:55:27.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:55:27.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 17:55:30.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:55:30.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:30.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:30.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:30.560 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3088.1661ms +2017-07-20 17:55:30.562 +05:30 [Information] Request finished in 3095.0748ms 200 application/json; charset=utf-8 +2017-07-20 17:55:30.563 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:55:32.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 17:55:32.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 17:55:32.130 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 17:55:32.450 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" started. +2017-07-20 17:55:32.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Shareathon/UsergroupShareathon?userId=1 +2017-07-20 17:55:32.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Shareathon/UsergroupShareathon"'. +2017-07-20 17:55:32.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" +2017-07-20 17:55:34.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:55:34.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:34.316 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:55:34.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:34.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:34.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2187.133ms +2017-07-20 17:55:34.322 +05:30 [Information] Request finished in 2201.3563ms 200 application/json; charset=utf-8 +2017-07-20 17:55:34.322 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:55:35.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 17:55:35.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:35.881 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:55:35.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:35.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:35.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ShareathonController.UsergroupShareathon (Api.Socioboard)" in 3396.0528ms +2017-07-20 17:55:35.888 +05:30 [Information] Request finished in 3416.9769ms 200 application/json; charset=utf-8 +2017-07-20 17:55:35.889 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" completed keep alive response. +2017-07-20 17:55:52.824 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookGroup?profileId=187231345114052 +2017-07-20 17:55:52.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookGroup"'. +2017-07-20 17:55:52.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" +2017-07-20 17:55:55.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" with arguments (["187231345114052"]) - ModelState is Valid +2017-07-20 17:55:56.916 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:55:56.918 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 17:55:56.918 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:55:56.919 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:55:56.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookGroup (Api.Socioboard)" in 4088.5776ms +2017-07-20 17:55:56.924 +05:30 [Information] Request finished in 4131.4894ms 200 application/json; charset=utf-8 +2017-07-20 17:55:56.925 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" completed keep alive response. +2017-07-20 17:57:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" received FIN. +2017-07-20 17:57:17.325 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" received FIN. +2017-07-20 17:57:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" disconnecting. +2017-07-20 17:57:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" sending FIN. +2017-07-20 17:57:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" disconnecting. +2017-07-20 17:57:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" sent FIN with status "0". +2017-07-20 17:57:17.329 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" sending FIN. +2017-07-20 17:57:17.330 +05:30 [Debug] Connection id ""0HL6FCLCUNRI8"" stopped. +2017-07-20 17:57:17.331 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" sent FIN with status "0". +2017-07-20 17:57:17.332 +05:30 [Debug] Connection id ""0HL6FCLCUNRI9"" stopped. +2017-07-20 17:59:54.287 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" started. +2017-07-20 17:59:54.289 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 17:59:54.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 17:59:54.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 17:59:57.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:59:57.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:59:57.336 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:59:57.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:59:57.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.5523ms +2017-07-20 17:59:57.345 +05:30 [Information] Request finished in 3055.9478ms 200 application/json; charset=utf-8 +2017-07-20 17:59:57.346 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 17:59:57.381 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 17:59:57.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 17:59:57.383 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 17:59:59.547 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 17:59:59.554 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 17:59:59.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 17:59:59.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 17:59:59.562 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2172.5131ms +2017-07-20 17:59:59.567 +05:30 [Information] Request finished in 2186.5192ms 200 application/json; charset=utf-8 +2017-07-20 17:59:59.570 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 17:59:59.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 17:59:59.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 17:59:59.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 18:00:02.798 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 18:00:02.809 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:00:02.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:00:02.811 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:00:02.813 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3203.1513ms +2017-07-20 18:00:02.816 +05:30 [Information] Request finished in 3226.5835ms 200 application/json; charset=utf-8 +2017-07-20 18:00:02.817 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:00:04.959 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 18:00:04.982 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 18:00:04.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 18:00:07.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 18:00:07.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:00:07.484 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 18:00:07.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:00:07.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:00:07.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2505.1639ms +2017-07-20 18:00:07.492 +05:30 [Information] Request finished in 2860.6778ms 200 application/json; charset=utf-8 +2017-07-20 18:00:07.493 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:00:51.525 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-20 18:00:51.526 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-20 18:00:51.526 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-20 18:00:54.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 18:00:54.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:00:54.676 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:00:54.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:00:54.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3151.5878ms +2017-07-20 18:00:54.684 +05:30 [Information] Request finished in 3158.5352ms 200 application/json; charset=utf-8 +2017-07-20 18:00:54.684 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:00:54.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-20 18:00:54.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-20 18:00:54.712 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-20 18:00:57.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-20 18:00:57.765 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:00:57.766 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:00:57.767 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:00:57.769 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3055.4174ms +2017-07-20 18:00:57.771 +05:30 [Information] Request finished in 3080.8201ms 200 application/json; charset=utf-8 +2017-07-20 18:00:57.772 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:00:57.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-20 18:00:57.777 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-20 18:00:57.778 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-20 18:01:00.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 18:01:00.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:01:00.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:01:00.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:01:00.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3077.0403ms +2017-07-20 18:01:00.859 +05:30 [Information] Request finished in 3083.1601ms 200 application/json; charset=utf-8 +2017-07-20 18:01:00.860 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:01:03.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-20 18:01:03.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-20 18:01:03.331 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-20 18:01:04.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-20 18:01:04.823 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-20 18:01:04.824 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 18:01:04.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 18:01:04.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 18:01:04.870 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1530.3223ms +2017-07-20 18:01:04.874 +05:30 [Information] Request finished in 1547.0746ms 200 application/json; charset=utf-8 +2017-07-20 18:01:04.875 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" completed keep alive response. +2017-07-20 18:03:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" received FIN. +2017-07-20 18:03:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" disconnecting. +2017-07-20 18:03:17.326 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" sending FIN. +2017-07-20 18:03:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" sent FIN with status "0". +2017-07-20 18:03:17.327 +05:30 [Debug] Connection id ""0HL6FCLCUNRIA"" stopped. +2017-07-20 22:52:16.722 +05:30 [Debug] Hosting starting +2017-07-20 22:52:17.142 +05:30 [Debug] Hosting started +2017-07-20 22:52:17.335 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" started. +2017-07-20 22:52:17.335 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" started. +2017-07-20 22:52:17.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 22:52:17.573 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 22:52:17.664 +05:30 [Information] Request finished in 148.2836ms 200 +2017-07-20 22:52:17.730 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" completed keep alive response. +2017-07-20 22:52:18.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 22:52:18.861 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cdbd03a8-c721-499e-abb8-11b96405a4f9"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 22:52:19.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 22:52:19.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 22:52:19.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 22:52:19.266 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 22:52:19.273 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 22:52:19.275 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 22:52:19.751 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 638.1276ms +2017-07-20 22:52:19.852 +05:30 [Information] Request finished in 2356.1638ms 200 application/json; charset=utf-8 +2017-07-20 22:52:19.855 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" completed keep alive response. +2017-07-20 22:52:19.883 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-20 22:52:19.886 +05:30 [Debug] Request did not match any routes. +2017-07-20 22:52:19.907 +05:30 [Debug] The request path "" does not match the path filter +2017-07-20 22:52:19.910 +05:30 [Information] Request finished in 28.9762ms 404 +2017-07-20 22:52:19.912 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" completed keep alive response. +2017-07-20 22:54:17.302 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" received FIN. +2017-07-20 22:54:17.303 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" received FIN. +2017-07-20 22:54:17.304 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" disconnecting. +2017-07-20 22:54:17.305 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" disconnecting. +2017-07-20 22:54:17.307 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" sending FIN. +2017-07-20 22:54:17.317 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" sending FIN. +2017-07-20 22:54:17.319 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" sent FIN with status "0". +2017-07-20 22:54:17.322 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" sent FIN with status "0". +2017-07-20 22:54:17.324 +05:30 [Debug] Connection id ""0HL6FIFFELKGP"" stopped. +2017-07-20 22:54:17.324 +05:30 [Debug] Connection id ""0HL6FIFFELKGO"" stopped. +2017-07-20 23:01:57.701 +05:30 [Debug] Hosting starting +2017-07-20 23:01:58.126 +05:30 [Debug] Hosting started +2017-07-20 23:01:58.185 +05:30 [Debug] Connection id ""0HL6FIKSI0TJP"" started. +2017-07-20 23:01:58.185 +05:30 [Debug] Connection id ""0HL6FIKSI0TJO"" started. +2017-07-20 23:01:58.684 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-20 23:01:58.684 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-20 23:01:58.872 +05:30 [Information] Request finished in 266.9891ms 200 +2017-07-20 23:01:58.986 +05:30 [Debug] Connection id ""0HL6FIKSI0TJO"" completed keep alive response. +2017-07-20 23:02:00.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-20 23:02:00.554 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b118110c-c1bb-4ab8-bd2f-56cfe251353a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-20 23:02:00.709 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-20 23:02:00.844 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-20 23:02:00.848 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-20 23:02:00.923 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-20 23:02:00.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-20 23:02:00.937 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-20 23:02:01.532 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 766.4058ms +2017-07-20 23:02:01.685 +05:30 [Information] Request finished in 3161.351ms 200 application/json; charset=utf-8 +2017-07-20 23:02:01.690 +05:30 [Debug] Connection id ""0HL6FIKSI0TJP"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170721.txt b/src/Api.Socioboard/wwwroot/log/log-20170721.txt new file mode 100644 index 000000000..35cd87465 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170721.txt @@ -0,0 +1,928 @@ +2017-07-21 11:29:55.539 +05:30 [Debug] Hosting starting +2017-07-21 11:29:56.045 +05:30 [Debug] Hosting started +2017-07-21 11:29:56.086 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" started. +2017-07-21 11:29:56.086 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" started. +2017-07-21 11:29:56.479 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 11:29:56.479 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 11:29:56.761 +05:30 [Information] Request finished in 142.4115ms 200 +2017-07-21 11:29:56.858 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" completed keep alive response. +2017-07-21 11:29:58.467 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 11:29:58.629 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b380226f-2d9e-490a-b751-16055015ff56"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 11:29:59.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 11:29:59.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 11:29:59.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 11:29:59.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 11:29:59.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 11:29:59.427 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 11:29:59.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 660.9383ms +2017-07-21 11:29:59.996 +05:30 [Information] Request finished in 3587.3292ms 200 application/json; charset=utf-8 +2017-07-21 11:29:59.999 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" completed keep alive response. +2017-07-21 11:30:00.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-21 11:30:00.042 +05:30 [Debug] Request did not match any routes. +2017-07-21 11:30:00.060 +05:30 [Debug] The request path "" does not match the path filter +2017-07-21 11:30:00.063 +05:30 [Information] Request finished in 24.8976ms 404 +2017-07-21 11:30:00.064 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" completed keep alive response. +2017-07-21 11:31:56.072 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" received FIN. +2017-07-21 11:31:56.072 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" received FIN. +2017-07-21 11:31:56.076 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" disconnecting. +2017-07-21 11:31:56.074 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" disconnecting. +2017-07-21 11:31:56.077 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" sending FIN. +2017-07-21 11:31:56.077 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" sending FIN. +2017-07-21 11:31:56.088 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" sent FIN with status "0". +2017-07-21 11:31:56.088 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" sent FIN with status "0". +2017-07-21 11:31:56.092 +05:30 [Debug] Connection id ""0HL6FVMR72IBB"" stopped. +2017-07-21 11:31:56.092 +05:30 [Debug] Connection id ""0HL6FVMR72IBA"" stopped. +2017-07-21 12:01:43.143 +05:30 [Debug] Hosting starting +2017-07-21 12:01:43.366 +05:30 [Debug] Hosting started +2017-07-21 12:01:43.456 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" started. +2017-07-21 12:01:43.458 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" started. +2017-07-21 12:01:43.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 12:01:43.683 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 12:01:43.793 +05:30 [Information] Request finished in 182.7512ms 200 +2017-07-21 12:01:43.874 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" completed keep alive response. +2017-07-21 12:01:44.799 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 12:01:44.937 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cdd92f4a-281c-4a51-9cab-3ed280bb5a3d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 12:01:45.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 12:01:45.538 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 12:01:45.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 12:01:45.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:01:45.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:01:45.614 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:01:45.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 554.2254ms +2017-07-21 12:01:46.077 +05:30 [Information] Request finished in 2493.5267ms 200 application/json; charset=utf-8 +2017-07-21 12:01:46.080 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" completed keep alive response. +2017-07-21 12:02:06.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-07-21 12:02:06.058 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 12:02:06.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 12:02:09.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 12:02:19.529 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:19.541 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:19.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:19.695 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13626.095ms +2017-07-21 12:02:19.705 +05:30 [Information] Request finished in 13665.5255ms 200 application/json; charset=utf-8 +2017-07-21 12:02:19.706 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" completed keep alive response. +2017-07-21 12:02:20.119 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-21 12:02:20.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 12:02:20.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 12:02:23.195 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:02:24.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:24.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:24.884 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:24.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4797.3529ms +2017-07-21 12:02:24.932 +05:30 [Information] Request finished in 4812.0053ms 200 application/json; charset=utf-8 +2017-07-21 12:02:24.933 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" completed keep alive response. +2017-07-21 12:02:28.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-21 12:02:28.911 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 12:02:28.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 12:02:28.960 +05:30 [Debug] Connection id ""0HL6G08JL7RPP"" started. +2017-07-21 12:02:29.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-21 12:02:29.059 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-21 12:02:29.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 12:02:29.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 12:02:29.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 12:02:29.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 12:02:29.699 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" started. +2017-07-21 12:02:29.707 +05:30 [Debug] Connection id ""0HL6G08JL7RPR"" started. +2017-07-21 12:02:29.723 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139175 +2017-07-21 12:02:29.723 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 12:02:29.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 12:02:30.513 +05:30 [Debug] Connection id ""0HL6G08JL7RPS"" started. +2017-07-21 12:02:31.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1139175 +2017-07-21 12:02:31.106 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-21 12:02:31.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-21 12:02:31.632 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 63 +2017-07-21 12:02:31.633 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 12:02:31.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 12:02:34.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:02:34.291 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:34.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:02:34.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:34.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:35.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "487114"]) - ModelState is Valid +2017-07-21 12:02:35.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:35.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:35.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:35.448 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6523.5238ms +2017-07-21 12:02:35.457 +05:30 [Information] Request finished in 6555.8023ms 200 application/json; charset=utf-8 +2017-07-21 12:02:35.458 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" completed keep alive response. +2017-07-21 12:02:36.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:36.592 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:36.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:36.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:36.642 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7569.5833ms +2017-07-21 12:02:36.648 +05:30 [Information] Request finished in 7612.1001ms 200 application/json; charset=utf-8 +2017-07-21 12:02:36.649 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" completed keep alive response. +2017-07-21 12:02:36.908 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-21 12:02:36.909 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-21 12:02:36.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 12:02:36.910 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 12:02:36.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 12:02:36.911 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 12:02:37.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:37.098 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:37.104 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:37.108 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:37.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 8047.8237ms +2017-07-21 12:02:37.113 +05:30 [Information] Request finished in 8151.1656ms 200 application/json; charset=utf-8 +2017-07-21 12:02:37.114 +05:30 [Debug] Connection id ""0HL6G08JL7RPP"" completed keep alive response. +2017-07-21 12:02:37.446 +05:30 [Debug] Connection id ""0HL6G08JL7RPT"" started. +2017-07-21 12:02:37.455 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1139175 +2017-07-21 12:02:37.456 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-21 12:02:37.457 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-21 12:02:37.485 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139175 +2017-07-21 12:02:37.486 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 12:02:37.487 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 12:02:37.924 +05:30 [Debug] Connection id ""0HL6G08JL7RPU"" started. +2017-07-21 12:02:38.253 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:38.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:38.255 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:38.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:38.373 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:38.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:38.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:38.387 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" received FIN. +2017-07-21 12:02:38.393 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8661.3753ms +2017-07-21 12:02:38.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:38.406 +05:30 [Information] Connection id ""0HL6G08JL7RPQ"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-21 12:02:38.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7299.2861ms +2017-07-21 12:02:38.417 +05:30 [Information] Request finished in 8709.4569ms 200 application/json; charset=utf-8 +2017-07-21 12:02:38.420 +05:30 [Information] Request finished in 7322.2172ms 200 application/json; charset=utf-8 +2017-07-21 12:02:38.420 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" completed keep alive response. +2017-07-21 12:02:38.421 +05:30 [Debug] Connection id ""0HL6G08JL7RPR"" completed keep alive response. +2017-07-21 12:02:38.422 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" disconnecting. +2017-07-21 12:02:38.424 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 63 +2017-07-21 12:02:38.430 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" sending FIN. +2017-07-21 12:02:38.468 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 12:02:38.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 12:02:38.480 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" sent FIN with status "0". +2017-07-21 12:02:38.486 +05:30 [Debug] Connection id ""0HL6G08JL7RPQ"" stopped. +2017-07-21 12:02:38.961 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:38.962 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:38.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:39.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7361.6193ms +2017-07-21 12:02:39.118 +05:30 [Information] Request finished in 7484.324ms 200 application/json; charset=utf-8 +2017-07-21 12:02:39.118 +05:30 [Debug] Connection id ""0HL6G08JL7RPS"" completed keep alive response. +2017-07-21 12:02:40.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:40.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:02:40.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:40.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:02:41.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:41.185 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:41.189 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:41.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:41.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4283.0108ms +2017-07-21 12:02:41.200 +05:30 [Information] Request finished in 4293.7692ms 200 application/json; charset=utf-8 +2017-07-21 12:02:41.202 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" completed keep alive response. +2017-07-21 12:02:41.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "487114"]) - ModelState is Valid +2017-07-21 12:02:42.072 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:42.073 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:42.074 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:42.075 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:42.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5160.9119ms +2017-07-21 12:02:42.079 +05:30 [Information] Request finished in 5174.2126ms 200 application/json; charset=utf-8 +2017-07-21 12:02:42.080 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" completed keep alive response. +2017-07-21 12:02:42.815 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:42.816 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:42.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:42.818 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:42.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5360.194ms +2017-07-21 12:02:42.824 +05:30 [Information] Request finished in 5378.1873ms 200 application/json; charset=utf-8 +2017-07-21 12:02:42.825 +05:30 [Debug] Connection id ""0HL6G08JL7RPP"" completed keep alive response. +2017-07-21 12:02:43.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:43.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:43.613 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:43.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5137.0899ms +2017-07-21 12:02:43.660 +05:30 [Information] Request finished in 5232.2031ms 200 application/json; charset=utf-8 +2017-07-21 12:02:43.661 +05:30 [Debug] Connection id ""0HL6G08JL7RPU"" completed keep alive response. +2017-07-21 12:02:43.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:02:43.737 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:02:43.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:02:43.738 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:02:43.741 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6249.4902ms +2017-07-21 12:02:43.745 +05:30 [Information] Request finished in 6287.0353ms 200 application/json; charset=utf-8 +2017-07-21 12:02:43.745 +05:30 [Debug] Connection id ""0HL6G08JL7RPT"" completed keep alive response. +2017-07-21 12:02:47.711 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-21 12:02:47.712 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-21 12:02:47.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-21 12:02:50.750 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-21 12:03:03.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:03.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:03:03.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:03.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:03.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 16215.3955ms +2017-07-21 12:03:03.942 +05:30 [Information] Request finished in 16229.7185ms 200 application/json; charset=utf-8 +2017-07-21 12:03:03.943 +05:30 [Debug] Connection id ""0HL6G08JL7RPR"" completed keep alive response. +2017-07-21 12:03:26.639 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 12:03:26.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 12:03:26.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 12:03:29.718 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cff924414dff"]) - ModelState is Valid +2017-07-21 12:03:30.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:30.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:30.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:30.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3548.3294ms +2017-07-21 12:03:30.193 +05:30 [Information] Request finished in 3560.3763ms 200 application/json; charset=utf-8 +2017-07-21 12:03:30.193 +05:30 [Debug] Connection id ""0HL6G08JL7RPS"" completed keep alive response. +2017-07-21 12:03:30.210 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-21 12:03:30.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-21 12:03:30.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-21 12:03:33.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cff924414dff"]) - ModelState is Valid +2017-07-21 12:03:34.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:34.305 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:34.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:34.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4094.4838ms +2017-07-21 12:03:34.314 +05:30 [Information] Request finished in 4113.1517ms 200 application/json; charset=utf-8 +2017-07-21 12:03:34.315 +05:30 [Debug] Connection id ""0HL6G08JL7RPN"" completed keep alive response. +2017-07-21 12:03:34.323 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-21 12:03:34.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 12:03:34.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 12:03:37.372 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:03:38.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:38.937 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:38.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:38.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4611.7021ms +2017-07-21 12:03:38.947 +05:30 [Information] Request finished in 4625.0144ms 200 application/json; charset=utf-8 +2017-07-21 12:03:38.948 +05:30 [Debug] Connection id ""0HL6G08JL7RPO"" completed keep alive response. +2017-07-21 12:03:40.316 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-21 12:03:40.317 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-21 12:03:40.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 12:03:40.318 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 12:03:40.318 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 12:03:40.319 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 12:03:40.961 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-21 12:03:40.962 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-21 12:03:40.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-21 12:03:42.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-21 12:03:43.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:43.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:03:43.162 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:43.164 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:43.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2846.4499ms +2017-07-21 12:03:43.171 +05:30 [Information] Request finished in 2854.4886ms 200 application/json; charset=utf-8 +2017-07-21 12:03:43.172 +05:30 [Debug] Connection id ""0HL6G08JL7RPP"" completed keep alive response. +2017-07-21 12:03:43.410 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-21 12:03:44.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-21 12:03:50.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 12:03:50.555 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 12:03:50.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 12:03:50.563 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 12:03:50.602 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 10248.2543ms +2017-07-21 12:03:50.638 +05:30 [Information] Request finished in 10305.4917ms 200 application/json; charset=utf-8 +2017-07-21 12:03:50.638 +05:30 [Debug] Connection id ""0HL6G08JL7RPU"" completed keep alive response. +2017-07-21 15:24:45.652 +05:30 [Debug] Hosting starting +2017-07-21 15:24:47.012 +05:30 [Debug] Hosting started +2017-07-21 15:24:47.151 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7D"" started. +2017-07-21 15:24:47.154 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" started. +2017-07-21 15:24:47.294 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 15:24:47.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 15:24:47.352 +05:30 [Information] Request finished in 78.4282ms 200 +2017-07-21 15:24:47.416 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" completed keep alive response. +2017-07-21 15:24:48.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 15:24:48.457 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c1fc2d12-0cc1-4544-a8a9-97df122778bb"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 15:24:48.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 15:24:48.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 15:24:48.795 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 15:24:48.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:24:48.848 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:24:48.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:24:50.793 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 2142.2896ms +2017-07-21 15:24:50.956 +05:30 [Information] Request finished in 3684.6328ms 200 application/json; charset=utf-8 +2017-07-21 15:24:50.958 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7D"" completed keep alive response. +2017-07-21 15:24:50.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-21 15:24:50.998 +05:30 [Debug] Request did not match any routes. +2017-07-21 15:24:51.021 +05:30 [Debug] The request path "" does not match the path filter +2017-07-21 15:24:51.025 +05:30 [Information] Request finished in 34.5558ms 404 +2017-07-21 15:24:51.026 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" completed keep alive response. +2017-07-21 15:25:04.762 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 15:25:04.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 15:25:04.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 15:25:08.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cff924414dff"]) - ModelState is Valid +2017-07-21 15:25:18.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:25:18.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:25:18.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:25:18.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13444.8618ms +2017-07-21 15:25:18.236 +05:30 [Information] Request finished in 13483.8503ms 200 application/json; charset=utf-8 +2017-07-21 15:25:18.237 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7D"" completed keep alive response. +2017-07-21 15:26:00.217 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-21 15:26:00.218 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" received FIN. +2017-07-21 15:26:00.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 15:26:00.222 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" disconnecting. +2017-07-21 15:26:00.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 15:26:00.246 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" sending FIN. +2017-07-21 15:26:00.274 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" sent FIN with status "0". +2017-07-21 15:26:00.281 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7E"" stopped. +2017-07-21 15:26:02.453 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 15:26:03.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:26:03.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:26:03.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:26:03.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3506.8341ms +2017-07-21 15:26:03.743 +05:30 [Information] Request finished in 3524.4719ms 200 application/json; charset=utf-8 +2017-07-21 15:26:03.745 +05:30 [Debug] Connection id ""0HL6G3Q2M1I7D"" completed keep alive response. +2017-07-21 15:26:30.631 +05:30 [Debug] Hosting starting +2017-07-21 15:26:30.896 +05:30 [Debug] Hosting started +2017-07-21 15:26:31.112 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" started. +2017-07-21 15:26:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" started. +2017-07-21 15:26:31.297 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 15:26:31.297 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 15:26:31.457 +05:30 [Information] Request finished in 116.9506ms 200 +2017-07-21 15:26:31.552 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" completed keep alive response. +2017-07-21 15:26:32.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 15:26:32.903 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c7085ab5-d146-4386-91ee-172e048b0992"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 15:26:33.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 15:26:33.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 15:26:33.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 15:26:33.996 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:26:34.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:26:34.052 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:26:34.567 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 978.2831ms +2017-07-21 15:26:34.748 +05:30 [Information] Request finished in 3428.3658ms 200 application/json; charset=utf-8 +2017-07-21 15:26:34.751 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" completed keep alive response. +2017-07-21 15:26:43.751 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 15:26:43.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 15:26:43.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 15:26:47.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cff924414dff"]) - ModelState is Valid +2017-07-21 15:26:51.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:26:52.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:26:52.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:26:52.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8416.8146ms +2017-07-21 15:26:52.216 +05:30 [Information] Request finished in 8468.8044ms 200 application/json; charset=utf-8 +2017-07-21 15:26:52.218 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" completed keep alive response. +2017-07-21 15:26:57.574 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-21 15:26:57.575 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 15:26:57.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 15:27:00.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 15:27:01.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:01.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:01.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:01.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3788.18ms +2017-07-21 15:27:01.369 +05:30 [Information] Request finished in 3795.5969ms 200 application/json; charset=utf-8 +2017-07-21 15:27:01.369 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" completed keep alive response. +2017-07-21 15:27:01.694 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 15:27:01.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 15:27:01.696 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 15:27:04.746 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:27:04.948 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:04.948 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:04.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:04.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3283.9649ms +2017-07-21 15:27:04.989 +05:30 [Information] Request finished in 3293.7035ms 200 application/json; charset=utf-8 +2017-07-21 15:27:04.989 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" completed keep alive response. +2017-07-21 15:27:07.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-21 15:27:07.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-21 15:27:07.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 15:27:07.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 15:27:07.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 15:27:07.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 15:27:08.217 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" started. +2017-07-21 15:27:08.218 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" started. +2017-07-21 15:27:08.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-21 15:27:08.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-21 15:27:08.222 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-21 15:27:08.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 15:27:08.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-21 15:27:08.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 15:27:08.967 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" started. +2017-07-21 15:27:09.003 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-21 15:27:09.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 15:27:09.006 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 15:27:10.640 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:27:10.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:27:11.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:11.039 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:27:11.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:11.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:11.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3273.0924ms +2017-07-21 15:27:11.087 +05:30 [Information] Request finished in 3303.2521ms 200 application/json; charset=utf-8 +2017-07-21 15:27:11.088 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" completed keep alive response. +2017-07-21 15:27:11.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:11.143 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:27:11.143 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:11.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:11.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3342.0244ms +2017-07-21 15:27:11.149 +05:30 [Information] Request finished in 3366.3309ms 200 application/json; charset=utf-8 +2017-07-21 15:27:11.150 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" completed keep alive response. +2017-07-21 15:27:11.597 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:27:14.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:27:14.951 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:14.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-21 15:27:14.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:27:14.963 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:14.965 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:14.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 6741.6538ms +2017-07-21 15:27:14.974 +05:30 [Information] Request finished in 6753.0845ms 200 application/json; charset=utf-8 +2017-07-21 15:27:14.975 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" completed keep alive response. +2017-07-21 15:27:15.019 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:15.020 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:15.021 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:15.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 6020.9193ms +2017-07-21 15:27:15.030 +05:30 [Information] Request finished in 6034.9713ms 200 application/json; charset=utf-8 +2017-07-21 15:27:15.031 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" completed keep alive response. +2017-07-21 15:27:15.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:27:15.323 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:27:15.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:27:15.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:27:15.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7181.5854ms +2017-07-21 15:27:15.416 +05:30 [Information] Request finished in 7190.4795ms 200 application/json; charset=utf-8 +2017-07-21 15:27:15.417 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" completed keep alive response. +2017-07-21 15:28:31.086 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" received FIN. +2017-07-21 15:28:31.086 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" received FIN. +2017-07-21 15:28:31.087 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" disconnecting. +2017-07-21 15:28:31.089 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" received FIN. +2017-07-21 15:28:31.090 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" disconnecting. +2017-07-21 15:28:31.092 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" sending FIN. +2017-07-21 15:28:31.087 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" received FIN. +2017-07-21 15:28:31.095 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" received FIN. +2017-07-21 15:28:31.095 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" disconnecting. +2017-07-21 15:28:31.090 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" disconnecting. +2017-07-21 15:28:31.095 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" sending FIN. +2017-07-21 15:28:31.098 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" sending FIN. +2017-07-21 15:28:31.098 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" sending FIN. +2017-07-21 15:28:31.095 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" disconnecting. +2017-07-21 15:28:31.104 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" sent FIN with status "0". +2017-07-21 15:28:31.106 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" sent FIN with status "0". +2017-07-21 15:28:31.109 +05:30 [Debug] Connection id ""0HL6G3R1LEMP3"" stopped. +2017-07-21 15:28:31.111 +05:30 [Debug] Connection id ""0HL6G3R1LEMP4"" stopped. +2017-07-21 15:28:31.111 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" sent FIN with status "0". +2017-07-21 15:28:31.112 +05:30 [Debug] Connection id ""0HL6G3R1LEMP2"" stopped. +2017-07-21 15:28:31.112 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" sent FIN with status "0". +2017-07-21 15:28:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" sending FIN. +2017-07-21 15:28:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMP1"" stopped. +2017-07-21 15:28:31.114 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" sent FIN with status "0". +2017-07-21 15:28:31.115 +05:30 [Debug] Connection id ""0HL6G3R1LEMP5"" stopped. +2017-07-21 15:30:50.225 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" started. +2017-07-21 15:30:50.228 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 15:30:50.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 15:30:50.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 15:30:53.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-21 15:30:53.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:30:53.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:30:53.319 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:30:53.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3076.8338ms +2017-07-21 15:30:53.326 +05:30 [Information] Request finished in 3096.466ms 200 application/json; charset=utf-8 +2017-07-21 15:30:53.326 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" completed keep alive response. +2017-07-21 15:30:53.352 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-21 15:30:53.353 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-21 15:30:53.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-21 15:30:56.414 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-21 15:30:56.424 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:30:56.425 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:30:56.428 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:30:56.432 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3074.5283ms +2017-07-21 15:30:56.434 +05:30 [Information] Request finished in 3081.2883ms 200 application/json; charset=utf-8 +2017-07-21 15:30:56.435 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" completed keep alive response. +2017-07-21 15:30:56.441 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 15:30:56.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 15:30:56.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 15:30:59.515 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:30:59.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:30:59.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:30:59.523 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:30:59.524 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3063.0857ms +2017-07-21 15:30:59.528 +05:30 [Information] Request finished in 3087.2471ms 200 application/json; charset=utf-8 +2017-07-21 15:30:59.529 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" completed keep alive response. +2017-07-21 15:31:01.244 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" started. +2017-07-21 15:31:01.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-21 15:31:01.274 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 15:31:01.274 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-21 15:31:01.276 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 15:31:01.277 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 15:31:01.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 15:31:01.863 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" started. +2017-07-21 15:31:01.886 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-21 15:31:01.886 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" started. +2017-07-21 15:31:01.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-21 15:31:01.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-21 15:31:01.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-21 15:31:01.904 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 15:31:01.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 15:31:02.505 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" started. +2017-07-21 15:31:02.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 15:31:02.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 15:31:02.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 15:31:03.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:31:03.410 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:03.411 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:31:03.411 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:03.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:03.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 1506.8623ms +2017-07-21 15:31:03.418 +05:30 [Information] Request finished in 1526.9013ms 200 application/json; charset=utf-8 +2017-07-21 15:31:03.421 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" completed keep alive response. +2017-07-21 15:31:04.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:31:04.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:31:04.591 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:04.592 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:31:04.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:04.593 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:04.593 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:31:04.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:04.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:04.598 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3318.3867ms +2017-07-21 15:31:04.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:04.623 +05:30 [Information] Request finished in 3366.1455ms 200 application/json; charset=utf-8 +2017-07-21 15:31:04.629 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" completed keep alive response. +2017-07-21 15:31:04.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3342.1452ms +2017-07-21 15:31:04.640 +05:30 [Information] Request finished in 3369.9938ms 200 application/json; charset=utf-8 +2017-07-21 15:31:04.644 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" completed keep alive response. +2017-07-21 15:31:04.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-21 15:31:04.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:04.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:04.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:04.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2193.8513ms +2017-07-21 15:31:04.731 +05:30 [Information] Request finished in 2219.4109ms 200 application/json; charset=utf-8 +2017-07-21 15:31:04.733 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" completed keep alive response. +2017-07-21 15:31:04.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-21 15:31:04.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 15:31:04.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 15:31:05.022 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 15:31:06.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:06.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 15:31:06.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:06.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:06.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 4590.1512ms +2017-07-21 15:31:06.486 +05:30 [Information] Request finished in 4616.596ms 200 application/json; charset=utf-8 +2017-07-21 15:31:06.487 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" completed keep alive response. +2017-07-21 15:31:08.448 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-21 15:31:08.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 15:31:08.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 15:31:08.484 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 15:31:08.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3737.5632ms +2017-07-21 15:31:08.489 +05:30 [Information] Request finished in 3743.6392ms 200 application/json; charset=utf-8 +2017-07-21 15:31:08.489 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" completed keep alive response. +2017-07-21 15:32:31.085 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" received FIN. +2017-07-21 15:32:31.085 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" received FIN. +2017-07-21 15:32:31.089 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" received FIN. +2017-07-21 15:32:31.087 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" received FIN. +2017-07-21 15:32:31.092 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" received FIN. +2017-07-21 15:32:31.087 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" disconnecting. +2017-07-21 15:32:31.093 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" sending FIN. +2017-07-21 15:32:31.095 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" sent FIN with status "0". +2017-07-21 15:32:31.096 +05:30 [Debug] Connection id ""0HL6G3R1LEMP6"" stopped. +2017-07-21 15:32:31.108 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" disconnecting. +2017-07-21 15:32:31.109 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" sending FIN. +2017-07-21 15:32:31.110 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" sent FIN with status "0". +2017-07-21 15:32:31.110 +05:30 [Debug] Connection id ""0HL6G3R1LEMP9"" stopped. +2017-07-21 15:32:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" disconnecting. +2017-07-21 15:32:31.114 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" sending FIN. +2017-07-21 15:32:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" disconnecting. +2017-07-21 15:32:31.113 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" disconnecting. +2017-07-21 15:32:31.115 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" sending FIN. +2017-07-21 15:32:31.115 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" sent FIN with status "0". +2017-07-21 15:32:31.116 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" sent FIN with status "0". +2017-07-21 15:32:31.117 +05:30 [Debug] Connection id ""0HL6G3R1LEMPA"" stopped. +2017-07-21 15:32:31.117 +05:30 [Debug] Connection id ""0HL6G3R1LEMP7"" stopped. +2017-07-21 15:32:31.118 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" sending FIN. +2017-07-21 15:32:31.119 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" sent FIN with status "0". +2017-07-21 15:32:31.120 +05:30 [Debug] Connection id ""0HL6G3R1LEMP8"" stopped. +2017-07-21 17:50:12.900 +05:30 [Debug] Hosting starting +2017-07-21 17:50:13.663 +05:30 [Debug] Hosting started +2017-07-21 17:50:13.699 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" started. +2017-07-21 17:50:13.699 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" started. +2017-07-21 17:50:14.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 17:50:14.079 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 17:50:14.151 +05:30 [Information] Request finished in 159.5451ms 200 +2017-07-21 17:50:14.213 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" completed keep alive response. +2017-07-21 17:50:19.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 17:50:19.754 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1b282679-6cab-4dd6-a1ed-3983e76fe77a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 17:50:19.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 17:50:20.122 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 17:50:20.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 17:50:20.184 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 17:50:20.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:50:20.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:50:20.938 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 943.1362ms +2017-07-21 17:50:21.208 +05:30 [Information] Request finished in 7236.7199ms 200 application/json; charset=utf-8 +2017-07-21 17:50:21.211 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" completed keep alive response. +2017-07-21 17:50:36.239 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-21 17:50:36.240 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-21 17:50:36.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-21 17:50:41.649 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-21 17:50:41.650 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 17:50:41.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 17:50:41.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-21 17:50:44.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 17:50:50.334 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:50:50.365 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:50:50.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:50:50.622 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14355.9238ms +2017-07-21 17:50:50.647 +05:30 [Information] Request finished in 14407.313ms 200 application/json; charset=utf-8 +2017-07-21 17:50:50.648 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" completed keep alive response. +2017-07-21 17:50:50.829 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:50:50.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:50:50.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:50:50.889 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9235.0265ms +2017-07-21 17:50:50.894 +05:30 [Information] Request finished in 9242.5477ms 200 application/json; charset=utf-8 +2017-07-21 17:50:50.895 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" completed keep alive response. +2017-07-21 17:50:51.168 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-21 17:50:51.169 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-21 17:50:51.171 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-21 17:50:51.353 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 17:50:51.354 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 17:50:51.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 17:50:54.283 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 17:50:54.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:50:54.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:50:54.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:50:54.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3121.5054ms +2017-07-21 17:50:54.298 +05:30 [Information] Request finished in 3130.564ms 200 application/json; charset=utf-8 +2017-07-21 17:50:54.299 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" completed keep alive response. +2017-07-21 17:50:54.406 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 17:50:54.593 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:50:54.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:50:54.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:50:54.699 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3342.5041ms +2017-07-21 17:50:54.704 +05:30 [Information] Request finished in 3350.6884ms 200 application/json; charset=utf-8 +2017-07-21 17:50:54.706 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" completed keep alive response. +2017-07-21 17:52:13.678 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" received FIN. +2017-07-21 17:52:13.680 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" disconnecting. +2017-07-21 17:52:13.681 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" sending FIN. +2017-07-21 17:52:13.687 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" sent FIN with status "0". +2017-07-21 17:52:13.690 +05:30 [Debug] Connection id ""0HL6G6BBCRPGG"" stopped. +2017-07-21 17:52:13.678 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" received FIN. +2017-07-21 17:52:13.691 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" disconnecting. +2017-07-21 17:52:13.692 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" sending FIN. +2017-07-21 17:52:13.692 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" sent FIN with status "0". +2017-07-21 17:52:13.692 +05:30 [Debug] Connection id ""0HL6G6BBCRPGF"" stopped. +2017-07-21 17:52:25.028 +05:30 [Debug] Connection id ""0HL6G6BBCRPGH"" started. +2017-07-21 17:52:25.029 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 17:52:25.030 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 17:52:25.031 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 17:52:28.078 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 17:52:28.087 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:52:28.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:52:28.092 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:52:28.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3061.726ms +2017-07-21 17:52:28.097 +05:30 [Information] Request finished in 3068.0331ms 200 application/json; charset=utf-8 +2017-07-21 17:52:28.098 +05:30 [Debug] Connection id ""0HL6G6BBCRPGH"" completed keep alive response. +2017-07-21 17:52:57.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 17:52:57.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 17:52:57.055 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 17:52:57.215 +05:30 [Debug] Connection id ""0HL6G6BBCRPGI"" started. +2017-07-21 17:52:57.217 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 17:52:57.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 17:52:57.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 17:52:57.374 +05:30 [Debug] Connection id ""0HL6G6BBCRPGJ"" started. +2017-07-21 17:52:57.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 17:52:57.388 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 17:52:57.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 17:52:59.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 17:52:59.490 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:52:59.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:52:59.491 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:52:59.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2102.8784ms +2017-07-21 17:52:59.496 +05:30 [Information] Request finished in 2120.5926ms 200 application/json; charset=utf-8 +2017-07-21 17:52:59.497 +05:30 [Debug] Connection id ""0HL6G6BBCRPGJ"" completed keep alive response. +2017-07-21 17:53:00.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 17:53:00.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:53:00.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:53:00.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:53:00.339 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3249.6133ms +2017-07-21 17:53:00.399 +05:30 [Information] Request finished in 3314.9562ms 200 application/json; charset=utf-8 +2017-07-21 17:53:00.423 +05:30 [Debug] Connection id ""0HL6G6BBCRPGH"" completed keep alive response. +2017-07-21 17:53:00.423 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 17:53:00.438 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 17:53:00.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 17:53:00.454 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 17:53:00.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3237.3904ms +2017-07-21 17:53:00.465 +05:30 [Information] Request finished in 3247.1624ms 200 application/json; charset=utf-8 +2017-07-21 17:53:00.466 +05:30 [Debug] Connection id ""0HL6G6BBCRPGI"" completed keep alive response. +2017-07-21 18:44:52.876 +05:30 [Debug] Hosting starting +2017-07-21 18:44:53.101 +05:30 [Debug] Hosting started +2017-07-21 18:44:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" started. +2017-07-21 18:44:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" started. +2017-07-21 18:44:53.468 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-21 18:44:53.466 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-21 18:44:53.552 +05:30 [Information] Request finished in 137.8391ms 200 +2017-07-21 18:44:53.637 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:44:54.461 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-21 18:44:54.515 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"8698869d-a75d-4691-ba0d-4c7334672c43"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-21 18:44:54.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-21 18:44:54.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-21 18:44:54.788 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-21 18:44:54.845 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:44:54.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:44:54.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:44:55.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 700.3624ms +2017-07-21 18:44:55.452 +05:30 [Information] Request finished in 2055.5089ms 200 application/json; charset=utf-8 +2017-07-21 18:44:55.456 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" completed keep alive response. +2017-07-21 18:45:22.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-21 18:45:22.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 18:45:22.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 18:45:26.270 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 18:45:30.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:45:30.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:45:30.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:45:31.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 8333.0314ms +2017-07-21 18:45:31.092 +05:30 [Information] Request finished in 8354.826ms 200 application/json; charset=utf-8 +2017-07-21 18:45:31.093 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:45:31.515 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 18:45:31.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 18:45:31.518 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 18:45:34.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:45:34.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:45:34.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:45:34.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:45:34.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3233.892ms +2017-07-21 18:45:34.756 +05:30 [Information] Request finished in 3240.8758ms 200 application/json; charset=utf-8 +2017-07-21 18:45:34.756 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" completed keep alive response. +2017-07-21 18:46:30.541 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 18:46:30.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 18:46:30.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 18:46:33.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:46:33.613 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:46:33.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:46:33.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:46:33.617 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3070.6283ms +2017-07-21 18:46:33.620 +05:30 [Information] Request finished in 3084.152ms 200 application/json; charset=utf-8 +2017-07-21 18:46:33.621 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:46:53.234 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" received FIN. +2017-07-21 18:46:53.237 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" disconnecting. +2017-07-21 18:46:53.248 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" sending FIN. +2017-07-21 18:46:53.259 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" sent FIN with status "0". +2017-07-21 18:46:53.269 +05:30 [Debug] Connection id ""0HL6G79SP4NF6"" stopped. +2017-07-21 18:47:00.911 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-21 18:47:00.912 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-21 18:47:00.913 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-21 18:47:04.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-21 18:47:04.081 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:04.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:04.083 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:04.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3171.0168ms +2017-07-21 18:47:04.090 +05:30 [Information] Request finished in 3180.8494ms 200 application/json; charset=utf-8 +2017-07-21 18:47:04.091 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:47:04.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 18:47:04.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 18:47:04.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 18:47:07.181 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:07.189 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:07.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:07.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:07.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3046.7652ms +2017-07-21 18:47:07.207 +05:30 [Information] Request finished in 3062.6964ms 200 application/json; charset=utf-8 +2017-07-21 18:47:07.210 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:47:13.723 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" started. +2017-07-21 18:47:13.744 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-21 18:47:13.745 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 18:47:13.757 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 18:47:13.787 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-21 18:47:13.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 18:47:13.791 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 18:47:14.134 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" started. +2017-07-21 18:47:14.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-21 18:47:14.146 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-21 18:47:14.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-21 18:47:14.755 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" started. +2017-07-21 18:47:14.762 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" started. +2017-07-21 18:47:14.817 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-21 18:47:14.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-21 18:47:14.831 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-21 18:47:14.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 18:47:14.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 18:47:14.837 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-21 18:47:15.303 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" started. +2017-07-21 18:47:15.836 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-21 18:47:15.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 18:47:15.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 18:47:17.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:17.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:18.039 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:18.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:18.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:18.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:18.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3993.6154ms +2017-07-21 18:47:18.197 +05:30 [Information] Request finished in 4054.0784ms 200 application/json; charset=utf-8 +2017-07-21 18:47:18.198 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" completed keep alive response. +2017-07-21 18:47:18.204 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:18.205 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:18.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:18.207 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:18.211 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4416.3528ms +2017-07-21 18:47:18.219 +05:30 [Information] Request finished in 4478.5807ms 200 application/json; charset=utf-8 +2017-07-21 18:47:18.220 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" completed keep alive response. +2017-07-21 18:47:18.285 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:18.288 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:18.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:18.294 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:18.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4558.9947ms +2017-07-21 18:47:18.359 +05:30 [Information] Request finished in 4619.5759ms 200 application/json; charset=utf-8 +2017-07-21 18:47:18.360 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:47:18.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:18.502 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:22.816 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" started. +2017-07-21 18:47:22.857 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-21 18:47:22.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-21 18:47:22.858 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-21 18:47:22.901 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-21 18:47:22.902 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-21 18:47:22.902 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-21 18:47:22.903 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" started. +2017-07-21 18:47:22.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-21 18:47:22.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-21 18:47:22.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-21 18:47:23.062 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-21 18:47:23.062 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:23.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:23.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:23.105 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:23.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 8263.471ms +2017-07-21 18:47:23.122 +05:30 [Information] Request finished in 8351.5117ms 200 application/json; charset=utf-8 +2017-07-21 18:47:23.159 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" completed keep alive response. +2017-07-21 18:47:23.184 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:23.185 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:23.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:23.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetAllGroupProfiles?groupId=1 +2017-07-21 18:47:23.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetAllGroupProfiles"'. +2017-07-21 18:47:23.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" +2017-07-21 18:47:23.217 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7374.4433ms +2017-07-21 18:47:23.292 +05:30 [Information] Request finished in 7425.4385ms 200 application/json; charset=utf-8 +2017-07-21 18:47:23.295 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" completed keep alive response. +2017-07-21 18:47:23.293 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:23.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:23.301 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:23.307 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-21 18:47:23.307 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-21 18:47:23.308 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-21 18:47:23.320 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:23.411 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" received FIN. +2017-07-21 18:47:23.418 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8582.0021ms +2017-07-21 18:47:23.420 +05:30 [Information] Connection id ""0HL6G79SP4NFA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-21 18:47:23.423 +05:30 [Information] Request finished in 8638.3159ms 200 application/json; charset=utf-8 +2017-07-21 18:47:23.424 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" completed keep alive response. +2017-07-21 18:47:23.424 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" disconnecting. +2017-07-21 18:47:23.427 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" sending FIN. +2017-07-21 18:47:23.431 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" sent FIN with status "0". +2017-07-21 18:47:23.432 +05:30 [Debug] Connection id ""0HL6G79SP4NFA"" stopped. +2017-07-21 18:47:25.090 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:25.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:25.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:25.236 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:25.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:25.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:25.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2434.4911ms +2017-07-21 18:47:25.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:25.352 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:25.353 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:25.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:25.365 +05:30 [Information] Request finished in 2530.1583ms 200 application/json; charset=utf-8 +2017-07-21 18:47:25.365 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" completed keep alive response. +2017-07-21 18:47:26.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:26.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3802.4234ms +2017-07-21 18:47:26.878 +05:30 [Information] Request finished in 3895.258ms 200 application/json; charset=utf-8 +2017-07-21 18:47:26.879 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" completed keep alive response. +2017-07-21 18:47:26.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-21 18:47:26.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:26.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:26.903 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:26.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-21 18:47:26.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:26.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetAllGroupProfiles (Api.Socioboard)" in 3735.9049ms +2017-07-21 18:47:27.012 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:27.013 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:27.036 +05:30 [Information] Request finished in 3807.691ms 200 application/json; charset=utf-8 +2017-07-21 18:47:27.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-21 18:47:27.038 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-21 18:47:27.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-21 18:47:27.037 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" completed keep alive response. +2017-07-21 18:47:27.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:27.059 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-21 18:47:27.069 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3736.5759ms +2017-07-21 18:47:27.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4157.7209ms +2017-07-21 18:47:27.074 +05:30 [Information] Request finished in 3772.9947ms 200 application/json; charset=utf-8 +2017-07-21 18:47:27.074 +05:30 [Information] Request finished in 4243.869ms 200 application/json; charset=utf-8 +2017-07-21 18:47:27.075 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" completed keep alive response. +2017-07-21 18:47:27.076 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" completed keep alive response. +2017-07-21 18:48:53.231 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" received FIN. +2017-07-21 18:48:53.232 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" received FIN. +2017-07-21 18:48:53.232 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" received FIN. +2017-07-21 18:48:53.231 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" received FIN. +2017-07-21 18:48:53.235 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" received FIN. +2017-07-21 18:48:53.233 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" disconnecting. +2017-07-21 18:48:53.233 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" disconnecting. +2017-07-21 18:48:53.239 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" sending FIN. +2017-07-21 18:48:53.240 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" sending FIN. +2017-07-21 18:48:53.241 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" sent FIN with status "0". +2017-07-21 18:48:53.235 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" received FIN. +2017-07-21 18:48:53.242 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" received FIN. +2017-07-21 18:48:53.239 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" disconnecting. +2017-07-21 18:48:53.245 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" disconnecting. +2017-07-21 18:48:53.246 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" disconnecting. +2017-07-21 18:48:53.247 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" disconnecting. +2017-07-21 18:48:53.247 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" disconnecting. +2017-07-21 18:48:53.242 +05:30 [Debug] Connection id ""0HL6G79SP4NFB"" stopped. +2017-07-21 18:48:53.252 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" sent FIN with status "0". +2017-07-21 18:48:53.252 +05:30 [Debug] Connection id ""0HL6G79SP4NF9"" stopped. +2017-07-21 18:48:53.251 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" sending FIN. +2017-07-21 18:48:53.253 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" sending FIN. +2017-07-21 18:48:53.253 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" sending FIN. +2017-07-21 18:48:53.254 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" sent FIN with status "0". +2017-07-21 18:48:53.255 +05:30 [Debug] Connection id ""0HL6G79SP4NFD"" stopped. +2017-07-21 18:48:53.253 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" sending FIN. +2017-07-21 18:48:53.256 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" sending FIN. +2017-07-21 18:48:53.256 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" sent FIN with status "0". +2017-07-21 18:48:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NFE"" stopped. +2017-07-21 18:48:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" sent FIN with status "0". +2017-07-21 18:48:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NF8"" stopped. +2017-07-21 18:48:53.257 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" sent FIN with status "0". +2017-07-21 18:48:53.258 +05:30 [Debug] Connection id ""0HL6G79SP4NF7"" stopped. +2017-07-21 18:48:53.258 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" sent FIN with status "0". +2017-07-21 18:48:53.258 +05:30 [Debug] Connection id ""0HL6G79SP4NFC"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170722.txt b/src/Api.Socioboard/wwwroot/log/log-20170722.txt new file mode 100644 index 000000000..78c23300d --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170722.txt @@ -0,0 +1,1657 @@ +2017-07-22 11:07:50.138 +05:30 [Debug] Hosting starting +2017-07-22 11:07:50.395 +05:30 [Debug] Hosting started +2017-07-22 11:07:50.528 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" started. +2017-07-22 11:07:50.545 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" started. +2017-07-22 11:07:50.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 11:07:50.835 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 11:07:50.937 +05:30 [Information] Request finished in 215.5236ms 200 +2017-07-22 11:07:50.999 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:07:52.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 11:07:52.174 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"110a4556-61f9-494b-a8c8-e6ba3c9e73c2"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 11:07:52.395 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 11:07:52.604 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 11:07:52.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 11:07:52.668 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:07:52.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:07:52.684 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:07:53.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 649.1193ms +2017-07-22 11:07:53.206 +05:30 [Information] Request finished in 2518.15ms 200 application/json; charset=utf-8 +2017-07-22 11:07:53.211 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" completed keep alive response. +2017-07-22 11:07:53.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-22 11:07:53.252 +05:30 [Debug] Request did not match any routes. +2017-07-22 11:07:53.272 +05:30 [Debug] The request path "" does not match the path filter +2017-07-22 11:07:53.277 +05:30 [Information] Request finished in 28.124ms 404 +2017-07-22 11:07:53.278 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:08:09.774 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:08:09.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:08:09.854 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:08:13.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 11:08:15.160 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-07-22 11:08:15.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 11:08:15.165 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 11:08:18.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 11:08:22.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:22.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:22.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:22.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12227.3231ms +2017-07-22 11:08:22.168 +05:30 [Information] Request finished in 12626.153ms 200 application/json; charset=utf-8 +2017-07-22 11:08:22.169 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" completed keep alive response. +2017-07-22 11:08:24.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:24.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:24.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:24.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9166.3894ms +2017-07-22 11:08:24.337 +05:30 [Information] Request finished in 9176.8809ms 200 application/json; charset=utf-8 +2017-07-22 11:08:24.337 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:08:24.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-22 11:08:24.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 11:08:24.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 11:08:27.903 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:08:29.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:29.593 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:29.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:29.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4926.9082ms +2017-07-22 11:08:29.639 +05:30 [Information] Request finished in 4934.1486ms 200 application/json; charset=utf-8 +2017-07-22 11:08:29.640 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" completed keep alive response. +2017-07-22 11:08:33.055 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-22 11:08:33.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 11:08:33.058 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 11:08:33.069 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-22 11:08:33.080 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 11:08:33.081 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 11:08:33.741 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" started. +2017-07-22 11:08:33.769 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" started. +2017-07-22 11:08:34.006 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139175 +2017-07-22 11:08:34.007 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 11:08:34.009 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 11:08:34.010 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1139175 +2017-07-22 11:08:34.016 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 11:08:34.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 11:08:34.509 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" started. +2017-07-22 11:08:34.618 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 63 +2017-07-22 11:08:34.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 11:08:34.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 11:08:36.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:08:36.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:08:37.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:08:37.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:08:37.430 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:37.431 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:08:37.431 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:37.432 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:37.452 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4385.7007ms +2017-07-22 11:08:37.455 +05:30 [Information] Request finished in 4406.741ms 200 application/json; charset=utf-8 +2017-07-22 11:08:37.456 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:08:37.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "487114"]) - ModelState is Valid +2017-07-22 11:08:39.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:39.333 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:08:39.333 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:39.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:39.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6256.3073ms +2017-07-22 11:08:39.351 +05:30 [Information] Request finished in 6292.7642ms 200 application/json; charset=utf-8 +2017-07-22 11:08:39.352 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" completed keep alive response. +2017-07-22 11:08:39.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:39.762 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:08:39.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:39.769 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:39.877 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5859.6184ms +2017-07-22 11:08:39.880 +05:30 [Information] Request finished in 6071.9604ms 200 application/json; charset=utf-8 +2017-07-22 11:08:39.881 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" completed keep alive response. +2017-07-22 11:08:40.658 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:40.659 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:08:40.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:40.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:40.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 6639.9339ms +2017-07-22 11:08:40.670 +05:30 [Information] Request finished in 6862.2758ms 200 application/json; charset=utf-8 +2017-07-22 11:08:40.672 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" completed keep alive response. +2017-07-22 11:08:41.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:08:41.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:08:41.567 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:08:41.575 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 6939.3354ms +2017-07-22 11:08:41.589 +05:30 [Information] Request finished in 6971.7157ms 200 application/json; charset=utf-8 +2017-07-22 11:08:41.590 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" completed keep alive response. +2017-07-22 11:08:47.116 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-22 11:08:47.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 11:08:47.122 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 11:08:50.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-22 11:09:20.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:09:20.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:09:20.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:09:20.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:09:20.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 33248.0472ms +2017-07-22 11:09:20.382 +05:30 [Information] Request finished in 33303.4421ms 200 application/json; charset=utf-8 +2017-07-22 11:09:20.383 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:09:50.496 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" received FIN. +2017-07-22 11:09:50.496 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" received FIN. +2017-07-22 11:09:50.497 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" received FIN. +2017-07-22 11:09:50.497 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" disconnecting. +2017-07-22 11:09:50.498 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" disconnecting. +2017-07-22 11:09:50.498 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" received FIN. +2017-07-22 11:09:50.504 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" disconnecting. +2017-07-22 11:09:50.502 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" sending FIN. +2017-07-22 11:09:50.504 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" sending FIN. +2017-07-22 11:09:50.500 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" disconnecting. +2017-07-22 11:09:50.514 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" sent FIN with status "0". +2017-07-22 11:09:50.513 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" sending FIN. +2017-07-22 11:09:50.517 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" sent FIN with status "0". +2017-07-22 11:09:50.518 +05:30 [Debug] Connection id ""0HL6GOF5C7258"" stopped. +2017-07-22 11:09:50.519 +05:30 [Debug] Connection id ""0HL6GOF5C7259"" stopped. +2017-07-22 11:09:50.519 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" sending FIN. +2017-07-22 11:09:50.520 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" sent FIN with status "0". +2017-07-22 11:09:50.520 +05:30 [Debug] Connection id ""0HL6GOF5C725A"" stopped. +2017-07-22 11:09:50.520 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" sent FIN with status "0". +2017-07-22 11:09:50.522 +05:30 [Debug] Connection id ""0HL6GOF5C7257"" stopped. +2017-07-22 11:10:19.641 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:10:19.642 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:10:19.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:10:22.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:10:23.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:23.181 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:23.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:23.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3540.0844ms +2017-07-22 11:10:23.192 +05:30 [Information] Request finished in 3553.4926ms 200 application/json; charset=utf-8 +2017-07-22 11:10:23.193 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:10:23.220 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 11:10:23.221 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 11:10:23.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 11:10:26.288 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:10:27.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:27.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:27.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:27.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4264.3548ms +2017-07-22 11:10:27.494 +05:30 [Information] Request finished in 4276.7781ms 200 application/json; charset=utf-8 +2017-07-22 11:10:27.494 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:10:27.519 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-22 11:10:27.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 11:10:27.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 11:10:29.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:10:31.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:31.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:31.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:31.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3631.9182ms +2017-07-22 11:10:31.172 +05:30 [Information] Request finished in 3653.8023ms 200 application/json; charset=utf-8 +2017-07-22 11:10:31.174 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:10:32.597 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" started. +2017-07-22 11:10:32.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-22 11:10:32.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 11:10:32.611 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 11:10:32.616 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-22 11:10:32.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 11:10:32.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 11:10:33.065 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" started. +2017-07-22 11:10:33.070 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-22 11:10:33.071 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 11:10:33.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 11:10:36.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:10:36.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:10:36.201 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-22 11:10:37.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:37.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:10:37.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:37.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:37.642 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5008.5444ms +2017-07-22 11:10:37.653 +05:30 [Information] Request finished in 5046.4412ms 200 application/json; charset=utf-8 +2017-07-22 11:10:37.655 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" completed keep alive response. +2017-07-22 11:10:38.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:38.078 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:10:38.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:38.080 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:38.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5457.599ms +2017-07-22 11:10:38.095 +05:30 [Information] Request finished in 5491.3989ms 200 application/json; charset=utf-8 +2017-07-22 11:10:38.096 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" completed keep alive response. +2017-07-22 11:10:46.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:10:46.463 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:10:46.463 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:10:46.465 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:10:46.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 13393.7715ms +2017-07-22 11:10:46.479 +05:30 [Information] Request finished in 13409.5382ms 200 application/json; charset=utf-8 +2017-07-22 11:10:46.480 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" completed keep alive response. +2017-07-22 11:11:50.538 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" received FIN. +2017-07-22 11:11:50.539 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" disconnecting. +2017-07-22 11:11:50.546 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" sending FIN. +2017-07-22 11:11:50.547 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" sent FIN with status "0". +2017-07-22 11:11:50.547 +05:30 [Debug] Connection id ""0HL6GOF5C725B"" stopped. +2017-07-22 11:11:50.539 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" received FIN. +2017-07-22 11:11:50.572 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" received FIN. +2017-07-22 11:11:50.616 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" disconnecting. +2017-07-22 11:11:50.617 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" sending FIN. +2017-07-22 11:11:50.617 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" sent FIN with status "0". +2017-07-22 11:11:50.616 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" disconnecting. +2017-07-22 11:11:50.617 +05:30 [Debug] Connection id ""0HL6GOF5C725C"" stopped. +2017-07-22 11:11:50.624 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" sending FIN. +2017-07-22 11:11:50.624 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" sent FIN with status "0". +2017-07-22 11:11:50.644 +05:30 [Debug] Connection id ""0HL6GOF5C7256"" stopped. +2017-07-22 11:28:47.835 +05:30 [Debug] Hosting starting +2017-07-22 11:28:48.767 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" started. +2017-07-22 11:28:48.796 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" started. +2017-07-22 11:28:48.882 +05:30 [Debug] Hosting started +2017-07-22 11:28:49.030 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 11:28:49.030 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 11:28:49.118 +05:30 [Information] Request finished in 125.3822ms 200 +2017-07-22 11:28:49.311 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:28:50.677 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 11:28:50.733 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"6f7e0c0b-59fd-4d4d-9183-fc2902415a03"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 11:28:51.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 11:28:51.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 11:28:51.187 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 11:28:51.254 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:28:51.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:28:51.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:28:51.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 703.5211ms +2017-07-22 11:28:52.071 +05:30 [Information] Request finished in 3090.3134ms 200 application/json; charset=utf-8 +2017-07-22 11:28:52.085 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:02.946 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:29:02.948 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:29:02.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:29:06.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:14.100 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:14.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:14.112 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:14.234 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11269.9038ms +2017-07-22 11:29:14.237 +05:30 [Information] Request finished in 11296.3725ms 200 application/json; charset=utf-8 +2017-07-22 11:29:14.238 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:14.510 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 75 +2017-07-22 11:29:14.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-22 11:29:14.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-22 11:29:17.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 11:29:18.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:18.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:18.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:18.280 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3765.7953ms +2017-07-22 11:29:18.282 +05:30 [Information] Request finished in 3771.1953ms 200 application/json; charset=utf-8 +2017-07-22 11:29:18.283 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:18.487 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:29:18.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:29:18.490 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:29:18.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:29:18.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:29:18.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:29:21.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:22.012 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:22.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:22.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:22.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:22.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3567.6596ms +2017-07-22 11:29:22.061 +05:30 [Information] Request finished in 3574.1852ms 200 application/json; charset=utf-8 +2017-07-22 11:29:22.062 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:22.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 11:29:22.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 11:29:22.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 11:29:24.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:24.681 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:24.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:24.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5764.3108ms +2017-07-22 11:29:24.698 +05:30 [Information] Request finished in 5778.4211ms 200 application/json; charset=utf-8 +2017-07-22 11:29:24.699 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:24.745 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 11:29:24.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 11:29:24.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 11:29:25.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:26.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:26.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:26.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:26.445 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4349.4556ms +2017-07-22 11:29:26.450 +05:30 [Information] Request finished in 4359.2625ms 200 application/json; charset=utf-8 +2017-07-22 11:29:26.451 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:26.472 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-22 11:29:26.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 11:29:26.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 11:29:27.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:28.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:28.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:28.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:28.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4004.5273ms +2017-07-22 11:29:28.756 +05:30 [Information] Request finished in 4010.8933ms 200 application/json; charset=utf-8 +2017-07-22 11:29:28.757 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:28.767 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-22 11:29:28.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 11:29:28.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 11:29:29.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:29:31.042 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:31.043 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:31.045 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:31.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4611.6139ms +2017-07-22 11:29:31.090 +05:30 [Information] Request finished in 4621.811ms 200 application/json; charset=utf-8 +2017-07-22 11:29:31.091 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:31.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:29:33.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:33.058 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:33.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:33.067 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4287.2742ms +2017-07-22 11:29:33.070 +05:30 [Information] Request finished in 4307.2798ms 200 application/json; charset=utf-8 +2017-07-22 11:29:33.071 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:34.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-22 11:29:34.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 11:29:34.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-22 11:29:34.655 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 11:29:34.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 11:29:34.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 11:29:35.159 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" started. +2017-07-22 11:29:35.164 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" started. +2017-07-22 11:29:35.168 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1139175 +2017-07-22 11:29:35.168 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 11:29:35.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 11:29:35.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1139175 +2017-07-22 11:29:35.173 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 11:29:35.174 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 11:29:36.033 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" started. +2017-07-22 11:29:36.034 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:29:36.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:29:36.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:29:37.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:29:37.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:29:38.598 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:38.599 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:29:38.600 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:38.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:38.620 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3949.0929ms +2017-07-22 11:29:38.624 +05:30 [Information] Request finished in 3972.9585ms 200 application/json; charset=utf-8 +2017-07-22 11:29:38.625 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:38.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:29:38.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:29:39.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:29:39.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:39.405 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:29:39.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:39.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:39.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4746.0929ms +2017-07-22 11:29:39.417 +05:30 [Information] Request finished in 4764.4819ms 200 application/json; charset=utf-8 +2017-07-22 11:29:39.418 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:29:41.091 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:41.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:41.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:41.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5060.3612ms +2017-07-22 11:29:41.102 +05:30 [Information] Request finished in 5068.2638ms 200 application/json; charset=utf-8 +2017-07-22 11:29:41.103 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" completed keep alive response. +2017-07-22 11:29:41.134 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 63 +2017-07-22 11:29:41.135 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 11:29:41.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 11:29:41.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:41.261 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:29:41.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:41.263 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:41.353 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6178.6822ms +2017-07-22 11:29:41.358 +05:30 [Information] Request finished in 6190.3778ms 200 application/json; charset=utf-8 +2017-07-22 11:29:41.359 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" completed keep alive response. +2017-07-22 11:29:42.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:42.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:29:42.809 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:42.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:42.825 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7631.9297ms +2017-07-22 11:29:42.828 +05:30 [Information] Request finished in 7655.9059ms 200 application/json; charset=utf-8 +2017-07-22 11:29:42.829 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" completed keep alive response. +2017-07-22 11:29:44.292 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "487114"]) - ModelState is Valid +2017-07-22 11:29:45.051 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-22 11:29:45.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 11:29:45.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 11:29:46.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:29:46.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:29:46.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:29:46.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 5277.3872ms +2017-07-22 11:29:46.420 +05:30 [Information] Request finished in 5294.0842ms 200 application/json; charset=utf-8 +2017-07-22 11:29:46.421 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" completed keep alive response. +2017-07-22 11:29:48.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-22 11:30:09.879 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:30:09.882 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:30:09.885 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:30:09.889 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:30:09.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 24871.4378ms +2017-07-22 11:30:09.933 +05:30 [Information] Request finished in 24886.6373ms 200 application/json; charset=utf-8 +2017-07-22 11:30:09.934 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" completed keep alive response. +2017-07-22 11:30:48.739 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" received FIN. +2017-07-22 11:30:48.742 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" received FIN. +2017-07-22 11:30:48.744 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" disconnecting. +2017-07-22 11:30:48.746 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" sending FIN. +2017-07-22 11:30:48.751 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" sent FIN with status "0". +2017-07-22 11:30:48.753 +05:30 [Debug] Connection id ""0HL6GOQSBLT0B"" stopped. +2017-07-22 11:30:48.744 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" disconnecting. +2017-07-22 11:30:48.739 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" received FIN. +2017-07-22 11:30:48.754 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" received FIN. +2017-07-22 11:30:48.756 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" disconnecting. +2017-07-22 11:30:48.757 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" disconnecting. +2017-07-22 11:30:48.757 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" sending FIN. +2017-07-22 11:30:48.758 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" sending FIN. +2017-07-22 11:30:48.758 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" sent FIN with status "0". +2017-07-22 11:30:48.759 +05:30 [Debug] Connection id ""0HL6GOQSBLT0E"" stopped. +2017-07-22 11:30:48.759 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" sent FIN with status "0". +2017-07-22 11:30:48.759 +05:30 [Debug] Connection id ""0HL6GOQSBLT0F"" stopped. +2017-07-22 11:30:48.753 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" sending FIN. +2017-07-22 11:30:48.760 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" sent FIN with status "0". +2017-07-22 11:30:48.761 +05:30 [Debug] Connection id ""0HL6GOQSBLT0D"" stopped. +2017-07-22 11:32:01.315 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" received FIN. +2017-07-22 11:32:01.316 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" started. +2017-07-22 11:32:01.316 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" disconnecting. +2017-07-22 11:32:01.318 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 11:32:01.319 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" sending FIN. +2017-07-22 11:32:01.320 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" sent FIN with status "0". +2017-07-22 11:32:01.320 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 11:32:01.321 +05:30 [Debug] Connection id ""0HL6GOQSBLT0C"" stopped. +2017-07-22 11:32:01.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 11:32:04.401 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:32:04.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:04.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:04.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:04.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3591.5526ms +2017-07-22 11:32:04.925 +05:30 [Information] Request finished in 3607.8732ms 200 application/json; charset=utf-8 +2017-07-22 11:32:04.926 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" completed keep alive response. +2017-07-22 11:32:04.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 11:32:04.963 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 11:32:04.964 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 11:32:07.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d0317e5f1119"]) - ModelState is Valid +2017-07-22 11:32:09.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:09.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:09.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:09.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 4330.1283ms +2017-07-22 11:32:09.309 +05:30 [Information] Request finished in 4349.0584ms 200 application/json; charset=utf-8 +2017-07-22 11:32:09.311 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" completed keep alive response. +2017-07-22 11:32:09.341 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=487114 +2017-07-22 11:32:09.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 11:32:09.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 11:32:12.392 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:32:15.502 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:15.503 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:15.504 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:15.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6157.7969ms +2017-07-22 11:32:15.513 +05:30 [Information] Request finished in 6186.886ms 200 application/json; charset=utf-8 +2017-07-22 11:32:15.514 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" completed keep alive response. +2017-07-22 11:32:17.957 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" started. +2017-07-22 11:32:17.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1139175 +2017-07-22 11:32:17.980 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=487114 +2017-07-22 11:32:17.981 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 11:32:17.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 11:32:17.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 11:32:17.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 11:32:18.558 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" started. +2017-07-22 11:32:18.561 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=167852200332381&userId=487114&skip=0&count=10 +2017-07-22 11:32:18.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 11:32:18.562 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 11:32:21.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1139175"]) - ModelState is Valid +2017-07-22 11:32:21.188 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["487114"]) - ModelState is Valid +2017-07-22 11:32:21.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["167852200332381", "487114", "0", "10"]) - ModelState is Valid +2017-07-22 11:32:22.892 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:22.893 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:32:22.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:22.894 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:22.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4912.9362ms +2017-07-22 11:32:22.901 +05:30 [Information] Request finished in 4941.6747ms 200 application/json; charset=utf-8 +2017-07-22 11:32:22.902 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" completed keep alive response. +2017-07-22 11:32:23.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:23.323 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:32:23.324 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:23.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:23.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5341.2939ms +2017-07-22 11:32:23.330 +05:30 [Information] Request finished in 5371.2491ms 200 application/json; charset=utf-8 +2017-07-22 11:32:23.331 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" completed keep alive response. +2017-07-22 11:32:33.643 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 11:32:33.644 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 11:32:33.644 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 11:32:33.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 11:32:33.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 15086.914ms +2017-07-22 11:32:33.662 +05:30 [Information] Request finished in 15100.1087ms 200 application/json; charset=utf-8 +2017-07-22 11:32:33.662 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" completed keep alive response. +2017-07-22 11:34:48.738 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" received FIN. +2017-07-22 11:34:48.742 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" received FIN. +2017-07-22 11:34:48.743 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" disconnecting. +2017-07-22 11:34:48.742 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" disconnecting. +2017-07-22 11:34:48.743 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" sending FIN. +2017-07-22 11:34:48.738 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" received FIN. +2017-07-22 11:34:48.749 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" sending FIN. +2017-07-22 11:34:48.750 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" sent FIN with status "0". +2017-07-22 11:34:48.751 +05:30 [Debug] Connection id ""0HL6GOQSBLT0G"" stopped. +2017-07-22 11:34:48.751 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" sent FIN with status "0". +2017-07-22 11:34:48.751 +05:30 [Debug] Connection id ""0HL6GOQSBLT0I"" stopped. +2017-07-22 11:34:48.749 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" disconnecting. +2017-07-22 11:34:48.752 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" sending FIN. +2017-07-22 11:34:48.753 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" sent FIN with status "0". +2017-07-22 11:34:48.753 +05:30 [Debug] Connection id ""0HL6GOQSBLT0H"" stopped. +2017-07-22 13:56:07.811 +05:30 [Debug] Hosting starting +2017-07-22 13:56:08.118 +05:30 [Debug] Hosting started +2017-07-22 13:56:08.201 +05:30 [Debug] Connection id ""0HL6GRD6N4FEQ"" started. +2017-07-22 13:56:08.201 +05:30 [Debug] Connection id ""0HL6GRD6N4FEP"" started. +2017-07-22 13:56:08.465 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 13:56:08.458 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 13:56:08.582 +05:30 [Information] Request finished in 175.5295ms 200 +2017-07-22 13:56:08.684 +05:30 [Debug] Connection id ""0HL6GRD6N4FEQ"" completed keep alive response. +2017-07-22 13:56:10.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 13:56:10.189 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"15cfebaf-3e6f-405b-9bd7-c56a58ad0073"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 13:56:10.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 13:56:10.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 13:56:10.534 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 13:56:10.597 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 13:56:10.606 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:56:10.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:56:10.942 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 570.8716ms +2017-07-22 13:56:11.071 +05:30 [Information] Request finished in 2718.2055ms 200 application/json; charset=utf-8 +2017-07-22 13:56:11.074 +05:30 [Debug] Connection id ""0HL6GRD6N4FEP"" completed keep alive response. +2017-07-22 13:56:25.259 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 55 +2017-07-22 13:56:25.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 13:56:25.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 13:56:28.939 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 13:56:30.464 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 13:56:30.512 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 13:56:30.550 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 13:56:30.554 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:56:30.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:56:30.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5290.8778ms +2017-07-22 13:56:30.568 +05:30 [Information] Request finished in 5309.2507ms 200 application/json; charset=utf-8 +2017-07-22 13:56:30.569 +05:30 [Debug] Connection id ""0HL6GRD6N4FEQ"" completed keep alive response. +2017-07-22 13:56:42.402 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-22 13:56:42.403 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 13:56:42.405 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 13:56:45.463 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 13:56:45.621 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 13:56:45.623 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 13:56:45.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 13:56:45.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:56:45.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:56:45.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3252.0461ms +2017-07-22 13:56:45.668 +05:30 [Information] Request finished in 3265.9436ms 200 application/json; charset=utf-8 +2017-07-22 13:56:45.669 +05:30 [Debug] Connection id ""0HL6GRD6N4FEP"" completed keep alive response. +2017-07-22 13:57:08.021 +05:30 [Debug] Hosting starting +2017-07-22 13:57:08.354 +05:30 [Debug] Hosting started +2017-07-22 13:57:08.509 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" started. +2017-07-22 13:57:08.509 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" started. +2017-07-22 13:57:08.820 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 13:57:08.836 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 13:57:09.029 +05:30 [Information] Request finished in 189.1581ms 200 +2017-07-22 13:57:09.307 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" completed keep alive response. +2017-07-22 13:57:10.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 13:57:10.681 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"f18d8c51-083a-4324-a5a1-11d34d399546"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 13:57:11.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 13:57:11.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 13:57:11.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 13:57:11.773 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 13:57:11.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:57:11.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:57:12.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 698.6366ms +2017-07-22 13:57:12.701 +05:30 [Information] Request finished in 3762.6134ms 200 application/json; charset=utf-8 +2017-07-22 13:57:12.703 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" completed keep alive response. +2017-07-22 13:57:38.661 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-22 13:57:38.662 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 13:57:38.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 13:57:41.941 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 13:57:45.097 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 13:57:45.175 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 13:57:45.258 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 13:57:45.268 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:57:45.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:57:45.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 6640.8208ms +2017-07-22 13:57:45.676 +05:30 [Information] Request finished in 6985.4148ms 200 application/json; charset=utf-8 +2017-07-22 13:57:45.677 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" completed keep alive response. +2017-07-22 13:57:56.324 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-22 13:57:56.325 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 13:57:56.327 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 13:57:59.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 13:57:59.567 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 13:57:59.568 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 13:57:59.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 13:57:59.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 13:57:59.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 13:57:59.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3328.1883ms +2017-07-22 13:57:59.814 +05:30 [Information] Request finished in 3491.1039ms 200 application/json; charset=utf-8 +2017-07-22 13:57:59.815 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" completed keep alive response. +2017-07-22 13:59:08.503 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" received FIN. +2017-07-22 13:59:08.503 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" received FIN. +2017-07-22 13:59:08.506 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" disconnecting. +2017-07-22 13:59:08.506 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" disconnecting. +2017-07-22 13:59:08.508 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" sending FIN. +2017-07-22 13:59:08.508 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" sending FIN. +2017-07-22 13:59:08.516 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" sent FIN with status "0". +2017-07-22 13:59:08.516 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" sent FIN with status "0". +2017-07-22 13:59:08.521 +05:30 [Debug] Connection id ""0HL6GRDOM9ETO"" stopped. +2017-07-22 13:59:08.521 +05:30 [Debug] Connection id ""0HL6GRDOM9ETP"" stopped. +2017-07-22 13:59:26.421 +05:30 [Debug] Connection id ""0HL6GRDOM9ETQ"" started. +2017-07-22 13:59:26.429 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-22 13:59:26.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 13:59:26.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 13:59:28.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 13:59:45.468 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 13:59:45.470 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 14:00:48.821 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 14:00:49.215 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 14:02:39.229 +05:30 [Debug] Connection id ""0HL6GRDOM9ETQ"" received FIN. +2017-07-22 14:03:40.600 +05:30 [Fatal] Value '3k306' is not of the correct type. +2017-07-22 14:03:41.298 +05:30 [Error] at Api.Socioboard.Helper.SessionFactory.Init(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 41 + at Api.Socioboard.Helper.SessionFactory.GetSessionFactory(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 57 + at Api.Socioboard.Helper.SessionFactory.GetNewSession(IHostingEnvironment env) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Helper\SessionFactory.cs:line 69 + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 29 +2017-07-22 14:04:43.239 +05:30 [Debug] Hosting starting +2017-07-22 14:04:43.547 +05:30 [Debug] Hosting started +2017-07-22 14:04:43.768 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" started. +2017-07-22 14:04:43.768 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" started. +2017-07-22 14:04:43.960 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 14:04:43.960 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 14:04:44.093 +05:30 [Information] Request finished in 109.5106ms 200 +2017-07-22 14:04:44.189 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" completed keep alive response. +2017-07-22 14:04:44.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 14:04:45.037 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"75bcf993-5064-47c6-8c10-822643e2dd0b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 14:04:45.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 14:04:45.636 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 14:04:45.639 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 14:04:45.682 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:04:45.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:04:45.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:04:46.757 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1268.5521ms +2017-07-22 14:04:46.898 +05:30 [Information] Request finished in 2981.0444ms 200 application/json; charset=utf-8 +2017-07-22 14:04:46.902 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" completed keep alive response. +2017-07-22 14:06:43.742 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" received FIN. +2017-07-22 14:06:43.742 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" received FIN. +2017-07-22 14:06:43.749 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" disconnecting. +2017-07-22 14:06:43.753 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" disconnecting. +2017-07-22 14:06:43.762 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" sending FIN. +2017-07-22 14:06:43.763 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" sending FIN. +2017-07-22 14:06:43.769 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" sent FIN with status "0". +2017-07-22 14:06:43.772 +05:30 [Debug] Connection id ""0HL6GRI0BUIM1"" stopped. +2017-07-22 14:06:43.772 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" sent FIN with status "0". +2017-07-22 14:06:43.777 +05:30 [Debug] Connection id ""0HL6GRI0BUIM0"" stopped. +2017-07-22 14:08:21.326 +05:30 [Debug] Hosting starting +2017-07-22 14:08:21.665 +05:30 [Debug] Hosting started +2017-07-22 14:08:21.789 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" started. +2017-07-22 14:08:21.789 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" started. +2017-07-22 14:08:22.012 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-22 14:08:22.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-22 14:08:22.105 +05:30 [Information] Request finished in 167.6604ms 200 +2017-07-22 14:08:22.176 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" completed keep alive response. +2017-07-22 14:08:22.967 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-22 14:08:23.050 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"7b3751e5-687a-4d54-be72-542bd966be06"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-22 14:08:23.454 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-22 14:08:23.612 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-22 14:08:23.615 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-22 14:08:23.690 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:08:23.699 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:08:23.703 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:08:24.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 628.7436ms +2017-07-22 14:08:24.208 +05:30 [Information] Request finished in 2282.2125ms 200 application/json; charset=utf-8 +2017-07-22 14:08:24.212 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" completed keep alive response. +2017-07-22 14:10:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" received FIN. +2017-07-22 14:10:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" received FIN. +2017-07-22 14:10:21.770 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" disconnecting. +2017-07-22 14:10:21.770 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" disconnecting. +2017-07-22 14:10:21.772 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" sending FIN. +2017-07-22 14:10:21.772 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" sending FIN. +2017-07-22 14:10:21.783 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" sent FIN with status "0". +2017-07-22 14:10:21.783 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" sent FIN with status "0". +2017-07-22 14:10:21.786 +05:30 [Debug] Connection id ""0HL6GRK1B624E"" stopped. +2017-07-22 14:10:21.786 +05:30 [Debug] Connection id ""0HL6GRK1B624F"" stopped. +2017-07-22 14:14:01.943 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" started. +2017-07-22 14:14:01.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-22 14:14:01.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-22 14:14:01.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-22 14:14:05.549 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-22 14:14:12.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:12.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:12.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:13.076 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 11092.0247ms +2017-07-22 14:14:13.084 +05:30 [Information] Request finished in 11137.4946ms 200 application/json; charset=utf-8 +2017-07-22 14:14:13.084 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" completed keep alive response. +2017-07-22 14:14:13.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateTrialStatus application/x-www-form-urlencoded 4 +2017-07-22 14:14:13.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateTrialStatus"'. +2017-07-22 14:14:13.404 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" +2017-07-22 14:14:16.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:16.557 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:16.558 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:16.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:16.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateTrialStatus (Api.Socioboard)" in 3156.6524ms +2017-07-22 14:14:16.566 +05:30 [Information] Request finished in 3167.3022ms 200 application/json; charset=utf-8 +2017-07-22 14:14:16.567 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" completed keep alive response. +2017-07-22 14:14:19.768 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:14:19.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:14:19.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:14:22.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:23.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:23.032 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:23.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:23.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3328.228ms +2017-07-22 14:14:23.105 +05:30 [Information] Request finished in 3336.6086ms 200 application/json; charset=utf-8 +2017-07-22 14:14:23.106 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" completed keep alive response. +2017-07-22 14:14:30.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:14:30.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:14:30.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:14:30.555 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" started. +2017-07-22 14:14:30.558 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" started. +2017-07-22 14:14:30.559 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:14:30.560 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:14:30.561 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:14:30.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:14:30.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:14:30.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:14:31.563 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" started. +2017-07-22 14:14:31.570 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" started. +2017-07-22 14:14:31.657 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:14:31.659 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:14:31.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:14:31.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:14:31.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:14:31.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:14:32.705 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" started. +2017-07-22 14:14:33.517 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:14:33.518 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:14:33.519 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:14:34.571 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:34.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:34.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:34.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:34.649 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4213.4802ms +2017-07-22 14:14:34.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:34.659 +05:30 [Information] Request finished in 4233.4111ms 200 application/json; charset=utf-8 +2017-07-22 14:14:34.660 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" completed keep alive response. +2017-07-22 14:14:35.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:35.011 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:35.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:35.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:35.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4465.8167ms +2017-07-22 14:14:35.045 +05:30 [Information] Request finished in 4486.0217ms 200 application/json; charset=utf-8 +2017-07-22 14:14:35.046 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" completed keep alive response. +2017-07-22 14:14:35.194 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:35.366 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:35.367 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:35.367 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:35.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:35.373 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4794.1746ms +2017-07-22 14:14:35.376 +05:30 [Information] Request finished in 4815.7058ms 200 application/json; charset=utf-8 +2017-07-22 14:14:35.377 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" completed keep alive response. +2017-07-22 14:14:35.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:14:35.738 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:14:35.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:14:35.740 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:14:35.742 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:14:35.743 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:14:35.743 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:14:35.757 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:35.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:35.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:35.782 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2260.1622ms +2017-07-22 14:14:35.787 +05:30 [Information] Request finished in 2270.4289ms 200 application/json; charset=utf-8 +2017-07-22 14:14:35.787 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" completed keep alive response. +2017-07-22 14:14:36.387 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:36.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:36.513 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:14:36.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:14:36.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:14:36.653 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:14:36.653 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:14:36.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:14:36.981 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" started. +2017-07-22 14:14:37.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:37.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:37.123 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:37.144 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:37.244 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" received FIN. +2017-07-22 14:14:37.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5596.9904ms +2017-07-22 14:14:37.277 +05:30 [Information] Connection id ""0HL6GRK1B624J"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-22 14:14:37.280 +05:30 [Information] Request finished in 5712.388ms 200 application/json; charset=utf-8 +2017-07-22 14:14:37.281 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" completed keep alive response. +2017-07-22 14:14:37.282 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" disconnecting. +2017-07-22 14:14:37.283 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" sending FIN. +2017-07-22 14:14:37.290 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:14:37.291 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" sent FIN with status "0". +2017-07-22 14:14:37.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:14:37.296 +05:30 [Debug] Connection id ""0HL6GRK1B624J"" stopped. +2017-07-22 14:14:37.299 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:14:38.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:38.825 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:38.826 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:38.828 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:38.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 7133.5199ms +2017-07-22 14:14:38.836 +05:30 [Information] Request finished in 7178.2449ms 200 application/json; charset=utf-8 +2017-07-22 14:14:38.837 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" completed keep alive response. +2017-07-22 14:14:39.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:39.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:39.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:39.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:39.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:39.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:40.006 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4250.595ms +2017-07-22 14:14:40.161 +05:30 [Information] Request finished in 4347.112ms 200 application/json; charset=utf-8 +2017-07-22 14:14:40.163 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" completed keep alive response. +2017-07-22 14:14:40.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:40.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:40.166 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:40.220 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:40.253 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4480.2542ms +2017-07-22 14:14:40.255 +05:30 [Information] Request finished in 4524.3535ms 200 application/json; charset=utf-8 +2017-07-22 14:14:40.256 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" completed keep alive response. +2017-07-22 14:14:40.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:41.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:14:41.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:41.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:41.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:41.250 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:14:41.252 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3900.6633ms +2017-07-22 14:14:41.314 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:41.317 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:41.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:41.319 +05:30 [Information] Request finished in 4030.0687ms 200 application/json; charset=utf-8 +2017-07-22 14:14:41.320 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" completed keep alive response. +2017-07-22 14:14:41.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:41.340 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4816.4586ms +2017-07-22 14:14:41.354 +05:30 [Information] Request finished in 4928.8532ms 200 application/json; charset=utf-8 +2017-07-22 14:14:41.355 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" completed keep alive response. +2017-07-22 14:14:41.355 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:14:41.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:14:41.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:14:41.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:41.999 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:14:41.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:42.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:42.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 5348.1125ms +2017-07-22 14:14:42.008 +05:30 [Information] Request finished in 5579.4905ms 200 application/json; charset=utf-8 +2017-07-22 14:14:42.008 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" completed keep alive response. +2017-07-22 14:14:44.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:14:44.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:14:44.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:14:44.569 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:14:44.571 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3203.9972ms +2017-07-22 14:14:44.577 +05:30 [Information] Request finished in 3220.5316ms 200 application/json; charset=utf-8 +2017-07-22 14:14:44.601 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" completed keep alive response. +2017-07-22 14:14:51.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=5 +2017-07-22 14:14:51.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 14:14:51.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 14:14:54.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "5"]) - ModelState is Valid +2017-07-22 14:15:19.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:15:19.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:15:19.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:15:19.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:15:19.177 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 27734.6337ms +2017-07-22 14:15:19.179 +05:30 [Information] Request finished in 27746.4104ms 200 application/json; charset=utf-8 +2017-07-22 14:15:19.180 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" completed keep alive response. +2017-07-22 14:16:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" received FIN. +2017-07-22 14:16:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" received FIN. +2017-07-22 14:16:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" received FIN. +2017-07-22 14:16:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" disconnecting. +2017-07-22 14:16:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" disconnecting. +2017-07-22 14:16:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" received FIN. +2017-07-22 14:16:21.765 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" disconnecting. +2017-07-22 14:16:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" disconnecting. +2017-07-22 14:16:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" received FIN. +2017-07-22 14:16:21.766 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" disconnecting. +2017-07-22 14:16:21.766 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" sending FIN. +2017-07-22 14:16:21.765 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" received FIN. +2017-07-22 14:16:21.769 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" sending FIN. +2017-07-22 14:16:21.770 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" sent FIN with status "0". +2017-07-22 14:16:21.767 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" sending FIN. +2017-07-22 14:16:21.771 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" sending FIN. +2017-07-22 14:16:21.771 +05:30 [Debug] Connection id ""0HL6GRK1B624L"" stopped. +2017-07-22 14:16:21.771 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" sending FIN. +2017-07-22 14:16:21.769 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" disconnecting. +2017-07-22 14:16:21.772 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" sent FIN with status "0". +2017-07-22 14:16:21.773 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" sending FIN. +2017-07-22 14:16:21.774 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" sent FIN with status "0". +2017-07-22 14:16:21.774 +05:30 [Debug] Connection id ""0HL6GRK1B624H"" stopped. +2017-07-22 14:16:21.773 +05:30 [Debug] Connection id ""0HL6GRK1B624K"" stopped. +2017-07-22 14:16:21.775 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" sent FIN with status "0". +2017-07-22 14:16:21.776 +05:30 [Debug] Connection id ""0HL6GRK1B624I"" stopped. +2017-07-22 14:16:21.776 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" sent FIN with status "0". +2017-07-22 14:16:21.777 +05:30 [Debug] Connection id ""0HL6GRK1B624M"" stopped. +2017-07-22 14:16:21.777 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" sent FIN with status "0". +2017-07-22 14:16:21.778 +05:30 [Debug] Connection id ""0HL6GRK1B624G"" stopped. +2017-07-22 14:16:39.211 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" started. +2017-07-22 14:16:39.213 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:16:39.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:16:39.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:16:39.857 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" started. +2017-07-22 14:16:39.858 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:16:39.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:16:39.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:16:42.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:16:42.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:16:42.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:42.913 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:42.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:42.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.6647ms +2017-07-22 14:16:42.921 +05:30 [Information] Request finished in 3061.8921ms 200 application/json; charset=utf-8 +2017-07-22 14:16:42.922 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:16:42.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:16:42.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:16:42.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:16:43.477 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:43.478 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:16:43.478 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:43.479 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:43.481 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4265.0438ms +2017-07-22 14:16:43.484 +05:30 [Information] Request finished in 4270.6123ms 200 application/json; charset=utf-8 +2017-07-22 14:16:43.485 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:16:45.984 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:16:46.011 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:46.012 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:46.014 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:46.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3071.9379ms +2017-07-22 14:16:46.041 +05:30 [Information] Request finished in 3084.7161ms 200 application/json; charset=utf-8 +2017-07-22 14:16:46.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1&userId=1&profileId=187231345114052 0 +2017-07-22 14:16:46.042 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:16:46.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-07-22 14:16:46.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-07-22 14:16:49.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1", "1", "187231345114052"]) - ModelState is Valid +2017-07-22 14:16:51.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:51.361 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:16:51.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-22 14:16:51.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:51.367 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 5309.4351ms +2017-07-22 14:16:51.369 +05:30 [Information] Request finished in 5347.0908ms 200 text/plain; charset=utf-8 +2017-07-22 14:16:51.370 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:16:51.418 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:16:51.419 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:16:51.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:16:54.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:16:54.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:54.466 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:54.476 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:54.478 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3056.3533ms +2017-07-22 14:16:54.485 +05:30 [Information] Request finished in 3065.0799ms 200 application/json; charset=utf-8 +2017-07-22 14:16:54.486 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:16:54.527 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:16:54.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:16:54.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:16:57.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:16:57.569 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:57.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:57.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:57.577 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.0377ms +2017-07-22 14:16:57.579 +05:30 [Information] Request finished in 3053.2112ms 200 application/json; charset=utf-8 +2017-07-22 14:16:57.580 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:16:57.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:16:57.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:16:57.601 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:16:59.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:16:59.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:16:59.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:16:59.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:16:59.724 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2121.5664ms +2017-07-22 14:16:59.726 +05:30 [Information] Request finished in 2132.1264ms 200 application/json; charset=utf-8 +2017-07-22 14:16:59.727 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:17:00.975 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:17:00.976 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:17:00.976 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:17:00.978 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:17:00.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:17:00.979 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:17:01.450 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" started. +2017-07-22 14:17:01.456 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" started. +2017-07-22 14:17:01.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:17:01.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:17:01.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:17:01.519 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:17:01.520 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:17:01.521 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:17:01.846 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" started. +2017-07-22 14:17:01.849 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:17:01.850 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:17:01.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:17:03.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:03.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:03.261 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:17:03.261 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:03.265 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:03.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2288.9146ms +2017-07-22 14:17:03.272 +05:30 [Information] Request finished in 2312.6004ms 200 application/json; charset=utf-8 +2017-07-22 14:17:03.273 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:17:04.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:04.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:04.215 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:17:04.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:04.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:04.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3237.5173ms +2017-07-22 14:17:04.225 +05:30 [Information] Request finished in 3267.0801ms 200 application/json; charset=utf-8 +2017-07-22 14:17:04.226 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:17:04.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:04.736 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:04.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:04.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:17:04.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:04.876 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:04.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3364.8625ms +2017-07-22 14:17:04.895 +05:30 [Information] Request finished in 3426.688ms 200 application/json; charset=utf-8 +2017-07-22 14:17:04.896 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" completed keep alive response. +2017-07-22 14:17:05.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:17:05.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:05.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:05.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:05.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3185.9024ms +2017-07-22 14:17:05.042 +05:30 [Information] Request finished in 3193.7037ms 200 application/json; charset=utf-8 +2017-07-22 14:17:05.043 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" completed keep alive response. +2017-07-22 14:17:05.052 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:17:05.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:17:05.056 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:17:05.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:05.379 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:17:05.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:05.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:05.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3860.5371ms +2017-07-22 14:17:05.386 +05:30 [Information] Request finished in 3876.8199ms 200 application/json; charset=utf-8 +2017-07-22 14:17:05.389 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" completed keep alive response. +2017-07-22 14:17:08.124 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:17:08.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:08.184 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:08.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:08.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3128.0566ms +2017-07-22 14:17:08.191 +05:30 [Information] Request finished in 3138.0084ms 200 application/json; charset=utf-8 +2017-07-22 14:17:08.192 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:17:14.645 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-22 14:17:14.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-22 14:17:14.649 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-22 14:17:17.704 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:17.784 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:17.785 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:17.786 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:17.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3137.0397ms +2017-07-22 14:17:17.790 +05:30 [Information] Request finished in 3146.5662ms 200 application/json; charset=utf-8 +2017-07-22 14:17:17.790 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:17:17.799 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-22 14:17:17.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-22 14:17:17.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-22 14:17:20.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:17:20.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:20.927 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:20.930 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:20.932 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3125.6183ms +2017-07-22 14:17:20.935 +05:30 [Information] Request finished in 3140.2008ms 200 application/json; charset=utf-8 +2017-07-22 14:17:20.936 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" completed keep alive response. +2017-07-22 14:17:29.984 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 211 +2017-07-22 14:17:29.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-07-22 14:17:29.988 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-07-22 14:17:32.074 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAPe0x9UKEnkFyXQFU1dRmgFxgZAhPkZCV9HuV0nrMmd07CO6ZBpTXMgk6pIaCmtduYhUyh4dZBsmt8ZB1WiZBiMJ9stIcZATOifsOsZBYiETpchop6PfMbCbAW5zMarskqRmTGO8CnyQcWGoZCjIbUEDlAaBcjj1yDwZDZD", "1", "1"]) - ModelState is Valid +2017-07-22 14:17:32.939 +05:30 [Error] {"id":"187231345114052","birthday":"12/17/1993","cover":{"id":"118538431983344","offset_x":40,"offset_y":0,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/15823608_118538431983344_5000271662632656929_n.jpg?oh=008b52e566592c3e28a81b48611e4c08&oe=59EFA6C6"},"email":"soumyapanda@globussoft.in","gender":"male","name":"Soumya Panda"} +2017-07-22 14:17:33.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:17:34.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:17:34.004 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:17:34.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 4034.7877ms +2017-07-22 14:17:34.030 +05:30 [Information] Request finished in 4046.0784ms 200 application/json; charset=utf-8 +2017-07-22 14:17:34.031 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" completed keep alive response. +2017-07-22 14:17:34.148 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:17:34.149 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:17:34.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:17:59.809 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:18:00.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:00.492 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:00.493 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:00.494 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 26342.6738ms +2017-07-22 14:18:00.500 +05:30 [Information] Request finished in 26350.2323ms 200 application/json; charset=utf-8 +2017-07-22 14:18:00.501 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" completed keep alive response. +2017-07-22 14:18:00.532 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:18:00.532 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:18:00.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:18:12.977 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:18:12.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:12.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:12.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:12.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 12450.838ms +2017-07-22 14:18:12.988 +05:30 [Information] Request finished in 12460.6965ms 200 application/json; charset=utf-8 +2017-07-22 14:18:12.989 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:18:13.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:18:13.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:18:13.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:18:19.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:18:19.209 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:19.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:19.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:19.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6531.5565ms +2017-07-22 14:18:19.878 +05:30 [Information] Request finished in 6774.0911ms 200 application/json; charset=utf-8 +2017-07-22 14:18:19.880 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:18:21.861 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" received FIN. +2017-07-22 14:18:21.862 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" disconnecting. +2017-07-22 14:18:21.863 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" sending FIN. +2017-07-22 14:18:21.865 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" sent FIN with status "0". +2017-07-22 14:18:21.865 +05:30 [Debug] Connection id ""0HL6GRK1B624P"" stopped. +2017-07-22 14:18:21.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:18:21.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:18:21.898 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:18:21.923 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:18:21.927 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:18:21.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:18:21.945 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:18:21.946 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:18:21.947 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:18:21.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:18:21.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:18:21.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:18:22.600 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" started. +2017-07-22 14:18:23.169 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:18:23.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:18:23.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:18:25.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:18:25.974 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:25.975 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:18:25.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:25.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:26.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4094.9017ms +2017-07-22 14:18:26.023 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:18:26.028 +05:30 [Information] Request finished in 4160.4762ms 200 application/json; charset=utf-8 +2017-07-22 14:18:26.043 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" completed keep alive response. +2017-07-22 14:18:27.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:18:27.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:18:27.927 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:27.928 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:18:27.929 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:27.931 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:27.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5974.0401ms +2017-07-22 14:18:27.949 +05:30 [Information] Request finished in 6011.7885ms 200 application/json; charset=utf-8 +2017-07-22 14:18:27.951 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:18:29.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:29.128 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:18:29.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:29.130 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:18:29.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:29.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:29.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:29.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7216.1748ms +2017-07-22 14:18:29.163 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:29.165 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 5984.5415ms +2017-07-22 14:18:29.169 +05:30 [Information] Request finished in 7266.2637ms 200 application/json; charset=utf-8 +2017-07-22 14:18:29.170 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" completed keep alive response. +2017-07-22 14:18:29.749 +05:30 [Information] Request finished in 6348.0413ms 200 application/json; charset=utf-8 +2017-07-22 14:18:29.750 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" completed keep alive response. +2017-07-22 14:18:29.749 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:29.755 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:18:29.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:29.944 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:30.114 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:18:30.123 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:18:30.124 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:18:30.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 8003.2563ms +2017-07-22 14:18:30.544 +05:30 [Information] Request finished in 8574.8185ms 200 application/json; charset=utf-8 +2017-07-22 14:18:30.545 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" completed keep alive response. +2017-07-22 14:18:36.579 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:18:37.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:18:37.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:18:37.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:18:37.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7179.45ms +2017-07-22 14:18:37.311 +05:30 [Information] Request finished in 7364.4725ms 200 application/json; charset=utf-8 +2017-07-22 14:18:37.312 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" completed keep alive response. +2017-07-22 14:18:47.538 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=5 +2017-07-22 14:18:47.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 14:18:47.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 14:18:50.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "5"]) - ModelState is Valid +2017-07-22 14:19:11.300 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:19:11.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:19:11.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:19:11.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:19:11.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 23777.8848ms +2017-07-22 14:19:11.333 +05:30 [Information] Request finished in 23794.6311ms 200 application/json; charset=utf-8 +2017-07-22 14:19:11.334 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" completed keep alive response. +2017-07-22 14:20:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" received FIN. +2017-07-22 14:20:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" received FIN. +2017-07-22 14:20:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" disconnecting. +2017-07-22 14:20:21.764 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" sending FIN. +2017-07-22 14:20:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" received FIN. +2017-07-22 14:20:21.764 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" disconnecting. +2017-07-22 14:20:21.764 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" received FIN. +2017-07-22 14:20:21.764 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" sent FIN with status "0". +2017-07-22 14:20:21.766 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" received FIN. +2017-07-22 14:20:21.767 +05:30 [Debug] Connection id ""0HL6GRK1B624R"" stopped. +2017-07-22 14:20:21.768 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" disconnecting. +2017-07-22 14:20:21.768 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" sending FIN. +2017-07-22 14:20:21.770 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" sending FIN. +2017-07-22 14:20:21.766 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" disconnecting. +2017-07-22 14:20:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" disconnecting. +2017-07-22 14:20:21.770 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" sent FIN with status "0". +2017-07-22 14:20:21.772 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" sending FIN. +2017-07-22 14:20:21.773 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" sent FIN with status "0". +2017-07-22 14:20:21.774 +05:30 [Debug] Connection id ""0HL6GRK1B624N"" stopped. +2017-07-22 14:20:21.772 +05:30 [Debug] Connection id ""0HL6GRK1B624O"" stopped. +2017-07-22 14:20:21.774 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" sent FIN with status "0". +2017-07-22 14:20:21.775 +05:30 [Debug] Connection id ""0HL6GRK1B624Q"" stopped. +2017-07-22 14:20:21.775 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" sending FIN. +2017-07-22 14:20:21.776 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" sent FIN with status "0". +2017-07-22 14:20:21.776 +05:30 [Debug] Connection id ""0HL6GRK1B624S"" stopped. +2017-07-22 14:20:39.847 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" started. +2017-07-22 14:20:40.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:20:40.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:20:40.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:20:42.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:20:42.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:20:42.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:20:42.232 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:20:42.235 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2153.018ms +2017-07-22 14:20:42.238 +05:30 [Information] Request finished in 2375.5579ms 200 application/json; charset=utf-8 +2017-07-22 14:20:42.239 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" completed keep alive response. +2017-07-22 14:20:42.257 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:20:42.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:20:42.260 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:20:45.403 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:20:45.409 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:20:45.410 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:20:45.411 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:20:45.412 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3150.1175ms +2017-07-22 14:20:45.417 +05:30 [Information] Request finished in 3169.6067ms 200 application/json; charset=utf-8 +2017-07-22 14:20:45.418 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" completed keep alive response. +2017-07-22 14:20:45.423 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:20:45.424 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:20:45.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:20:48.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:20:48.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:20:48.491 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:20:48.492 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:20:48.493 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3067.4321ms +2017-07-22 14:20:48.496 +05:30 [Information] Request finished in 3072.9513ms 200 application/json; charset=utf-8 +2017-07-22 14:20:48.496 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" completed keep alive response. +2017-07-22 14:20:50.337 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" started. +2017-07-22 14:20:50.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:20:50.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:20:50.365 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:20:50.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:20:50.368 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:20:50.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:20:51.182 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" started. +2017-07-22 14:20:51.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=5 +2017-07-22 14:20:51.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 14:20:51.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 14:20:53.957 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "5"]) - ModelState is Valid +2017-07-22 14:20:57.241 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:20:58.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:20:58.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:20:58.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:20:59.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:20:59.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 9002.7031ms +2017-07-22 14:21:00.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:21:00.565 +05:30 [Information] Request finished in 10189.2508ms 200 application/json; charset=utf-8 +2017-07-22 14:21:00.566 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" completed keep alive response. +2017-07-22 14:21:00.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:21:00.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:21:00.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:21:01.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:21:01.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 11563.806ms +2017-07-22 14:21:02.033 +05:30 [Information] Request finished in 11671.9725ms 200 application/json; charset=utf-8 +2017-07-22 14:21:02.034 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" completed keep alive response. +2017-07-22 14:21:22.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:21:22.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:21:22.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:21:22.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:21:22.441 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 30597.6022ms +2017-07-22 14:21:22.444 +05:30 [Information] Request finished in 31225.7578ms 200 application/json; charset=utf-8 +2017-07-22 14:21:22.445 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" completed keep alive response. +2017-07-22 14:22:21.761 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" received FIN. +2017-07-22 14:22:21.762 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" disconnecting. +2017-07-22 14:22:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" sending FIN. +2017-07-22 14:22:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" sent FIN with status "0". +2017-07-22 14:22:21.763 +05:30 [Debug] Connection id ""0HL6GRK1B624T"" stopped. +2017-07-22 14:22:21.765 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" received FIN. +2017-07-22 14:22:21.767 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" disconnecting. +2017-07-22 14:22:21.768 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" sending FIN. +2017-07-22 14:22:21.769 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" sent FIN with status "0". +2017-07-22 14:22:21.771 +05:30 [Debug] Connection id ""0HL6GRK1B624U"" stopped. +2017-07-22 14:23:46.760 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" received FIN. +2017-07-22 14:23:46.762 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" disconnecting. +2017-07-22 14:23:46.763 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" sending FIN. +2017-07-22 14:23:46.764 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" sent FIN with status "0". +2017-07-22 14:23:46.764 +05:30 [Debug] Connection id ""0HL6GRK1B624V"" stopped. +2017-07-22 14:23:46.762 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" started. +2017-07-22 14:23:46.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:23:46.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:23:46.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:23:49.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:23:49.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:23:49.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:23:49.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:23:49.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.0448ms +2017-07-22 14:23:49.841 +05:30 [Information] Request finished in 3073.3046ms 200 application/json; charset=utf-8 +2017-07-22 14:23:49.841 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" completed keep alive response. +2017-07-22 14:23:49.862 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:23:49.864 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:23:49.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:23:53.100 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:23:53.105 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:23:53.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:23:53.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:23:53.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3237.6666ms +2017-07-22 14:23:53.113 +05:30 [Information] Request finished in 3258.4526ms 200 application/json; charset=utf-8 +2017-07-22 14:23:53.114 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" completed keep alive response. +2017-07-22 14:23:53.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:23:53.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:23:53.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:23:56.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:23:56.164 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:23:56.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:23:56.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:23:56.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3038.7631ms +2017-07-22 14:23:56.170 +05:30 [Information] Request finished in 3049.2377ms 200 application/json; charset=utf-8 +2017-07-22 14:23:56.171 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" completed keep alive response. +2017-07-22 14:23:57.675 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" started. +2017-07-22 14:23:57.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:23:57.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:23:57.685 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:23:57.700 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:23:57.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:23:57.703 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:23:58.092 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" started. +2017-07-22 14:23:58.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=5 +2017-07-22 14:23:58.094 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 14:23:58.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 14:24:00.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:24:00.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:24:00.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:24:00.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:24:00.916 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:24:00.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:24:01.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3256.9525ms +2017-07-22 14:24:01.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:24:01.057 +05:30 [Information] Request finished in 3378.4037ms 200 application/json; charset=utf-8 +2017-07-22 14:24:01.057 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" completed keep alive response. +2017-07-22 14:24:01.057 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:24:01.059 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:24:01.061 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:24:01.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3364.5248ms +2017-07-22 14:24:01.089 +05:30 [Information] Request finished in 3404.7741ms 200 application/json; charset=utf-8 +2017-07-22 14:24:01.089 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" completed keep alive response. +2017-07-22 14:24:01.177 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "5"]) - ModelState is Valid +2017-07-22 14:24:05.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:24:05.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:24:05.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:24:05.716 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:24:05.721 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 7622.7115ms +2017-07-22 14:24:05.726 +05:30 [Information] Request finished in 7630.7147ms 200 application/json; charset=utf-8 +2017-07-22 14:24:05.728 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:02.500 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" received FIN. +2017-07-22 14:25:02.501 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" disconnecting. +2017-07-22 14:25:02.501 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" received FIN. +2017-07-22 14:25:02.501 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" started. +2017-07-22 14:25:02.503 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" sending FIN. +2017-07-22 14:25:02.503 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" sent FIN with status "0". +2017-07-22 14:25:02.504 +05:30 [Debug] Connection id ""0HL6GRK1B6251"" stopped. +2017-07-22 14:25:02.503 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" disconnecting. +2017-07-22 14:25:02.506 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" sending FIN. +2017-07-22 14:25:02.506 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" sent FIN with status "0". +2017-07-22 14:25:02.506 +05:30 [Debug] Connection id ""0HL6GRK1B6250"" stopped. +2017-07-22 14:25:02.508 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:25:02.509 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:25:02.509 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:25:02.511 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:25:02.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:25:02.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:25:03.207 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" started. +2017-07-22 14:25:03.210 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:25:03.211 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:25:03.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:25:05.375 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:05.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:05.379 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:05.380 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:05.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2166.7327ms +2017-07-22 14:25:05.385 +05:30 [Information] Request finished in 2175.789ms 200 application/json; charset=utf-8 +2017-07-22 14:25:05.387 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:05.395 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:25:05.397 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:25:05.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:25:05.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:05.591 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:05.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:05.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:05.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:05.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:05.848 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3319.3012ms +2017-07-22 14:25:05.855 +05:30 [Information] Request finished in 3347.3511ms 200 application/json; charset=utf-8 +2017-07-22 14:25:05.856 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:06.719 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1&userId=1&profileId=187231345114052 0 +2017-07-22 14:25:06.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-07-22 14:25:06.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-07-22 14:25:06.842 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:06.843 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:06.843 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:06.845 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:06.847 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 4334.4925ms +2017-07-22 14:25:06.849 +05:30 [Information] Request finished in 4344.7565ms 200 application/json; charset=utf-8 +2017-07-22 14:25:06.850 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:08.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:25:08.610 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:08.610 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:08.612 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:08.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3213.365ms +2017-07-22 14:25:08.616 +05:30 [Information] Request finished in 3222.6474ms 200 application/json; charset=utf-8 +2017-07-22 14:25:08.616 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:09.788 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1", "1", "187231345114052"]) - ModelState is Valid +2017-07-22 14:25:10.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:10.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:10.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-22 14:25:10.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:10.546 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 3804.2055ms +2017-07-22 14:25:10.551 +05:30 [Information] Request finished in 3844.5479ms 200 text/plain; charset=utf-8 +2017-07-22 14:25:10.552 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:10.589 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:25:10.590 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:25:10.590 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:25:13.657 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:13.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:13.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:13.666 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:13.671 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3077.4062ms +2017-07-22 14:25:13.673 +05:30 [Information] Request finished in 3085.4633ms 200 application/json; charset=utf-8 +2017-07-22 14:25:13.674 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:13.688 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:25:13.689 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:25:13.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:25:16.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:16.770 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:16.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:16.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:16.775 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3082.2745ms +2017-07-22 14:25:16.777 +05:30 [Information] Request finished in 3089.1855ms 200 application/json; charset=utf-8 +2017-07-22 14:25:16.778 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:16.786 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:25:16.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:25:16.787 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:25:18.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:18.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:18.881 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:18.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:18.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2095.2135ms +2017-07-22 14:25:18.904 +05:30 [Information] Request finished in 2116.6352ms 200 application/json; charset=utf-8 +2017-07-22 14:25:18.905 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:20.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:25:20.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:25:20.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:25:20.177 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:25:20.177 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:25:20.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:25:20.616 +05:30 [Debug] Connection id ""0HL6GRK1B6255"" started. +2017-07-22 14:25:20.622 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:25:20.624 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:25:20.625 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:25:20.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:25:20.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:25:20.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:25:21.283 +05:30 [Debug] Connection id ""0HL6GRK1B6256"" started. +2017-07-22 14:25:21.284 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:25:21.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:25:21.285 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:25:23.317 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:23.423 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:23.424 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:23.424 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:23.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:23.429 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:23.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3252.9449ms +2017-07-22 14:25:23.436 +05:30 [Information] Request finished in 3260.9802ms 200 application/json; charset=utf-8 +2017-07-22 14:25:23.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:23.436 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:23.438 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:23.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:23.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:23.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3261.2014ms +2017-07-22 14:25:23.448 +05:30 [Information] Request finished in 3272.2514ms 200 application/json; charset=utf-8 +2017-07-22 14:25:23.449 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:23.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:23.803 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:23.934 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:23.935 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:23.935 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:23.936 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:23.939 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3307.4907ms +2017-07-22 14:25:23.942 +05:30 [Information] Request finished in 3322.8998ms 200 application/json; charset=utf-8 +2017-07-22 14:25:23.942 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:24.452 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:24.454 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:24.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:24.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:24.456 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:24.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:24.457 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:24.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:24.462 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3829.3659ms +2017-07-22 14:25:24.463 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3174.3724ms +2017-07-22 14:25:24.466 +05:30 [Information] Request finished in 3842.2563ms 200 application/json; charset=utf-8 +2017-07-22 14:25:24.467 +05:30 [Information] Request finished in 3183.2099ms 200 application/json; charset=utf-8 +2017-07-22 14:25:24.467 +05:30 [Debug] Connection id ""0HL6GRK1B6255"" completed keep alive response. +2017-07-22 14:25:24.468 +05:30 [Debug] Connection id ""0HL6GRK1B6256"" completed keep alive response. +2017-07-22 14:25:24.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:25:24.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:25:24.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:25:27.605 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:25:27.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:27.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:27.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:27.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3144.1815ms +2017-07-22 14:25:27.665 +05:30 [Information] Request finished in 3151.603ms 200 application/json; charset=utf-8 +2017-07-22 14:25:27.665 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:30.964 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-22 14:25:30.965 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-22 14:25:30.966 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-22 14:25:32.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:32.223 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:32.224 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:32.225 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:32.227 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 1259.2001ms +2017-07-22 14:25:32.230 +05:30 [Information] Request finished in 1268.9063ms 200 application/json; charset=utf-8 +2017-07-22 14:25:32.231 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:32.235 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-22 14:25:32.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-22 14:25:32.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-22 14:25:35.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:35.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:35.427 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:35.444 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:35.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3205.7621ms +2017-07-22 14:25:35.450 +05:30 [Information] Request finished in 3213.1829ms 200 application/json; charset=utf-8 +2017-07-22 14:25:35.451 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:36.497 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 205 +2017-07-22 14:25:36.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-07-22 14:25:36.498 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-07-22 14:25:39.539 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBADBpgrTJrXf4vhNaLmboTCK5v2xihqP7idGgEMw3PRpQJgz6IRJMEXeNoFTpNK3V7toShY1UWV5nFI0IW9O986RgYa4kcSR2K5HHIvXyN2nGa54jSZBahJOF1fFttIwiinGDuZAEpZCQuUHcXBEsOo6wTKlYwZDZD", "1", "1"]) - ModelState is Valid +2017-07-22 14:25:40.080 +05:30 [Error] {"id":"187231345114052","birthday":"12/17/1993","cover":{"id":"118538431983344","offset_x":40,"offset_y":0,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/15823608_118538431983344_5000271662632656929_n.jpg?oh=008b52e566592c3e28a81b48611e4c08&oe=59EFA6C6"},"email":"soumyapanda@globussoft.in","gender":"male","name":"Soumya Panda"} +2017-07-22 14:25:42.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:42.549 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:42.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:42.563 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 6059.225ms +2017-07-22 14:25:42.567 +05:30 [Information] Request finished in 6070.4597ms 200 application/json; charset=utf-8 +2017-07-22 14:25:42.568 +05:30 [Debug] Connection id ""0HL6GRK1B6255"" completed keep alive response. +2017-07-22 14:25:45.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:25:45.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:25:45.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:25:48.859 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:48.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:48.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:48.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:48.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3056.834ms +2017-07-22 14:25:48.911 +05:30 [Information] Request finished in 3104.7476ms 200 application/json; charset=utf-8 +2017-07-22 14:25:48.913 +05:30 [Debug] Connection id ""0HL6GRK1B6256"" completed keep alive response. +2017-07-22 14:25:49.039 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-22 14:25:49.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-22 14:25:49.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-22 14:25:50.323 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:50.329 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:50.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:50.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:50.333 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 1289.682ms +2017-07-22 14:25:50.335 +05:30 [Information] Request finished in 1364.1606ms 200 application/json; charset=utf-8 +2017-07-22 14:25:50.336 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:50.348 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-22 14:25:50.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-22 14:25:50.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-22 14:25:52.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:52.716 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:52.717 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:52.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:52.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2365.363ms +2017-07-22 14:25:52.724 +05:30 [Information] Request finished in 2381.0476ms 200 application/json; charset=utf-8 +2017-07-22 14:25:52.725 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:54.420 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-22 14:25:54.421 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-22 14:25:54.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-22 14:25:54.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-22 14:25:54.471 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-22 14:25:54.477 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-22 14:25:55.667 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Twitter/TwitterRecentFollower?groupId=1 +2017-07-22 14:25:55.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Twitter/TwitterRecentFollower"'. +2017-07-22 14:25:55.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" +2017-07-22 14:25:55.928 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-22 14:25:55.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-22 14:25:55.933 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-22 14:25:56.095 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-22 14:25:56.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-22 14:25:56.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-22 14:25:57.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:57.432 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:57.434 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:57.434 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:57.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:57.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2958.9425ms +2017-07-22 14:25:57.530 +05:30 [Information] Request finished in 3128.7803ms 200 application/json; charset=utf-8 +2017-07-22 14:25:57.530 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:25:58.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:58.374 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:58.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:58.385 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:58.386 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:58.388 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:58.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3967.0708ms +2017-07-22 14:25:58.395 +05:30 [Information] Request finished in 4062.731ms 200 application/json; charset=utf-8 +2017-07-22 14:25:58.396 +05:30 [Debug] Connection id ""0HL6GRK1B6255"" completed keep alive response. +2017-07-22 14:25:59.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:59.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:59.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:59.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:59.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.TwitterController.TwitterRecentFollower (Api.Socioboard)" in 3232.5192ms +2017-07-22 14:25:59.054 +05:30 [Information] Request finished in 3926.2401ms 200 application/json; charset=utf-8 +2017-07-22 14:25:59.055 +05:30 [Debug] Connection id ""0HL6GRK1B6253"" completed keep alive response. +2017-07-22 14:25:59.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-22 14:25:59.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:59.365 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:25:59.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:59.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:59.371 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3435.2746ms +2017-07-22 14:25:59.373 +05:30 [Information] Request finished in 4237.8752ms 200 application/json; charset=utf-8 +2017-07-22 14:25:59.374 +05:30 [Debug] Connection id ""0HL6GRK1B6256"" completed keep alive response. +2017-07-22 14:25:59.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-22 14:25:59.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:25:59.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:25:59.437 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:25:59.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3341.5428ms +2017-07-22 14:25:59.456 +05:30 [Information] Request finished in 3517.314ms 200 application/json; charset=utf-8 +2017-07-22 14:25:59.456 +05:30 [Debug] Connection id ""0HL6GRK1B6254"" completed keep alive response. +2017-07-22 14:25:59.494 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-22 14:25:59.495 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-22 14:25:59.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-22 14:26:02.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-22 14:26:02.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:26:02.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:26:02.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:26:02.744 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3239.7099ms +2017-07-22 14:26:02.746 +05:30 [Information] Request finished in 3251.9316ms 200 application/json; charset=utf-8 +2017-07-22 14:26:02.747 +05:30 [Debug] Connection id ""0HL6GRK1B6252"" completed keep alive response. +2017-07-22 14:26:08.760 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetTopFeeds?profileId=187231345114052&userId=1&skip=0&count=5 +2017-07-22 14:26:08.761 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetTopFeeds"'. +2017-07-22 14:26:08.764 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" +2017-07-22 14:26:11.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" with arguments (["187231345114052", "1", "0", "5"]) - ModelState is Valid +2017-07-22 14:27:48.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-22 14:27:48.668 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-22 14:27:48.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-22 14:27:48.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-22 14:27:48.801 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetTopFeeds (Api.Socioboard)" in 100020.9508ms +2017-07-22 14:27:56.402 +05:30 [Information] Request finished in 106593.9505ms 200 application/json; charset=utf-8 +2017-07-22 14:27:56.402 +05:30 [Debug] Connection id ""0HL6GRK1B6255"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170725.txt b/src/Api.Socioboard/wwwroot/log/log-20170725.txt new file mode 100644 index 000000000..9f5d0d3fc --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170725.txt @@ -0,0 +1,1773 @@ +2017-07-25 11:50:23.341 +05:30 [Debug] Hosting starting +2017-07-25 11:50:23.613 +05:30 [Debug] Hosting started +2017-07-25 11:50:23.781 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" started. +2017-07-25 11:50:23.781 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" started. +2017-07-25 11:50:23.992 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 11:50:24.071 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 11:50:24.184 +05:30 [Information] Request finished in 143.2312ms 200 +2017-07-25 11:50:24.338 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" completed keep alive response. +2017-07-25 11:50:25.252 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 11:50:25.383 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d95bc8f6-c49f-4934-8e09-c934e5457858"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 11:50:25.748 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 11:50:25.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 11:50:25.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 11:50:25.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:50:25.930 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:50:25.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:50:26.304 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 546.3712ms +2017-07-25 11:50:26.386 +05:30 [Information] Request finished in 2458.3099ms 200 application/json; charset=utf-8 +2017-07-25 11:50:26.388 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" completed keep alive response. +2017-07-25 11:50:26.415 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-25 11:50:26.420 +05:30 [Debug] Request did not match any routes. +2017-07-25 11:50:26.442 +05:30 [Debug] The request path "" does not match the path filter +2017-07-25 11:50:26.446 +05:30 [Information] Request finished in 29.9792ms 404 +2017-07-25 11:50:26.447 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" completed keep alive response. +2017-07-25 11:50:43.432 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 11:50:43.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 11:50:43.437 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 11:50:47.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 11:50:48.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-25 11:50:48.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-25 11:50:48.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-25 11:50:51.444 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 11:50:56.764 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:50:56.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:50:57.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:50:57.171 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:50:57.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:50:57.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:50:57.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 13841.6731ms +2017-07-25 11:50:57.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 9141.1319ms +2017-07-25 11:50:57.480 +05:30 [Information] Request finished in 9244.6979ms 200 application/json; charset=utf-8 +2017-07-25 11:50:57.485 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" completed keep alive response. +2017-07-25 11:50:57.485 +05:30 [Information] Request finished in 14038.963ms 200 application/json; charset=utf-8 +2017-07-25 11:50:57.549 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" completed keep alive response. +2017-07-25 11:50:58.022 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 11:50:58.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 11:50:58.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 11:50:58.215 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 11:50:58.217 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 11:50:58.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 11:51:00.367 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:00.679 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:00.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:00.682 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:00.746 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2515.8709ms +2017-07-25 11:51:00.754 +05:30 [Information] Request finished in 2536.8389ms 200 application/json; charset=utf-8 +2017-07-25 11:51:00.757 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" completed keep alive response. +2017-07-25 11:51:01.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 11:51:01.226 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:01.227 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:01.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:01.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3200.2909ms +2017-07-25 11:51:01.240 +05:30 [Information] Request finished in 3217.4874ms 200 application/json; charset=utf-8 +2017-07-25 11:51:01.241 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" completed keep alive response. +2017-07-25 11:51:06.223 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 11:51:06.227 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 11:51:06.236 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 11:51:06.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 11:51:06.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 11:51:06.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 11:51:06.930 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" started. +2017-07-25 11:51:06.962 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" started. +2017-07-25 11:51:06.985 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 11:51:06.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 11:51:06.996 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 11:51:07.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 11:51:07.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 11:51:07.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 11:51:07.709 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" started. +2017-07-25 11:51:08.316 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 11:51:08.317 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 11:51:08.322 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 11:51:10.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:10.342 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:10.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:10.344 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:10.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4108.2549ms +2017-07-25 11:51:10.349 +05:30 [Information] Request finished in 4137.1571ms 200 application/json; charset=utf-8 +2017-07-25 11:51:10.350 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" completed keep alive response. +2017-07-25 11:51:11.254 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" started. +2017-07-25 11:51:11.259 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 11:51:11.260 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 11:51:11.261 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 11:51:11.260 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 11:51:11.263 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 11:51:11.266 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 11:51:11.748 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" started. +2017-07-25 11:51:12.427 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 11:51:12.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 11:51:12.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 11:51:12.436 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" started. +2017-07-25 11:51:12.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:12.546 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 11:51:12.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:12.555 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:12.640 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:12.640 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:12.642 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:12.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4320.1933ms +2017-07-25 11:51:12.650 +05:30 [Information] Request finished in 4355.1644ms 200 application/json; charset=utf-8 +2017-07-25 11:51:12.652 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" completed keep alive response. +2017-07-25 11:51:12.667 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 11:51:12.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 11:51:12.669 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 11:51:12.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:12.802 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:12.803 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:12.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:12.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:12.971 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:12.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:12.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5945.8606ms +2017-07-25 11:51:12.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:12.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5984.7743ms +2017-07-25 11:51:12.985 +05:30 [Information] Request finished in 5971.3711ms 200 application/json; charset=utf-8 +2017-07-25 11:51:12.987 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" completed keep alive response. +2017-07-25 11:51:12.987 +05:30 [Information] Request finished in 6024.1362ms 200 application/json; charset=utf-8 +2017-07-25 11:51:12.992 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" completed keep alive response. +2017-07-25 11:51:13.137 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:13.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:13.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:13.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:13.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:13.151 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1886.7119ms +2017-07-25 11:51:13.159 +05:30 [Information] Request finished in 1897.3579ms 200 application/json; charset=utf-8 +2017-07-25 11:51:13.161 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" completed keep alive response. +2017-07-25 11:51:13.582 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:13.584 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:13.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:13.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:13.703 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" received FIN. +2017-07-25 11:51:13.722 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" disconnecting. +2017-07-25 11:51:13.731 +05:30 [Information] Connection id ""0HL6J4KTTP9NA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-25 11:51:13.741 +05:30 [Debug] Connection id ""0HL6J4KTTP9NA"" stopped. +2017-07-25 11:51:13.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7005.4165ms +2017-07-25 11:51:13.753 +05:30 [Information] Request finished in 7020.3018ms 200 application/json; charset=utf-8 +2017-07-25 11:51:14.677 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:14.888 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:14.888 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:14.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:14.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:14.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2461.2793ms +2017-07-25 11:51:14.894 +05:30 [Information] Request finished in 2587.1561ms 200 application/json; charset=utf-8 +2017-07-25 11:51:14.895 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" completed keep alive response. +2017-07-25 11:51:15.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 11:51:15.186 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:15.187 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 11:51:15.187 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:15.189 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:15.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3923.1992ms +2017-07-25 11:51:15.194 +05:30 [Information] Request finished in 3936.1243ms 200 application/json; charset=utf-8 +2017-07-25 11:51:15.195 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" completed keep alive response. +2017-07-25 11:51:15.833 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 11:51:16.101 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 11:51:16.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 11:51:16.107 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 11:51:16.109 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3436.647ms +2017-07-25 11:51:16.111 +05:30 [Information] Request finished in 3453.7373ms 200 application/json; charset=utf-8 +2017-07-25 11:51:16.112 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" completed keep alive response. +2017-07-25 11:52:23.756 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" received FIN. +2017-07-25 11:52:23.757 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" received FIN. +2017-07-25 11:52:23.757 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" disconnecting. +2017-07-25 11:52:23.757 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" received FIN. +2017-07-25 11:52:23.765 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" received FIN. +2017-07-25 11:52:23.766 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" received FIN. +2017-07-25 11:52:23.766 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" received FIN. +2017-07-25 11:52:23.776 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" disconnecting. +2017-07-25 11:52:23.776 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" received FIN. +2017-07-25 11:52:23.777 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" sending FIN. +2017-07-25 11:52:23.779 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" sending FIN. +2017-07-25 11:52:23.783 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" sent FIN with status "0". +2017-07-25 11:52:23.784 +05:30 [Debug] Connection id ""0HL6J4KTTP9N9"" stopped. +2017-07-25 11:52:23.784 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" sent FIN with status "0". +2017-07-25 11:52:23.786 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" disconnecting. +2017-07-25 11:52:23.786 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" disconnecting. +2017-07-25 11:52:23.786 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" disconnecting. +2017-07-25 11:52:23.790 +05:30 [Debug] Connection id ""0HL6J4KTTP9NC"" stopped. +2017-07-25 11:52:23.794 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" sending FIN. +2017-07-25 11:52:23.799 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" disconnecting. +2017-07-25 11:52:23.798 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" disconnecting. +2017-07-25 11:52:23.804 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" sending FIN. +2017-07-25 11:52:23.805 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" sending FIN. +2017-07-25 11:52:23.812 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" sending FIN. +2017-07-25 11:52:23.812 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" sent FIN with status "0". +2017-07-25 11:52:23.810 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" sending FIN. +2017-07-25 11:52:23.814 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" sent FIN with status "0". +2017-07-25 11:52:23.813 +05:30 [Debug] Connection id ""0HL6J4KTTP9NF"" stopped. +2017-07-25 11:52:23.814 +05:30 [Debug] Connection id ""0HL6J4KTTP9NG"" stopped. +2017-07-25 11:52:23.815 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" sent FIN with status "0". +2017-07-25 11:52:23.815 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" sent FIN with status "0". +2017-07-25 11:52:23.816 +05:30 [Debug] Connection id ""0HL6J4KTTP9NE"" stopped. +2017-07-25 11:52:23.816 +05:30 [Debug] Connection id ""0HL6J4KTTP9NB"" stopped. +2017-07-25 11:52:23.817 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" sent FIN with status "0". +2017-07-25 11:52:23.818 +05:30 [Debug] Connection id ""0HL6J4KTTP9ND"" stopped. +2017-07-25 12:34:10.710 +05:30 [Debug] Hosting starting +2017-07-25 12:34:11.025 +05:30 [Debug] Hosting started +2017-07-25 12:34:11.214 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" started. +2017-07-25 12:34:11.214 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" started. +2017-07-25 12:34:11.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 12:34:11.573 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 12:34:11.765 +05:30 [Information] Request finished in 204.8834ms 200 +2017-07-25 12:34:11.870 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:34:12.930 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 12:34:13.010 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1ea43dac-7a9b-4e52-a274-6d1f243e6c6c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 12:34:13.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 12:34:13.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 12:34:13.352 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 12:34:13.416 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:34:13.423 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:13.426 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:13.662 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 404.7205ms +2017-07-25 12:34:13.795 +05:30 [Information] Request finished in 2378.3041ms 200 application/json; charset=utf-8 +2017-07-25 12:34:13.798 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" completed keep alive response. +2017-07-25 12:34:25.190 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:34:25.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:34:25.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:34:28.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:34:33.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:33.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:33.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:33.375 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8179.593ms +2017-07-25 12:34:33.378 +05:30 [Information] Request finished in 8197.266ms 200 application/json; charset=utf-8 +2017-07-25 12:34:33.379 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:34:33.715 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 12:34:33.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 12:34:33.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 12:34:36.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 12:34:36.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:36.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:36.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:36.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3233.3083ms +2017-07-25 12:34:36.961 +05:30 [Information] Request finished in 3245.3038ms 200 application/json; charset=utf-8 +2017-07-25 12:34:36.961 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" completed keep alive response. +2017-07-25 12:34:37.090 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:34:37.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:34:37.095 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:34:40.141 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:34:40.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:40.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:40.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:40.148 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3051.5335ms +2017-07-25 12:34:40.151 +05:30 [Information] Request finished in 3059.6535ms 200 application/json; charset=utf-8 +2017-07-25 12:34:40.152 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:34:40.179 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 12:34:40.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 12:34:40.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 12:34:42.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:34:42.316 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:42.317 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:42.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:42.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2135.2668ms +2017-07-25 12:34:42.324 +05:30 [Information] Request finished in 2144.6104ms 200 application/json; charset=utf-8 +2017-07-25 12:34:42.324 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" completed keep alive response. +2017-07-25 12:34:42.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 12:34:42.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 12:34:42.340 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 12:34:45.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:34:45.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:45.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:45.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:45.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3326.7719ms +2017-07-25 12:34:45.685 +05:30 [Information] Request finished in 3350.5109ms 200 application/json; charset=utf-8 +2017-07-25 12:34:45.687 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:34:48.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 12:34:48.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 12:34:48.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 12:34:48.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 12:34:48.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 12:34:48.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 12:34:49.344 +05:30 [Debug] Connection id ""0HL6J5DCUTMAG"" started. +2017-07-25 12:34:49.347 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 12:34:49.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 12:34:49.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 12:34:50.207 +05:30 [Debug] Connection id ""0HL6J5DCUTMAH"" started. +2017-07-25 12:34:50.208 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:34:50.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:34:50.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:34:51.967 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:34:51.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:34:52.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:52.185 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:34:52.188 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:52.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:52.207 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3907.4408ms +2017-07-25 12:34:52.217 +05:30 [Information] Request finished in 3919.036ms 200 application/json; charset=utf-8 +2017-07-25 12:34:52.218 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:34:52.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:52.260 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:34:52.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:52.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:52.267 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3966.6498ms +2017-07-25 12:34:52.270 +05:30 [Information] Request finished in 3977.0618ms 200 application/json; charset=utf-8 +2017-07-25 12:34:52.271 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" completed keep alive response. +2017-07-25 12:34:52.956 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:34:53.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:53.211 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:34:53.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:53.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:53.251 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:34:53.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:53.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:53.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:53.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.9911ms +2017-07-25 12:34:53.263 +05:30 [Information] Request finished in 3054.3648ms 200 application/json; charset=utf-8 +2017-07-25 12:34:53.263 +05:30 [Debug] Connection id ""0HL6J5DCUTMAH"" completed keep alive response. +2017-07-25 12:34:53.288 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 12:34:53.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 12:34:53.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 12:34:53.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3980.8515ms +2017-07-25 12:34:53.334 +05:30 [Information] Request finished in 3988.1554ms 200 application/json; charset=utf-8 +2017-07-25 12:34:53.334 +05:30 [Debug] Connection id ""0HL6J5DCUTMAG"" completed keep alive response. +2017-07-25 12:34:56.358 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 12:34:56.499 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:34:56.499 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:34:56.501 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:34:56.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3202.4756ms +2017-07-25 12:34:56.506 +05:30 [Information] Request finished in 3217.8406ms 200 application/json; charset=utf-8 +2017-07-25 12:34:56.506 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" completed keep alive response. +2017-07-25 12:35:19.135 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-25 12:35:19.136 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-25 12:35:19.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-25 12:35:22.192 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:35:22.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:35:22.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:35:22.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:35:22.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3119.524ms +2017-07-25 12:35:22.263 +05:30 [Information] Request finished in 3129.0255ms 200 application/json; charset=utf-8 +2017-07-25 12:35:22.264 +05:30 [Debug] Connection id ""0HL6J5DCUTMAF"" completed keep alive response. +2017-07-25 12:35:22.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-25 12:35:22.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 12:35:22.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 12:35:24.394 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:35:24.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:35:24.455 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:35:24.456 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:35:24.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 2174.0341ms +2017-07-25 12:35:24.461 +05:30 [Information] Request finished in 2191.8689ms 200 application/json; charset=utf-8 +2017-07-25 12:35:24.461 +05:30 [Debug] Connection id ""0HL6J5DCUTMAH"" completed keep alive response. +2017-07-25 12:35:29.239 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/LinkedIn/AddLinkedInAccount application/x-www-form-urlencoded 139 +2017-07-25 12:35:29.239 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/AddLinkedInAccount"'. +2017-07-25 12:35:29.241 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" +2017-07-25 12:35:31.348 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" with arguments (["AQSE7UtMfX_tw_XO9QWte1lmT_wZNXrKDcDIJZQUYJQceLrjzkkusKvzxMSjdd_oM_koYg8BwHn3HrkPGsgHgKlflV3voECaKBtn2YZNg-Fj1Fj7pgw", "1", "1"]) - ModelState is Valid +2017-07-25 12:36:11.578 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" received FIN. +2017-07-25 12:36:11.580 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" disconnecting. +2017-07-25 12:36:11.581 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" sending FIN. +2017-07-25 12:36:12.776 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" sent FIN with status "0". +2017-07-25 12:36:13.925 +05:30 [Debug] Connection id ""0HL6J5DCUTMAE"" stopped. +2017-07-25 12:39:46.401 +05:30 [Debug] Hosting starting +2017-07-25 12:39:46.645 +05:30 [Debug] Hosting started +2017-07-25 12:39:46.672 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" started. +2017-07-25 12:39:46.672 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" started. +2017-07-25 12:39:46.839 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 12:39:46.840 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 12:39:46.934 +05:30 [Information] Request finished in 122.7452ms 200 +2017-07-25 12:39:46.998 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:39:47.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 12:39:47.796 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bb802e6f-ecda-4b18-a3fc-03fd33bf468e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 12:39:47.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 12:39:48.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 12:39:48.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 12:39:48.097 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:39:48.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:39:48.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:39:48.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 598.307ms +2017-07-25 12:39:48.640 +05:30 [Information] Request finished in 1850.5718ms 200 application/json; charset=utf-8 +2017-07-25 12:39:48.643 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:39:59.712 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:39:59.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:39:59.744 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:40:03.313 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:40:08.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:08.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:08.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:08.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8698.8865ms +2017-07-25 12:40:08.457 +05:30 [Information] Request finished in 8752.1515ms 200 application/json; charset=utf-8 +2017-07-25 12:40:08.458 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:40:08.725 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 12:40:08.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 12:40:08.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 12:40:09.677 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-25 12:40:09.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-25 12:40:09.679 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-25 12:40:11.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 12:40:11.894 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:11.895 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:11.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:11.945 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3214.771ms +2017-07-25 12:40:11.948 +05:30 [Information] Request finished in 3223.3949ms 200 application/json; charset=utf-8 +2017-07-25 12:40:11.949 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:40:12.756 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 12:40:15.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:15.169 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:15.172 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:15.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5492.7423ms +2017-07-25 12:40:15.178 +05:30 [Information] Request finished in 5498.8939ms 200 application/json; charset=utf-8 +2017-07-25 12:40:15.179 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:40:15.313 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:40:15.314 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:40:15.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:40:18.355 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:40:18.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:18.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:18.361 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:18.363 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3045.1221ms +2017-07-25 12:40:18.366 +05:30 [Information] Request finished in 3052.9071ms 200 application/json; charset=utf-8 +2017-07-25 12:40:18.367 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:40:18.412 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 12:40:18.413 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 12:40:18.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 12:40:21.456 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:40:21.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:21.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:21.464 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:21.468 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.7431ms +2017-07-25 12:40:21.472 +05:30 [Information] Request finished in 3058.5289ms 200 application/json; charset=utf-8 +2017-07-25 12:40:21.473 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:40:21.490 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 12:40:21.491 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 12:40:21.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 12:40:24.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:24.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:24.637 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:24.638 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:24.678 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3178.389ms +2017-07-25 12:40:24.681 +05:30 [Information] Request finished in 3197.2083ms 200 application/json; charset=utf-8 +2017-07-25 12:40:24.681 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:40:26.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 12:40:26.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 12:40:26.781 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 12:40:26.779 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 12:40:26.783 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 12:40:26.785 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 12:40:27.245 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" started. +2017-07-25 12:40:27.248 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 12:40:27.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 12:40:27.250 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 12:40:28.593 +05:30 [Debug] Connection id ""0HL6J5GGU2FSE"" started. +2017-07-25 12:40:28.594 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 12:40:28.595 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 12:40:28.595 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 12:40:29.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:29.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:29.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:29.991 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:40:29.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:29.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:29.996 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:29.997 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:40:29.997 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:29.998 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:30.001 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3214.0354ms +2017-07-25 12:40:30.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3220.0058ms +2017-07-25 12:40:30.007 +05:30 [Information] Request finished in 3233.985ms 200 application/json; charset=utf-8 +2017-07-25 12:40:30.009 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:40:30.012 +05:30 [Information] Request finished in 3239.1692ms 200 application/json; charset=utf-8 +2017-07-25 12:40:30.018 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:40:30.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:30.529 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:30.530 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 12:40:30.530 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:30.531 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:30.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3335.1459ms +2017-07-25 12:40:30.590 +05:30 [Information] Request finished in 3341.9737ms 200 application/json; charset=utf-8 +2017-07-25 12:40:30.591 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" completed keep alive response. +2017-07-25 12:40:31.620 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 12:40:31.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:31.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:31.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:31.629 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3030.9585ms +2017-07-25 12:40:31.631 +05:30 [Information] Request finished in 3035.8175ms 200 application/json; charset=utf-8 +2017-07-25 12:40:31.631 +05:30 [Debug] Connection id ""0HL6J5GGU2FSE"" completed keep alive response. +2017-07-25 12:40:31.644 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 12:40:31.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 12:40:31.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 12:40:34.715 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 12:40:34.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:34.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:34.775 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:34.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3130.5319ms +2017-07-25 12:40:34.779 +05:30 [Information] Request finished in 3136.2831ms 200 application/json; charset=utf-8 +2017-07-25 12:40:34.779 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" completed keep alive response. +2017-07-25 12:40:35.142 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-25 12:40:35.142 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-25 12:40:35.143 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-25 12:40:38.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:38.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:38.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:38.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:38.260 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3114.6298ms +2017-07-25 12:40:38.261 +05:30 [Information] Request finished in 3119.9848ms 200 application/json; charset=utf-8 +2017-07-25 12:40:38.262 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" completed keep alive response. +2017-07-25 12:40:38.268 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-25 12:40:38.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 12:40:38.273 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 12:40:41.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 12:40:41.391 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 12:40:41.391 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:40:41.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:40:41.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3117.6531ms +2017-07-25 12:40:41.397 +05:30 [Information] Request finished in 3129.1735ms 200 application/json; charset=utf-8 +2017-07-25 12:40:41.398 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" completed keep alive response. +2017-07-25 12:40:46.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/LinkedIn/AddLinkedInAccount application/x-www-form-urlencoded 139 +2017-07-25 12:40:46.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/AddLinkedInAccount"'. +2017-07-25 12:40:46.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" +2017-07-25 12:40:49.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" with arguments (["AQSGvGATOPb-G9XXs2rxRr1TF-s97UriqHbdgnunXgklYO1tBIc3RgzuA-n6Yjgy9JYb5O1nC5-RVMZsRHoyEMcd-vv2TASg1sKPoe7BJfklv-_JUU8", "1", "1"]) - ModelState is Valid +2017-07-25 12:54:15.321 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-07-25 12:54:15.327 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 12:54:15.323 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" received FIN. +2017-07-25 12:54:15.333 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" received FIN. +2017-07-25 12:54:15.334 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" received FIN. +2017-07-25 12:54:15.356 +05:30 [Debug] Connection id ""0HL6J5GGU2FSE"" received FIN. +2017-07-25 12:54:15.363 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 12:54:15.382 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" disconnecting. +2017-07-25 12:54:15.387 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" sending FIN. +2017-07-25 12:54:15.423 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" disconnecting. +2017-07-25 12:54:15.426 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" sent FIN with status "0". +2017-07-25 12:54:15.446 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" disconnecting. +2017-07-25 12:54:15.447 +05:30 [Debug] Connection id ""0HL6J5GGU2FSC"" stopped. +2017-07-25 12:54:15.452 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" sending FIN. +2017-07-25 12:54:15.453 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" sent FIN with status "0". +2017-07-25 12:54:15.454 +05:30 [Debug] Connection id ""0HL6J5GGU2FSD"" stopped. +2017-07-25 12:54:15.455 +05:30 [Information] Connection id ""0HL6J5GGU2FSE"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-25 12:54:15.446 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" in 808441.1154ms +2017-07-25 12:54:15.457 +05:30 [Debug] Connection id ""0HL6J5GGU2FSE"" disconnecting. +2017-07-25 12:54:15.460 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" sending FIN. +2017-07-25 12:54:15.469 +05:30 [Debug] Connection id ""0HL6J5GGU2FSE"" stopped. +2017-07-25 12:54:15.466 +05:30 [Information] Request finished in 808525.1615ms 400 application/json; charset=utf-8 +2017-07-25 12:54:15.471 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" sent FIN with status "0". +2017-07-25 12:54:15.472 +05:30 [Debug] Connection id ""0HL6J5GGU2FSB"" stopped. +2017-07-25 18:42:21.970 +05:30 [Debug] Hosting starting +2017-07-25 18:42:22.237 +05:30 [Debug] Hosting started +2017-07-25 18:42:22.354 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" started. +2017-07-25 18:42:22.354 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" started. +2017-07-25 18:42:22.647 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 18:42:22.647 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 18:42:22.743 +05:30 [Information] Request finished in 154.5513ms 200 +2017-07-25 18:42:22.812 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:42:23.697 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 18:42:23.811 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d87baccc-cbfb-46fa-8d54-a08e24c706f3"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 18:42:23.992 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 18:42:24.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 18:42:24.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 18:42:24.145 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:42:24.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:42:24.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:42:24.411 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 407.421ms +2017-07-25 18:42:24.490 +05:30 [Information] Request finished in 1918.657ms 200 application/json; charset=utf-8 +2017-07-25 18:42:24.494 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:42:24.512 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-25 18:42:24.516 +05:30 [Debug] Request did not match any routes. +2017-07-25 18:42:24.540 +05:30 [Debug] The request path "" does not match the path filter +2017-07-25 18:42:24.543 +05:30 [Information] Request finished in 31.462ms 404 +2017-07-25 18:42:24.544 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:42:35.857 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:42:35.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:42:35.860 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:42:39.649 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:42:42.028 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-25 18:42:42.029 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-25 18:42:42.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-25 18:42:45.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:42:53.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:42:53.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:42:53.246 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:42:53.465 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 17586.2986ms +2017-07-25 18:42:53.520 +05:30 [Information] Request finished in 17631.5287ms 200 application/json; charset=utf-8 +2017-07-25 18:42:53.529 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:42:53.742 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:42:53.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:42:53.761 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:42:53.809 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 11750.7948ms +2017-07-25 18:42:53.813 +05:30 [Information] Request finished in 11785.3838ms 200 application/json; charset=utf-8 +2017-07-25 18:42:53.814 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:42:53.899 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 18:42:53.899 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 18:42:53.901 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 18:42:54.081 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 18:42:54.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:42:54.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:42:56.224 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:00.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:43:00.872 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:00.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:00.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:00.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 7041.9455ms +2017-07-25 18:43:00.958 +05:30 [Information] Request finished in 7054.1979ms 200 application/json; charset=utf-8 +2017-07-25 18:43:00.962 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:43:05.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:05.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:05.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:05.500 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 11414.7488ms +2017-07-25 18:43:05.506 +05:30 [Information] Request finished in 11424ms 200 application/json; charset=utf-8 +2017-07-25 18:43:05.507 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:43:09.244 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 18:43:09.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 18:43:09.265 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 18:43:09.266 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:43:09.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 18:43:09.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:43:09.772 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" started. +2017-07-25 18:43:09.774 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 18:43:09.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 18:43:09.777 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 18:43:10.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:10.565 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" started. +2017-07-25 18:43:10.591 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 18:43:10.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 18:43:10.593 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 18:43:10.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:10.656 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:10.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:10.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:10.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1390.1338ms +2017-07-25 18:43:10.662 +05:30 [Information] Request finished in 1418.454ms 200 application/json; charset=utf-8 +2017-07-25 18:43:10.663 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:43:12.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:12.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:12.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:12.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:12.404 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:12.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3145.0693ms +2017-07-25 18:43:12.420 +05:30 [Information] Request finished in 3175.6597ms 200 application/json; charset=utf-8 +2017-07-25 18:43:12.421 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:43:12.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 18:43:12.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:12.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:12.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:12.837 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2241.8925ms +2017-07-25 18:43:12.841 +05:30 [Information] Request finished in 2271.6877ms 200 application/json; charset=utf-8 +2017-07-25 18:43:12.843 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:43:12.884 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:13.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:13.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:13.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:13.172 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:13.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3490.1577ms +2017-07-25 18:43:13.273 +05:30 [Information] Request finished in 3497.2342ms 200 application/json; charset=utf-8 +2017-07-25 18:43:13.274 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" completed keep alive response. +2017-07-25 18:43:29.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/getProfilesAvailableToConnect?groupId=1&userId=1 +2017-07-25 18:43:29.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/getProfilesAvailableToConnect"'. +2017-07-25 18:43:29.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" +2017-07-25 18:43:29.213 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1&userId=1 +2017-07-25 18:43:29.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-25 18:43:29.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-07-25 18:43:29.238 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-07-25 18:43:29.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 18:43:29.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 18:43:31.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:31.529 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:31.529 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:31.530 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:31.531 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:31.535 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 2281.8133ms +2017-07-25 18:43:31.539 +05:30 [Information] Request finished in 2332.9929ms 200 application/json; charset=utf-8 +2017-07-25 18:43:31.540 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:43:32.351 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-25 18:43:32.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:43:32.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:32.440 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:32.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:32.441 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:32.471 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3203.0662ms +2017-07-25 18:43:32.474 +05:30 [Information] Request finished in 3267.801ms 200 application/json; charset=utf-8 +2017-07-25 18:43:32.474 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:43:32.592 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:32.593 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:32.594 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:32.595 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:32.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" in 3384.9774ms +2017-07-25 18:43:32.603 +05:30 [Information] Request finished in 3405.7209ms 200 application/json; charset=utf-8 +2017-07-25 18:43:32.603 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:43:48.301 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Groups/CreateGroup?GroupName=SocioboardTest&AdminId=1 0 +2017-07-25 18:43:48.302 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/CreateGroup"'. +2017-07-25 18:43:48.304 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.CreateGroup (Api.Socioboard)" +2017-07-25 18:43:51.389 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.CreateGroup (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.Groups"]) - ModelState is Valid +2017-07-25 18:43:51.586 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.CreateGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:51.587 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:43:51.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-25 18:43:51.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:51.595 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.CreateGroup (Api.Socioboard)" in 3285.3521ms +2017-07-25 18:43:51.611 +05:30 [Information] Request finished in 3309.5085ms 200 text/plain; charset=utf-8 +2017-07-25 18:43:51.614 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" completed keep alive response. +2017-07-25 18:43:51.713 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:43:51.714 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:43:51.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:43:54.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:43:54.772 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:43:54.772 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:43:54.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:43:54.777 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3057.252ms +2017-07-25 18:43:54.781 +05:30 [Information] Request finished in 3074.4439ms 200 application/json; charset=utf-8 +2017-07-25 18:43:54.782 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:43:57.807 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 18:43:57.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 18:43:57.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 18:44:00.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:44:00.876 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:00.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:00.877 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:00.880 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3067.808ms +2017-07-25 18:44:00.882 +05:30 [Information] Request finished in 3076.3607ms 200 application/json; charset=utf-8 +2017-07-25 18:44:00.882 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:44:00.891 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 18:44:00.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:44:00.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:44:03.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:31.731 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:31.731 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:31.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:31.796 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 30879.7476ms +2017-07-25 18:44:31.815 +05:30 [Information] Request finished in 30912.4548ms 200 application/json; charset=utf-8 +2017-07-25 18:44:31.816 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:44:33.397 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 18:44:33.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:44:33.399 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:44:33.442 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 18:44:33.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 18:44:33.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 18:44:33.718 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" started. +2017-07-25 18:44:33.726 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-25 18:44:33.727 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 18:44:33.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 18:44:33.733 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=1&userId=1 +2017-07-25 18:44:33.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-07-25 18:44:33.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-07-25 18:44:33.867 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/getProfilesAvailableToConnect?groupId=1&userId=1 +2017-07-25 18:44:33.867 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/getProfilesAvailableToConnect"'. +2017-07-25 18:44:33.868 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" +2017-07-25 18:44:36.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:36.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:36.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:36.706 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:36.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:36.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:36.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3309.3715ms +2017-07-25 18:44:36.713 +05:30 [Information] Request finished in 3322.3118ms 200 application/json; charset=utf-8 +2017-07-25 18:44:36.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:36.714 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:44:36.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:36.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:36.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:36.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3275.7727ms +2017-07-25 18:44:36.722 +05:30 [Information] Request finished in 3325.5039ms 200 application/json; charset=utf-8 +2017-07-25 18:44:36.723 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" completed keep alive response. +2017-07-25 18:44:36.745 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 18:44:36.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:44:36.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:44:37.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:37.737 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:37.738 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:37.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:37.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:37.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:37.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-25 18:44:37.830 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 4035.3385ms +2017-07-25 18:44:37.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:37.863 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:37.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:37.885 +05:30 [Information] Request finished in 4143.9933ms 200 application/json; charset=utf-8 +2017-07-25 18:44:37.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:37.904 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:44:37.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 4177.1696ms +2017-07-25 18:44:38.012 +05:30 [Information] Request finished in 4272.5918ms 200 application/json; charset=utf-8 +2017-07-25 18:44:38.013 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:44:38.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:38.128 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:38.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:38.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:38.130 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" in 4261.3369ms +2017-07-25 18:44:38.132 +05:30 [Information] Request finished in 4406.0808ms 200 application/json; charset=utf-8 +2017-07-25 18:44:38.133 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" completed keep alive response. +2017-07-25 18:44:39.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:39.895 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:39.895 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:39.896 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:39.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:39.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3147.2904ms +2017-07-25 18:44:39.901 +05:30 [Information] Request finished in 3176.2973ms 200 application/json; charset=utf-8 +2017-07-25 18:44:39.901 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:44:45.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 18:44:45.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 18:44:45.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 18:44:45.757 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:44:45.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:44:45.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:44:48.386 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:44:48.597 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:48.598 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:44:48.599 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:48.601 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:48.604 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3313.2386ms +2017-07-25 18:44:48.607 +05:30 [Information] Request finished in 3320.3986ms 200 application/json; charset=utf-8 +2017-07-25 18:44:48.607 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" completed keep alive response. +2017-07-25 18:44:48.796 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:44:48.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:48.800 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:48.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:48.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.8472ms +2017-07-25 18:44:48.805 +05:30 [Information] Request finished in 3048.1792ms 200 application/json; charset=utf-8 +2017-07-25 18:44:48.805 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:44:48.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 18:44:48.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 18:44:48.815 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 18:44:50.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 18:44:50.946 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:44:50.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:44:50.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:44:50.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2132.8152ms +2017-07-25 18:44:50.952 +05:30 [Information] Request finished in 2139.2604ms 200 application/json; charset=utf-8 +2017-07-25 18:44:50.953 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" completed keep alive response. +2017-07-25 18:45:17.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:45:17.205 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:45:17.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:45:20.273 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:45:20.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:45:20.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:45:20.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:45:20.279 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.1645ms +2017-07-25 18:45:20.284 +05:30 [Information] Request finished in 3079.1976ms 200 application/json; charset=utf-8 +2017-07-25 18:45:20.284 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" completed keep alive response. +2017-07-25 18:45:20.415 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:45:20.416 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:45:20.417 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:45:23.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:45:23.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:45:23.483 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:45:23.487 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:45:23.488 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3069.9804ms +2017-07-25 18:45:23.491 +05:30 [Information] Request finished in 3075.9194ms 200 application/json; charset=utf-8 +2017-07-25 18:45:23.491 +05:30 [Debug] Connection id ""0HL6JBR4KER8E"" completed keep alive response. +2017-07-25 18:45:27.035 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 18:45:27.035 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 18:45:27.036 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 18:45:29.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:45:29.127 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:45:29.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:45:29.129 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:45:29.131 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2093.3841ms +2017-07-25 18:45:29.134 +05:30 [Information] Request finished in 2099.2651ms 200 application/json; charset=utf-8 +2017-07-25 18:45:29.134 +05:30 [Debug] Connection id ""0HL6JBR4KER8D"" completed keep alive response. +2017-07-25 18:45:38.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1 +2017-07-25 18:45:38.613 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:45:38.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:45:41.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:45:54.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:45:54.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:45:54.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:46:01.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 23329.9495ms +2017-07-25 18:46:01.966 +05:30 [Information] Request finished in 23347.2125ms 200 application/json; charset=utf-8 +2017-07-25 18:46:01.967 +05:30 [Debug] Connection id ""0HL6JBR4KER8C"" completed keep alive response. +2017-07-25 18:46:23.650 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" received FIN. +2017-07-25 18:46:23.651 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" received FIN. +2017-07-25 18:46:23.652 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" disconnecting. +2017-07-25 18:46:23.653 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" disconnecting. +2017-07-25 18:46:23.653 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" sending FIN. +2017-07-25 18:46:23.656 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" sending FIN. +2017-07-25 18:46:23.661 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" sent FIN with status "0". +2017-07-25 18:46:23.664 +05:30 [Debug] Connection id ""0HL6JBR4KER8F"" stopped. +2017-07-25 18:46:23.666 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" sent FIN with status "0". +2017-07-25 18:46:23.667 +05:30 [Debug] Connection id ""0HL6JBR4KER8B"" stopped. +2017-07-25 18:51:28.414 +05:30 [Debug] Hosting starting +2017-07-25 18:51:28.737 +05:30 [Debug] Hosting started +2017-07-25 18:51:28.947 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" started. +2017-07-25 18:51:28.947 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" started. +2017-07-25 18:51:29.284 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 18:51:29.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 18:51:29.420 +05:30 [Information] Request finished in 198.3942ms 200 +2017-07-25 18:51:29.584 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" completed keep alive response. +2017-07-25 18:51:30.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 18:51:30.642 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"5f42052a-ab06-4b1d-bb22-90a2bd278e68"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 18:51:30.873 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 18:51:31.019 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 18:51:31.023 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 18:51:31.084 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:51:31.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:51:31.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:51:31.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 519.1891ms +2017-07-25 18:51:31.492 +05:30 [Information] Request finished in 2308.3756ms 200 application/json; charset=utf-8 +2017-07-25 18:51:31.497 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" completed keep alive response. +2017-07-25 18:51:41.565 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:51:41.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:51:41.569 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:51:45.370 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:51:46.803 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-25 18:51:46.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-25 18:51:46.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-25 18:51:49.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:51:50.133 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:51:50.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:51:50.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:51:50.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8824.9448ms +2017-07-25 18:51:50.400 +05:30 [Information] Request finished in 8834.2093ms 200 application/json; charset=utf-8 +2017-07-25 18:51:50.401 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" completed keep alive response. +2017-07-25 18:51:50.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:51:50.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:51:50.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:51:50.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3731.5004ms +2017-07-25 18:51:50.553 +05:30 [Information] Request finished in 3749.2988ms 200 application/json; charset=utf-8 +2017-07-25 18:51:50.554 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" completed keep alive response. +2017-07-25 18:51:50.735 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 18:51:50.736 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 18:51:50.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 18:51:56.730 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:51:56.736 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:51:56.737 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:51:56.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:51:56.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 6003.9648ms +2017-07-25 18:51:56.750 +05:30 [Information] Request finished in 6014.4913ms 200 application/json; charset=utf-8 +2017-07-25 18:51:56.750 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" completed keep alive response. +2017-07-25 18:52:03.907 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-25 18:52:03.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:52:03.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:52:06.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-25 18:52:16.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:16.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:16.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:16.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 13023.0285ms +2017-07-25 18:52:16.937 +05:30 [Information] Request finished in 13033.0449ms 200 application/json; charset=utf-8 +2017-07-25 18:52:16.938 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" completed keep alive response. +2017-07-25 18:52:39.968 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 18:52:39.969 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 18:52:39.973 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 18:52:39.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:52:39.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:52:39.987 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 18:52:40.570 +05:30 [Debug] Connection id ""0HL6JC07H5S37"" started. +2017-07-25 18:52:40.572 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 18:52:40.573 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 18:52:40.574 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 18:52:41.349 +05:30 [Debug] Connection id ""0HL6JC07H5S38"" started. +2017-07-25 18:52:41.350 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 18:52:41.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 18:52:41.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 18:52:43.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:52:43.155 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:52:43.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:43.233 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:52:43.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:43.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:43.245 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3263.181ms +2017-07-25 18:52:43.249 +05:30 [Information] Request finished in 3279.865ms 200 application/json; charset=utf-8 +2017-07-25 18:52:43.249 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" completed keep alive response. +2017-07-25 18:52:43.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:43.280 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:52:43.280 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:43.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:43.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3265.4789ms +2017-07-25 18:52:43.292 +05:30 [Information] Request finished in 3324.6339ms 200 application/json; charset=utf-8 +2017-07-25 18:52:43.293 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" completed keep alive response. +2017-07-25 18:52:43.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 18:52:43.507 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:43.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:43.509 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:43.511 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2156.3248ms +2017-07-25 18:52:43.514 +05:30 [Information] Request finished in 2163.4503ms 200 application/json; charset=utf-8 +2017-07-25 18:52:43.515 +05:30 [Debug] Connection id ""0HL6JC07H5S38"" completed keep alive response. +2017-07-25 18:52:44.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:52:44.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:44.413 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:52:44.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:44.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:44.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3906.1947ms +2017-07-25 18:52:44.485 +05:30 [Information] Request finished in 3912.2002ms 200 application/json; charset=utf-8 +2017-07-25 18:52:44.486 +05:30 [Debug] Connection id ""0HL6JC07H5S37"" completed keep alive response. +2017-07-25 18:52:47.976 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:52:47.983 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:52:47.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:52:51.041 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:52:51.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:51.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:51.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:51.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.6587ms +2017-07-25 18:52:51.064 +05:30 [Information] Request finished in 3095.2619ms 200 application/json; charset=utf-8 +2017-07-25 18:52:51.065 +05:30 [Debug] Connection id ""0HL6JC07H5S36"" completed keep alive response. +2017-07-25 18:52:51.137 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:52:51.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:52:51.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:52:54.187 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:52:54.191 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:54.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:54.194 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:54.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3055.5957ms +2017-07-25 18:52:54.201 +05:30 [Information] Request finished in 3064.2279ms 200 application/json; charset=utf-8 +2017-07-25 18:52:54.201 +05:30 [Debug] Connection id ""0HL6JC07H5S35"" completed keep alive response. +2017-07-25 18:52:56.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 18:52:56.334 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 18:52:56.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 18:52:59.375 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:52:59.381 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:52:59.381 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:52:59.382 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:52:59.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3047.2542ms +2017-07-25 18:52:59.386 +05:30 [Information] Request finished in 3052.488ms 200 application/json; charset=utf-8 +2017-07-25 18:52:59.387 +05:30 [Debug] Connection id ""0HL6JC07H5S38"" completed keep alive response. +2017-07-25 18:53:07.737 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=2865 +2017-07-25 18:53:07.738 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:53:07.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:53:10.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "2865"]) - ModelState is Valid +2017-07-25 18:53:37.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:53:37.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:53:37.205 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:53:37.213 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 29465.8096ms +2017-07-25 18:53:37.216 +05:30 [Information] Request finished in 29483.3408ms 200 application/json; charset=utf-8 +2017-07-25 18:53:37.216 +05:30 [Debug] Connection id ""0HL6JC07H5S37"" completed keep alive response. +2017-07-25 18:58:05.657 +05:30 [Debug] Hosting starting +2017-07-25 18:58:05.862 +05:30 [Debug] Hosting started +2017-07-25 18:58:06.007 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" started. +2017-07-25 18:58:06.021 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" started. +2017-07-25 18:58:06.245 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 18:58:06.245 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 18:58:06.337 +05:30 [Information] Request finished in 137.5975ms 200 +2017-07-25 18:58:06.414 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:58:06.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 18:58:07.045 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c86128f7-0ac1-4b37-b471-ed3ebadb1459"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 18:58:07.589 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 18:58:07.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 18:58:07.750 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 18:58:07.806 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:58:07.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:07.819 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:08.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 543.3728ms +2017-07-25 18:58:08.303 +05:30 [Information] Request finished in 2127.6566ms 200 application/json; charset=utf-8 +2017-07-25 18:58:08.312 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:58:20.397 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:58:20.398 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:58:20.400 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:58:24.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:58:27.847 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-25 18:58:27.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-25 18:58:27.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-25 18:58:31.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:58:31.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:31.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:31.920 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:32.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11750.1105ms +2017-07-25 18:58:32.179 +05:30 [Information] Request finished in 11782.638ms 200 application/json; charset=utf-8 +2017-07-25 18:58:32.180 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:58:32.508 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 18:58:32.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 18:58:32.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 18:58:32.588 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:32.589 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:32.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:32.637 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4785.1034ms +2017-07-25 18:58:32.639 +05:30 [Information] Request finished in 4798.4212ms 200 application/json; charset=utf-8 +2017-07-25 18:58:32.639 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:58:35.715 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-25 18:58:35.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:58:35.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:58:37.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 18:58:37.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:37.770 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:37.771 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:37.773 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 5261.7415ms +2017-07-25 18:58:37.776 +05:30 [Information] Request finished in 5268.3138ms 200 application/json; charset=utf-8 +2017-07-25 18:58:37.776 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:58:38.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-25 18:58:41.009 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:41.010 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:41.011 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:41.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5327.83ms +2017-07-25 18:58:41.050 +05:30 [Information] Request finished in 5334.1229ms 200 application/json; charset=utf-8 +2017-07-25 18:58:41.050 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:58:45.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 18:58:45.628 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 18:58:45.629 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:58:45.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 18:58:45.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:58:45.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 18:58:46.120 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" started. +2017-07-25 18:58:46.125 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 18:58:46.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 18:58:46.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 18:58:46.931 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" started. +2017-07-25 18:58:46.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 18:58:46.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 18:58:46.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 18:58:49.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:58:49.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:58:49.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:49.097 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:58:49.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:49.102 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:49.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3474.702ms +2017-07-25 18:58:49.125 +05:30 [Information] Request finished in 3495.8325ms 200 application/json; charset=utf-8 +2017-07-25 18:58:49.126 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:58:49.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:49.175 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:58:49.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:49.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:49.185 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3539.4516ms +2017-07-25 18:58:49.188 +05:30 [Information] Request finished in 3560.0624ms 200 application/json; charset=utf-8 +2017-07-25 18:58:49.189 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:58:50.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 18:58:50.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:58:50.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:50.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:50.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:50.143 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3184.6924ms +2017-07-25 18:58:50.169 +05:30 [Information] Request finished in 3216.6147ms 200 application/json; charset=utf-8 +2017-07-25 18:58:50.170 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" completed keep alive response. +2017-07-25 18:58:50.401 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:50.402 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:58:50.402 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:50.403 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:50.472 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4342.6481ms +2017-07-25 18:58:50.474 +05:30 [Information] Request finished in 4351.7431ms 200 application/json; charset=utf-8 +2017-07-25 18:58:50.475 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" completed keep alive response. +2017-07-25 18:58:53.012 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:58:53.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:58:53.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:58:56.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:58:56.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:56.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:56.056 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:56.058 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3038.4134ms +2017-07-25 18:58:56.060 +05:30 [Information] Request finished in 3049.7011ms 200 application/json; charset=utf-8 +2017-07-25 18:58:56.061 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:58:56.180 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:58:56.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:58:56.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:58:59.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:58:59.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:58:59.241 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:58:59.242 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:58:59.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3059.5612ms +2017-07-25 18:58:59.246 +05:30 [Information] Request finished in 3064.7288ms 200 application/json; charset=utf-8 +2017-07-25 18:58:59.247 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:59:00.147 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 18:59:00.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 18:59:00.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 18:59:03.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:59:03.197 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:03.197 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:03.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:03.200 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.32ms +2017-07-25 18:59:03.202 +05:30 [Information] Request finished in 3056.7527ms 200 application/json; charset=utf-8 +2017-07-25 18:59:03.203 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" completed keep alive response. +2017-07-25 18:59:03.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=2865 +2017-07-25 18:59:03.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 18:59:03.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 18:59:06.269 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "2865"]) - ModelState is Valid +2017-07-25 18:59:08.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:08.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:08.632 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:08.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5419.9504ms +2017-07-25 18:59:08.656 +05:30 [Information] Request finished in 5445.4567ms 200 application/json; charset=utf-8 +2017-07-25 18:59:08.657 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" completed keep alive response. +2017-07-25 18:59:31.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 18:59:31.886 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=2865 +2017-07-25 18:59:31.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 18:59:31.887 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 18:59:31.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 18:59:31.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 18:59:32.358 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=2865 +2017-07-25 18:59:32.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 18:59:32.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 18:59:33.151 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 18:59:33.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 18:59:33.152 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 18:59:34.962 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 18:59:35.117 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:35.132 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:59:35.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:35.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:35.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3263.2442ms +2017-07-25 18:59:35.230 +05:30 [Information] Request finished in 3323.4709ms 200 application/json; charset=utf-8 +2017-07-25 18:59:35.230 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 18:59:35.356 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 18:59:35.363 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:35.364 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:59:35.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:35.368 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:35.370 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3478.1682ms +2017-07-25 18:59:35.397 +05:30 [Information] Request finished in 3511.1939ms 200 application/json; charset=utf-8 +2017-07-25 18:59:35.398 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" completed keep alive response. +2017-07-25 18:59:35.507 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 18:59:35.509 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:35.510 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 18:59:35.510 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:35.511 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:35.512 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3150.5881ms +2017-07-25 18:59:35.514 +05:30 [Information] Request finished in 3156.0954ms 200 application/json; charset=utf-8 +2017-07-25 18:59:35.515 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" completed keep alive response. +2017-07-25 18:59:36.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 18:59:36.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:36.275 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:36.276 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:36.278 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3124.8723ms +2017-07-25 18:59:36.281 +05:30 [Information] Request finished in 3130.7693ms 200 application/json; charset=utf-8 +2017-07-25 18:59:36.281 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" completed keep alive response. +2017-07-25 18:59:36.291 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 18:59:36.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 18:59:36.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 18:59:39.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 18:59:39.367 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 18:59:39.368 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 18:59:39.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 18:59:39.372 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3077.2857ms +2017-07-25 18:59:39.376 +05:30 [Information] Request finished in 3084.8936ms 200 application/json; charset=utf-8 +2017-07-25 18:59:39.377 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" completed keep alive response. +2017-07-25 19:02:05.972 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" received FIN. +2017-07-25 19:02:05.972 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" received FIN. +2017-07-25 19:02:05.973 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" received FIN. +2017-07-25 19:02:05.975 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" received FIN. +2017-07-25 19:02:05.974 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" disconnecting. +2017-07-25 19:02:05.978 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" sending FIN. +2017-07-25 19:02:05.993 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" sent FIN with status "0". +2017-07-25 19:02:06.017 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" disconnecting. +2017-07-25 19:02:06.018 +05:30 [Debug] Connection id ""0HL6JC3TRNGT3"" stopped. +2017-07-25 19:02:06.018 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" sending FIN. +2017-07-25 19:02:06.028 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" sent FIN with status "0". +2017-07-25 19:02:06.028 +05:30 [Debug] Connection id ""0HL6JC3TRNGT1"" stopped. +2017-07-25 19:02:06.044 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" disconnecting. +2017-07-25 19:02:06.044 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" disconnecting. +2017-07-25 19:02:06.049 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" sending FIN. +2017-07-25 19:02:06.050 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" sent FIN with status "0". +2017-07-25 19:02:06.050 +05:30 [Debug] Connection id ""0HL6JC3TRNGT0"" stopped. +2017-07-25 19:02:06.049 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" sending FIN. +2017-07-25 19:02:06.051 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" sent FIN with status "0". +2017-07-25 19:02:06.052 +05:30 [Debug] Connection id ""0HL6JC3TRNGT2"" stopped. +2017-07-25 19:10:42.006 +05:30 [Debug] Hosting starting +2017-07-25 19:10:42.244 +05:30 [Debug] Hosting started +2017-07-25 19:10:42.497 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" started. +2017-07-25 19:10:42.497 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" started. +2017-07-25 19:10:42.695 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-25 19:10:42.695 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-25 19:10:42.762 +05:30 [Information] Request finished in 108.5849ms 200 +2017-07-25 19:10:42.819 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:10:43.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-25 19:10:43.542 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"91b72621-2def-459d-8e02-4a00d8b64bb7"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-25 19:10:43.647 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-25 19:10:43.767 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-25 19:10:43.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-25 19:10:43.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:10:43.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:10:43.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:10:44.102 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 442.8893ms +2017-07-25 19:10:44.170 +05:30 [Information] Request finished in 1531.5296ms 200 application/json; charset=utf-8 +2017-07-25 19:10:44.173 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:10:54.178 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:10:54.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:10:54.184 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:10:57.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:01.660 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:01.667 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:01.668 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:01.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7611.8307ms +2017-07-25 19:11:01.801 +05:30 [Information] Request finished in 7627.8142ms 200 application/json; charset=utf-8 +2017-07-25 19:11:01.802 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:11:02.045 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-25 19:11:02.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-25 19:11:02.047 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-25 19:11:05.182 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-25 19:11:05.246 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:05.247 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:05.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:05.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3257.6641ms +2017-07-25 19:11:05.310 +05:30 [Information] Request finished in 3264.7833ms 200 application/json; charset=utf-8 +2017-07-25 19:11:05.311 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:11:05.533 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:11:05.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:11:05.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:11:08.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:08.614 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:08.615 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:08.616 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:08.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3081.1453ms +2017-07-25 19:11:08.621 +05:30 [Information] Request finished in 3087.5676ms 200 application/json; charset=utf-8 +2017-07-25 19:11:08.622 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:11:17.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 19:11:17.076 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 19:11:17.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 19:11:20.144 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:20.151 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:20.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:20.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:20.155 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3075.8724ms +2017-07-25 19:11:20.160 +05:30 [Information] Request finished in 3089.9566ms 200 application/json; charset=utf-8 +2017-07-25 19:11:20.161 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:11:20.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-25 19:11:20.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 19:11:20.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 19:11:23.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-25 19:11:41.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:41.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:41.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:41.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 21691.4875ms +2017-07-25 19:11:41.909 +05:30 [Information] Request finished in 21735.6731ms 200 application/json; charset=utf-8 +2017-07-25 19:11:41.911 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:11:47.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 19:11:47.898 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 19:11:47.899 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 19:11:47.917 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 19:11:47.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 19:11:47.919 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 19:11:48.320 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" started. +2017-07-25 19:11:48.322 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 19:11:48.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 19:11:48.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 19:11:49.499 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" started. +2017-07-25 19:11:49.514 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:11:49.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:11:49.516 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:11:51.707 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" started. +2017-07-25 19:11:51.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:11:51.738 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:11:51.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:11:51.739 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:11:51.786 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:11:51.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:11:51.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:51.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:11:51.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:51.932 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:51.948 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4026.2653ms +2017-07-25 19:11:51.954 +05:30 [Information] Request finished in 4036.7425ms 200 application/json; charset=utf-8 +2017-07-25 19:11:51.955 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:11:52.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:52.249 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:11:52.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:52.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:52.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:52.256 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:11:52.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:52.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:52.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4360.7219ms +2017-07-25 19:11:52.277 +05:30 [Information] Request finished in 4379.5188ms 200 application/json; charset=utf-8 +2017-07-25 19:11:52.278 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:11:52.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4006.749ms +2017-07-25 19:11:52.346 +05:30 [Information] Request finished in 4023.1235ms 200 application/json; charset=utf-8 +2017-07-25 19:11:52.347 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:11:52.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:52.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:52.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:52.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:52.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3279.7024ms +2017-07-25 19:11:52.800 +05:30 [Information] Request finished in 3298.4318ms 200 application/json; charset=utf-8 +2017-07-25 19:11:52.801 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:11:52.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 19:11:52.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 19:11:52.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 19:11:53.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:53.871 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:53.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:53.872 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:53.874 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2133.3141ms +2017-07-25 19:11:53.876 +05:30 [Information] Request finished in 2159.7186ms 200 application/json; charset=utf-8 +2017-07-25 19:11:53.876 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:11:53.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:11:53.958 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:11:53.959 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:11:55.866 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 19:11:56.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:56.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:56.007 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:56.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3190.0759ms +2017-07-25 19:11:56.011 +05:30 [Information] Request finished in 3197.2901ms 200 application/json; charset=utf-8 +2017-07-25 19:11:56.012 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:11:57.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:11:57.031 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:11:57.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:11:57.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:11:57.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.1439ms +2017-07-25 19:11:57.042 +05:30 [Information] Request finished in 3084.4933ms 200 application/json; charset=utf-8 +2017-07-25 19:11:57.043 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:11:58.748 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 19:11:58.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 19:11:58.750 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 19:12:01.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:12:01.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:01.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:01.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:01.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.8573ms +2017-07-25 19:12:01.799 +05:30 [Information] Request finished in 3052.4962ms 200 application/json; charset=utf-8 +2017-07-25 19:12:01.800 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:12:01.804 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=2865 +2017-07-25 19:12:01.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 19:12:01.805 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 19:12:04.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "2865"]) - ModelState is Valid +2017-07-25 19:12:27.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:27.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:27.293 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:27.298 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 25487.4278ms +2017-07-25 19:12:27.300 +05:30 [Information] Request finished in 25495.3621ms 200 application/json; charset=utf-8 +2017-07-25 19:12:27.301 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:12:30.954 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=2865 +2017-07-25 19:12:30.955 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 19:12:30.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 19:12:30.991 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 19:12:30.993 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 19:12:30.993 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 19:12:31.570 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=2865 +2017-07-25 19:12:31.571 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 19:12:31.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 19:12:32.195 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:12:32.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:12:32.197 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:12:34.136 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:12:34.161 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:34.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:12:34.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:34.203 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:34.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3210.5006ms +2017-07-25 19:12:34.221 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:12:34.288 +05:30 [Information] Request finished in 3369.5995ms 200 application/json; charset=utf-8 +2017-07-25 19:12:34.289 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:12:34.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:34.337 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:12:34.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:34.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:34.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3383.5644ms +2017-07-25 19:12:34.345 +05:30 [Information] Request finished in 3454.1994ms 200 application/json; charset=utf-8 +2017-07-25 19:12:34.345 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:12:34.830 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:12:34.834 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:34.834 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:12:34.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:34.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:34.839 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3264.9157ms +2017-07-25 19:12:34.842 +05:30 [Information] Request finished in 3273.1473ms 200 application/json; charset=utf-8 +2017-07-25 19:12:34.843 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:12:35.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:12:35.337 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:35.338 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:35.339 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:35.344 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3141.5649ms +2017-07-25 19:12:35.352 +05:30 [Information] Request finished in 3159.2647ms 200 application/json; charset=utf-8 +2017-07-25 19:12:35.353 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:12:35.361 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 19:12:35.363 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 19:12:35.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 19:12:38.401 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 19:12:38.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:12:38.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:12:38.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:12:38.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3193.7216ms +2017-07-25 19:12:38.567 +05:30 [Information] Request finished in 3207.4144ms 200 application/json; charset=utf-8 +2017-07-25 19:12:38.569 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:13:03.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=2865&userId=1 +2017-07-25 19:13:03.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-07-25 19:13:03.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-07-25 19:13:03.424 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=2865 +2017-07-25 19:13:03.425 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 19:13:03.426 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 19:13:03.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/getProfilesAvailableToConnect?groupId=2865&userId=1 +2017-07-25 19:13:03.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/getProfilesAvailableToConnect"'. +2017-07-25 19:13:03.540 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" +2017-07-25 19:13:06.550 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:13:06.555 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:06.555 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:06.556 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:06.558 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:06.566 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3146.7594ms +2017-07-25 19:13:06.568 +05:30 [Information] Request finished in 3168.4613ms 200 application/json; charset=utf-8 +2017-07-25 19:13:06.569 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:13:06.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" with arguments (["2865", "1"]) - ModelState is Valid +2017-07-25 19:13:06.682 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:13:06.819 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:06.819 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:06.820 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:06.821 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:06.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3429.3053ms +2017-07-25 19:13:06.861 +05:30 [Information] Request finished in 3460.3212ms 200 application/json; charset=utf-8 +2017-07-25 19:13:06.862 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:13:07.067 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:07.068 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:07.070 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:07.079 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:07.090 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" in 3543.7892ms +2017-07-25 19:13:07.096 +05:30 [Information] Request finished in 3690.8254ms 200 application/json; charset=utf-8 +2017-07-25 19:13:07.097 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:13:11.160 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/AddProfileToGroup?profileId=187231345114052&groupId=2865&userId=1&profileType=0 0 +2017-07-25 19:13:11.161 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/AddProfileToGroup"'. +2017-07-25 19:13:11.163 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.AddProfileToGroup (Api.Socioboard)" +2017-07-25 19:13:14.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.AddProfileToGroup (Api.Socioboard)" with arguments (["187231345114052", "2865", "1", "Facebook"]) - ModelState is Valid +2017-07-25 19:13:14.452 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.AddProfileToGroup (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:14.453 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:14.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-25 19:13:14.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:14.458 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.AddProfileToGroup (Api.Socioboard)" in 3293.7475ms +2017-07-25 19:13:14.461 +05:30 [Information] Request finished in 3300.687ms 200 text/plain; charset=utf-8 +2017-07-25 19:13:14.462 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:13:14.487 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=2865&userId=1 +2017-07-25 19:13:14.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=2865 +2017-07-25 19:13:14.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-07-25 19:13:14.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 19:13:14.494 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-07-25 19:13:14.496 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 19:13:14.501 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/getProfilesAvailableToConnect?groupId=2865&userId=1 +2017-07-25 19:13:14.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/getProfilesAvailableToConnect"'. +2017-07-25 19:13:14.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" +2017-07-25 19:13:17.615 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:13:17.632 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:17.633 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:17.633 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:17.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" with arguments (["2865", "1"]) - ModelState is Valid +2017-07-25 19:13:17.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:17.676 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:13:17.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3161.8784ms +2017-07-25 19:13:17.743 +05:30 [Information] Request finished in 3232.3575ms 200 application/json; charset=utf-8 +2017-07-25 19:13:17.744 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:13:17.833 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:17.833 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:17.834 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:17.836 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:17.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3339.5715ms +2017-07-25 19:13:17.863 +05:30 [Information] Request finished in 3368.7983ms 200 application/json; charset=utf-8 +2017-07-25 19:13:17.882 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:13:17.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:17.982 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:13:17.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:17.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:17.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" in 3472.9857ms +2017-07-25 19:13:17.990 +05:30 [Information] Request finished in 3504.5822ms 200 application/json; charset=utf-8 +2017-07-25 19:13:17.991 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:13:31.236 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:13:31.237 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:13:31.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:13:34.309 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:13:34.312 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:34.313 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:34.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:34.321 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.2595ms +2017-07-25 19:13:34.326 +05:30 [Information] Request finished in 3088.6273ms 200 application/json; charset=utf-8 +2017-07-25 19:13:34.326 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:13:37.399 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 19:13:37.400 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 19:13:37.401 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 19:13:40.462 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:13:40.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:40.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:40.468 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:40.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3066.9631ms +2017-07-25 19:13:40.472 +05:30 [Information] Request finished in 3073.4507ms 200 application/json; charset=utf-8 +2017-07-25 19:13:40.473 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:13:40.477 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=2865 +2017-07-25 19:13:40.478 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 19:13:40.478 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 19:13:42.588 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "2865"]) - ModelState is Valid +2017-07-25 19:13:54.968 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:13:54.974 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:13:54.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:13:54.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 14503.7251ms +2017-07-25 19:13:54.989 +05:30 [Information] Request finished in 14511.9133ms 200 application/json; charset=utf-8 +2017-07-25 19:13:54.990 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:14:13.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 19:14:13.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 19:14:13.497 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 19:14:13.502 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=2865 +2017-07-25 19:14:13.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 19:14:13.503 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 19:14:13.769 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/getProfilesAvailableToConnect?groupId=2865&userId=1 +2017-07-25 19:14:13.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/getProfilesAvailableToConnect"'. +2017-07-25 19:14:13.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" +2017-07-25 19:14:13.773 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=2865 +2017-07-25 19:14:13.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-25 19:14:13.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-25 19:14:13.784 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupAdmin?groupId=2865&userId=1 +2017-07-25 19:14:13.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupAdmin"'. +2017-07-25 19:14:13.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" +2017-07-25 19:14:14.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:14:14.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:14.672 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:14.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:14.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:14.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 1177.0025ms +2017-07-25 19:14:14.679 +05:30 [Information] Request finished in 1189.9405ms 200 application/json; charset=utf-8 +2017-07-25 19:14:14.679 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:14:16.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:14:16.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:16.644 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:16.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:16.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:16.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3143.1504ms +2017-07-25 19:14:16.650 +05:30 [Information] Request finished in 3159.3431ms 200 application/json; charset=utf-8 +2017-07-25 19:14:16.650 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:14:16.675 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=2865 +2017-07-25 19:14:16.676 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 19:14:16.677 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 19:14:16.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" with arguments (["2865", "1"]) - ModelState is Valid +2017-07-25 19:14:16.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:14:16.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:16.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:14:16.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:16.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:17.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:17.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupAdmin (Api.Socioboard)" in 3278.1087ms +2017-07-25 19:14:17.150 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:17.150 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:17.172 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:17.173 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:17.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:17.171 +05:30 [Information] Request finished in 3385.9415ms 200 application/json; charset=utf-8 +2017-07-25 19:14:17.173 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:17.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:17.175 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:14:17.188 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:17.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.getProfilesAvailableToConnect (Api.Socioboard)" in 3407.8583ms +2017-07-25 19:14:17.192 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3415.2473ms +2017-07-25 19:14:17.204 +05:30 [Information] Request finished in 3449.7857ms 200 application/json; charset=utf-8 +2017-07-25 19:14:17.206 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:14:17.219 +05:30 [Information] Request finished in 3457.812ms 200 application/json; charset=utf-8 +2017-07-25 19:14:17.221 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:14:18.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=2865 +2017-07-25 19:14:18.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 19:14:18.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 19:14:18.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:14:18.866 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:18.867 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:18.868 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:18.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:18.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2194.1659ms +2017-07-25 19:14:18.888 +05:30 [Information] Request finished in 2232.7515ms 200 application/json; charset=utf-8 +2017-07-25 19:14:18.889 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:14:19.432 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:14:19.433 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:14:19.434 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:14:21.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-25 19:14:21.812 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:21.812 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:21.813 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:21.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:21.817 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3115.9697ms +2017-07-25 19:14:21.820 +05:30 [Information] Request finished in 3123.1167ms 200 application/json; charset=utf-8 +2017-07-25 19:14:21.821 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:14:22.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:14:22.473 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:22.473 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:22.474 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:22.476 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3040.7679ms +2017-07-25 19:14:22.478 +05:30 [Information] Request finished in 3046.698ms 200 application/json; charset=utf-8 +2017-07-25 19:14:22.478 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:14:22.484 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 19:14:22.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 19:14:22.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 19:14:25.545 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 19:14:25.602 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:25.602 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:25.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:25.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3116.4656ms +2017-07-25 19:14:25.610 +05:30 [Information] Request finished in 3123.4696ms 200 application/json; charset=utf-8 +2017-07-25 19:14:25.613 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:14:35.770 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:14:35.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:14:35.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:14:38.836 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:14:38.839 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:38.839 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:38.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:38.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.9033ms +2017-07-25 19:14:38.849 +05:30 [Information] Request finished in 3080.1104ms 200 application/json; charset=utf-8 +2017-07-25 19:14:38.850 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:14:38.904 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:14:38.905 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:14:38.906 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:14:41.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:14:41.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:41.952 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:41.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:41.955 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.7498ms +2017-07-25 19:14:41.958 +05:30 [Information] Request finished in 3054.8173ms 200 application/json; charset=utf-8 +2017-07-25 19:14:41.958 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:14:43.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-25 19:14:43.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-25 19:14:43.236 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-25 19:14:46.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:14:46.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:46.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:46.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:46.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.3832ms +2017-07-25 19:14:46.294 +05:30 [Information] Request finished in 3070.635ms 200 application/json; charset=utf-8 +2017-07-25 19:14:46.295 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:14:46.300 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-25 19:14:46.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-25 19:14:46.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-25 19:14:49.349 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-25 19:14:53.068 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:53.069 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:53.070 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:53.074 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 6771.1487ms +2017-07-25 19:14:53.077 +05:30 [Information] Request finished in 6777.677ms 200 application/json; charset=utf-8 +2017-07-25 19:14:53.077 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:14:55.650 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-25 19:14:55.650 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-25 19:14:55.651 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-25 19:14:55.652 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-25 19:14:55.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-25 19:14:55.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-25 19:14:56.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-25 19:14:56.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-25 19:14:56.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-25 19:14:56.794 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-25 19:14:56.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-25 19:14:56.796 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-25 19:14:58.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:14:58.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:14:58.779 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:58.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:58.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:58.801 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:58.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:58.812 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3154.6788ms +2017-07-25 19:14:58.814 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:58.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:58.819 +05:30 [Information] Request finished in 3188.3841ms 200 application/json; charset=utf-8 +2017-07-25 19:14:58.823 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" completed keep alive response. +2017-07-25 19:14:58.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:58.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3178.4055ms +2017-07-25 19:14:58.847 +05:30 [Information] Request finished in 3219.6019ms 200 application/json; charset=utf-8 +2017-07-25 19:14:58.848 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" completed keep alive response. +2017-07-25 19:14:58.900 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-25 19:14:58.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:58.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:58.906 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:58.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2110.1893ms +2017-07-25 19:14:58.911 +05:30 [Information] Request finished in 2116.7818ms 200 application/json; charset=utf-8 +2017-07-25 19:14:58.912 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" completed keep alive response. +2017-07-25 19:14:58.921 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-25 19:14:58.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-25 19:14:58.924 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-25 19:14:59.200 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-25 19:14:59.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:14:59.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-25 19:14:59.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:14:59.381 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:14:59.390 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3265.5871ms +2017-07-25 19:14:59.393 +05:30 [Information] Request finished in 3281.1151ms 200 application/json; charset=utf-8 +2017-07-25 19:14:59.394 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" completed keep alive response. +2017-07-25 19:15:01.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-25 19:15:01.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-25 19:15:02.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-25 19:15:02.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-25 19:15:02.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3079.4618ms +2017-07-25 19:15:02.010 +05:30 [Information] Request finished in 3089.6798ms 200 application/json; charset=utf-8 +2017-07-25 19:15:02.014 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" completed keep alive response. +2017-07-25 19:16:42.468 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" received FIN. +2017-07-25 19:16:42.469 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" disconnecting. +2017-07-25 19:16:42.470 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" sending FIN. +2017-07-25 19:16:42.475 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" sent FIN with status "0". +2017-07-25 19:16:42.477 +05:30 [Debug] Connection id ""0HL6JCAVA8FA4"" stopped. +2017-07-25 19:16:42.477 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" received FIN. +2017-07-25 19:16:42.478 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" received FIN. +2017-07-25 19:16:42.481 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" received FIN. +2017-07-25 19:16:42.487 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" disconnecting. +2017-07-25 19:16:42.487 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" sending FIN. +2017-07-25 19:16:42.488 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" sent FIN with status "0". +2017-07-25 19:16:42.488 +05:30 [Debug] Connection id ""0HL6JCAVA8FA7"" stopped. +2017-07-25 19:16:42.494 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" disconnecting. +2017-07-25 19:16:42.494 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" disconnecting. +2017-07-25 19:16:42.494 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" received FIN. +2017-07-25 19:16:42.496 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" sending FIN. +2017-07-25 19:16:42.497 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" sending FIN. +2017-07-25 19:16:42.497 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" sent FIN with status "0". +2017-07-25 19:16:42.498 +05:30 [Debug] Connection id ""0HL6JCAVA8FA6"" stopped. +2017-07-25 19:16:42.498 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" sent FIN with status "0". +2017-07-25 19:16:42.499 +05:30 [Debug] Connection id ""0HL6JCAVA8FA5"" stopped. +2017-07-25 19:16:42.500 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" disconnecting. +2017-07-25 19:16:42.500 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" sending FIN. +2017-07-25 19:16:42.501 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" sent FIN with status "0". +2017-07-25 19:16:42.501 +05:30 [Debug] Connection id ""0HL6JCAVA8FA8"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170726.txt b/src/Api.Socioboard/wwwroot/log/log-20170726.txt new file mode 100644 index 000000000..07e762596 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170726.txt @@ -0,0 +1,840 @@ +2017-07-26 10:22:45.251 +05:30 [Debug] Hosting starting +2017-07-26 10:22:45.711 +05:30 [Debug] Hosting started +2017-07-26 10:22:45.843 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" started. +2017-07-26 10:22:45.843 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" started. +2017-07-26 10:22:46.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-26 10:22:46.075 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-26 10:22:46.147 +05:30 [Information] Request finished in 105.7222ms 200 +2017-07-26 10:22:46.215 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" completed keep alive response. +2017-07-26 10:22:47.264 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-26 10:22:47.462 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0fe294eb-e58d-42b2-bf83-06f92f43c15f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-26 10:22:47.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-26 10:22:47.906 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-26 10:22:47.909 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-26 10:22:47.962 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:22:47.968 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:22:47.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:22:48.369 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 644.2109ms +2017-07-26 10:22:48.443 +05:30 [Information] Request finished in 2417.9693ms 200 application/json; charset=utf-8 +2017-07-26 10:22:48.446 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:22:48.501 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-26 10:22:48.504 +05:30 [Debug] Request did not match any routes. +2017-07-26 10:22:48.526 +05:30 [Debug] The request path "" does not match the path filter +2017-07-26 10:22:48.530 +05:30 [Information] Request finished in 29.795ms 404 +2017-07-26 10:22:48.531 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" completed keep alive response. +2017-07-26 10:22:56.957 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:22:56.957 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:22:56.960 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:23:00.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:23:04.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:23:04.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:23:04.530 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:23:04.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7699.2405ms +2017-07-26 10:23:04.676 +05:30 [Information] Request finished in 7742.6345ms 200 application/json; charset=utf-8 +2017-07-26 10:23:04.677 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:23:05.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-26 10:23:05.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-26 10:23:05.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-26 10:23:08.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-26 10:23:08.250 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:23:08.250 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:23:08.251 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:23:08.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3295.0475ms +2017-07-26 10:23:08.308 +05:30 [Information] Request finished in 3300.7749ms 200 application/json; charset=utf-8 +2017-07-26 10:23:08.309 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" completed keep alive response. +2017-07-26 10:23:08.511 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:23:08.511 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:23:08.513 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:23:10.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:23:10.616 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:23:10.617 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:23:10.617 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:23:10.619 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2104.7323ms +2017-07-26 10:23:10.621 +05:30 [Information] Request finished in 2111.1676ms 200 application/json; charset=utf-8 +2017-07-26 10:23:10.622 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:23:15.283 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-26 10:23:15.284 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-26 10:23:15.286 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-26 10:23:18.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:23:18.332 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:23:18.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:23:18.334 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:23:18.335 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.3771ms +2017-07-26 10:23:18.337 +05:30 [Information] Request finished in 3064.9672ms 200 application/json; charset=utf-8 +2017-07-26 10:23:18.338 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" completed keep alive response. +2017-07-26 10:23:18.347 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-26 10:23:18.348 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 10:23:18.349 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 10:23:21.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-26 10:24:31.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:24:31.418 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:24:31.419 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:24:31.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 73117.8962ms +2017-07-26 10:24:31.492 +05:30 [Information] Request finished in 73144.4282ms 200 application/json; charset=utf-8 +2017-07-26 10:24:31.493 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:24:49.945 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" received FIN. +2017-07-26 10:24:49.951 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" disconnecting. +2017-07-26 10:24:49.958 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" sending FIN. +2017-07-26 10:24:49.970 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" sent FIN with status "0". +2017-07-26 10:24:49.974 +05:30 [Debug] Connection id ""0HL6JS8K4P75B"" stopped. +2017-07-26 10:24:58.180 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" started. +2017-07-26 10:24:58.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 10:24:58.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 10:24:58.212 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 10:24:58.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 10:24:58.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 10:24:58.223 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 10:24:58.662 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" started. +2017-07-26 10:24:58.673 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 10:24:58.674 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 10:24:58.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 10:24:59.571 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" started. +2017-07-26 10:24:59.573 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:24:59.574 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:24:59.575 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:00.481 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:00.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:00.544 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:00.544 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:00.545 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:00.549 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2323.5341ms +2017-07-26 10:25:00.551 +05:30 [Information] Request finished in 2355.4129ms 200 application/json; charset=utf-8 +2017-07-26 10:25:00.552 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:01.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:01.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:01.432 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:01.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:01.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:01.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3214.9177ms +2017-07-26 10:25:01.444 +05:30 [Information] Request finished in 3248.1313ms 200 application/json; charset=utf-8 +2017-07-26 10:25:01.445 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:01.834 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:02.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:02.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:02.141 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:02.142 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:02.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3528.4361ms +2017-07-26 10:25:02.208 +05:30 [Information] Request finished in 3543.0646ms 200 application/json; charset=utf-8 +2017-07-26 10:25:02.209 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:25:02.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:02.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:02.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:02.655 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:02.656 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3080.1516ms +2017-07-26 10:25:02.659 +05:30 [Information] Request finished in 3086.5412ms 200 application/json; charset=utf-8 +2017-07-26 10:25:02.660 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" completed keep alive response. +2017-07-26 10:25:02.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 10:25:02.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 10:25:02.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 10:25:05.713 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 10:25:05.830 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:05.831 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:05.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:05.834 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3148.4719ms +2017-07-26 10:25:05.837 +05:30 [Information] Request finished in 3156.0851ms 200 application/json; charset=utf-8 +2017-07-26 10:25:05.838 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:08.827 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:08.829 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:08.830 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:11.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:11.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:11.888 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:11.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:11.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.4164ms +2017-07-26 10:25:11.895 +05:30 [Information] Request finished in 3067.7584ms 200 application/json; charset=utf-8 +2017-07-26 10:25:11.895 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:11.974 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:11.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:11.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:15.033 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:15.041 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:15.042 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:15.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:15.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.4489ms +2017-07-26 10:25:15.050 +05:30 [Information] Request finished in 3077.8705ms 200 application/json; charset=utf-8 +2017-07-26 10:25:15.051 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:25:16.346 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-26 10:25:16.351 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-26 10:25:16.357 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-26 10:25:19.407 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:19.412 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:19.413 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:19.414 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:19.416 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.8441ms +2017-07-26 10:25:19.421 +05:30 [Information] Request finished in 3074.3033ms 200 application/json; charset=utf-8 +2017-07-26 10:25:19.423 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" completed keep alive response. +2017-07-26 10:25:19.433 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=2865 +2017-07-26 10:25:19.434 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 10:25:19.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 10:25:22.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "2865"]) - ModelState is Valid +2017-07-26 10:25:23.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:23.254 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:23.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:23.259 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3820.9371ms +2017-07-26 10:25:23.263 +05:30 [Information] Request finished in 3834.5814ms 200 application/json; charset=utf-8 +2017-07-26 10:25:23.264 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:25.172 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=2865 +2017-07-26 10:25:25.173 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 10:25:25.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 10:25:25.174 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 10:25:25.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 10:25:25.175 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 10:25:25.552 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=2865 +2017-07-26 10:25:25.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 10:25:25.553 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 10:25:26.101 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:26.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:26.102 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:28.237 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:28.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:28.249 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:28.249 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:28.257 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:28.292 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3082.6713ms +2017-07-26 10:25:28.315 +05:30 [Information] Request finished in 3136.5889ms 200 application/json; charset=utf-8 +2017-07-26 10:25:28.317 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:28.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-26 10:25:28.392 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:28.393 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:28.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:28.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:28.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3218.1333ms +2017-07-26 10:25:28.400 +05:30 [Information] Request finished in 3226.7934ms 200 application/json; charset=utf-8 +2017-07-26 10:25:28.401 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:25:28.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["2865"]) - ModelState is Valid +2017-07-26 10:25:28.668 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:28.668 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:28.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:28.670 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:28.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3116.3293ms +2017-07-26 10:25:28.674 +05:30 [Information] Request finished in 3122.8102ms 200 application/json; charset=utf-8 +2017-07-26 10:25:28.675 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" completed keep alive response. +2017-07-26 10:25:29.127 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:29.129 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:29.130 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:29.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:29.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3028.9928ms +2017-07-26 10:25:29.136 +05:30 [Information] Request finished in 3034.2468ms 200 application/json; charset=utf-8 +2017-07-26 10:25:29.136 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:29.146 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 10:25:29.147 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 10:25:29.147 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 10:25:32.213 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 10:25:32.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:32.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:32.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:32.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3111.2553ms +2017-07-26 10:25:32.263 +05:30 [Information] Request finished in 3118.6749ms 200 application/json; charset=utf-8 +2017-07-26 10:25:32.264 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:35.674 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:35.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:35.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:38.724 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:38.728 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:38.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:38.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:38.733 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3051.9506ms +2017-07-26 10:25:38.735 +05:30 [Information] Request finished in 3060.7676ms 200 application/json; charset=utf-8 +2017-07-26 10:25:38.736 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:25:38.793 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:38.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:38.794 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:41.861 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:41.864 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:41.865 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:41.866 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:41.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3072.5887ms +2017-07-26 10:25:41.872 +05:30 [Information] Request finished in 3078.8618ms 200 application/json; charset=utf-8 +2017-07-26 10:25:41.873 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" completed keep alive response. +2017-07-26 10:25:42.470 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-26 10:25:42.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-26 10:25:42.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-26 10:25:45.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:45.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:45.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:45.515 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:45.517 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3044.7784ms +2017-07-26 10:25:45.522 +05:30 [Information] Request finished in 3052.9703ms 200 application/json; charset=utf-8 +2017-07-26 10:25:45.523 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:45.527 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-26 10:25:45.528 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 10:25:45.529 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 10:25:48.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-26 10:25:49.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:49.264 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:49.266 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:49.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3736.8457ms +2017-07-26 10:25:49.271 +05:30 [Information] Request finished in 3743.8846ms 200 application/json; charset=utf-8 +2017-07-26 10:25:49.272 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:51.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 10:25:51.115 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 10:25:51.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 10:25:51.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 10:25:51.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 10:25:51.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 10:25:51.533 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 10:25:51.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 10:25:51.534 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 10:25:51.861 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 10:25:51.862 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 10:25:51.863 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 10:25:54.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:54.166 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:54.167 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:54.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:54.168 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:54.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3053.6073ms +2017-07-26 10:25:54.173 +05:30 [Information] Request finished in 3066.4073ms 200 application/json; charset=utf-8 +2017-07-26 10:25:54.176 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:25:54.233 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:54.289 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:54.289 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:54.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:54.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:54.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3163.4586ms +2017-07-26 10:25:54.295 +05:30 [Information] Request finished in 3186.6701ms 200 application/json; charset=utf-8 +2017-07-26 10:25:54.295 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" completed keep alive response. +2017-07-26 10:25:54.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 10:25:54.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:54.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 10:25:54.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:54.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:54.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3269.0723ms +2017-07-26 10:25:54.822 +05:30 [Information] Request finished in 3287.7183ms 200 application/json; charset=utf-8 +2017-07-26 10:25:54.823 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" completed keep alive response. +2017-07-26 10:25:54.927 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 10:25:54.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:54.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:54.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:54.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.3028ms +2017-07-26 10:25:54.945 +05:30 [Information] Request finished in 3078.6366ms 200 application/json; charset=utf-8 +2017-07-26 10:25:54.946 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" completed keep alive response. +2017-07-26 10:25:54.993 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 10:25:54.995 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 10:25:54.997 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 10:25:58.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 10:25:58.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 10:25:58.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 10:25:58.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 10:25:58.152 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3151.5164ms +2017-07-26 10:25:58.157 +05:30 [Information] Request finished in 3165.4421ms 200 application/json; charset=utf-8 +2017-07-26 10:25:58.159 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" completed keep alive response. +2017-07-26 10:28:45.816 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" received FIN. +2017-07-26 10:28:45.817 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" received FIN. +2017-07-26 10:28:45.816 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" received FIN. +2017-07-26 10:28:45.820 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" disconnecting. +2017-07-26 10:28:45.819 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" disconnecting. +2017-07-26 10:28:45.822 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" received FIN. +2017-07-26 10:28:45.825 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" disconnecting. +2017-07-26 10:28:45.828 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" sending FIN. +2017-07-26 10:28:45.829 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" sent FIN with status "0". +2017-07-26 10:28:45.828 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" disconnecting. +2017-07-26 10:28:45.825 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" sending FIN. +2017-07-26 10:28:45.830 +05:30 [Debug] Connection id ""0HL6JS8K4P75E"" stopped. +2017-07-26 10:28:45.835 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" sending FIN. +2017-07-26 10:28:45.833 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" sending FIN. +2017-07-26 10:28:45.837 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" sent FIN with status "0". +2017-07-26 10:28:45.836 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" sent FIN with status "0". +2017-07-26 10:28:45.839 +05:30 [Debug] Connection id ""0HL6JS8K4P75C"" stopped. +2017-07-26 10:28:45.838 +05:30 [Debug] Connection id ""0HL6JS8K4P75A"" stopped. +2017-07-26 10:28:45.841 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" sent FIN with status "0". +2017-07-26 10:28:45.842 +05:30 [Debug] Connection id ""0HL6JS8K4P75D"" stopped. +2017-07-26 15:19:22.177 +05:30 [Debug] Hosting starting +2017-07-26 15:19:22.486 +05:30 [Debug] Hosting started +2017-07-26 15:19:22.735 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" started. +2017-07-26 15:19:22.735 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" started. +2017-07-26 15:19:22.921 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-26 15:19:22.921 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-26 15:19:22.984 +05:30 [Information] Request finished in 106.9921ms 200 +2017-07-26 15:19:23.023 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" completed keep alive response. +2017-07-26 15:19:25.143 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-26 15:19:25.198 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"401a45bd-1c41-4673-b496-bb9fa221ef40"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-26 15:19:25.307 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-26 15:19:25.412 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-26 15:19:25.416 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-26 15:19:25.462 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:19:25.467 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:19:25.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:19:25.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 542.0426ms +2017-07-26 15:19:25.957 +05:30 [Information] Request finished in 3091.4726ms 200 application/json; charset=utf-8 +2017-07-26 15:19:25.960 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" completed keep alive response. +2017-07-26 15:19:26.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-26 15:19:26.083 +05:30 [Debug] Request did not match any routes. +2017-07-26 15:19:26.099 +05:30 [Debug] The request path "" does not match the path filter +2017-07-26 15:19:26.103 +05:30 [Information] Request finished in 23.2915ms 404 +2017-07-26 15:19:26.104 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" completed keep alive response. +2017-07-26 15:20:06.812 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-26 15:20:06.819 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-26 15:20:06.823 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-26 15:20:11.069 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-26 15:20:20.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:20.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:20.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:20.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 13506.7113ms +2017-07-26 15:20:20.364 +05:30 [Information] Request finished in 13565.7387ms 200 application/json; charset=utf-8 +2017-07-26 15:20:20.365 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" completed keep alive response. +2017-07-26 15:20:26.226 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" received FIN. +2017-07-26 15:20:26.230 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" disconnecting. +2017-07-26 15:20:26.233 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" sending FIN. +2017-07-26 15:20:26.245 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" sent FIN with status "0". +2017-07-26 15:20:26.253 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-26 15:20:26.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 15:20:26.256 +05:30 [Debug] Connection id ""0HL6K1EC15S98"" stopped. +2017-07-26 15:20:26.263 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 15:20:28.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-26 15:20:37.511 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:37.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:37.636 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:37.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 11444.1335ms +2017-07-26 15:20:37.736 +05:30 [Information] Request finished in 11504.0998ms 200 application/json; charset=utf-8 +2017-07-26 15:20:37.737 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" completed keep alive response. +2017-07-26 15:20:49.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-26 15:20:49.832 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 15:20:49.834 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 15:20:51.265 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" started. +2017-07-26 15:20:51.265 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" started. +2017-07-26 15:20:51.520 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 15:20:51.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 15:20:51.522 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 15:20:51.564 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 15:20:51.564 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 15:20:51.571 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 15:20:53.054 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-26 15:20:53.069 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:53.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:53.076 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:53.082 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3241.5946ms +2017-07-26 15:20:53.090 +05:30 [Information] Request finished in 3299.4303ms 200 application/json; charset=utf-8 +2017-07-26 15:20:53.091 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" completed keep alive response. +2017-07-26 15:20:53.133 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 15:20:53.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 15:20:53.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 15:20:54.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:20:54.816 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" started. +2017-07-26 15:20:54.825 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" started. +2017-07-26 15:20:54.845 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 15:20:54.846 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 15:20:54.847 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 15:20:54.871 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 15:20:54.875 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 15:20:54.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 15:20:54.933 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:54.933 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:20:54.934 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:54.942 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:20:54.943 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:55.005 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3439.4208ms +2017-07-26 15:20:55.039 +05:30 [Information] Request finished in 3735.4888ms 200 application/json; charset=utf-8 +2017-07-26 15:20:55.041 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" completed keep alive response. +2017-07-26 15:20:55.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:55.135 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:20:55.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:55.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:55.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 15:20:55.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 15:20:55.648 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 15:20:55.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3952.8358ms +2017-07-26 15:20:55.736 +05:30 [Information] Request finished in 4207.9898ms 200 application/json; charset=utf-8 +2017-07-26 15:20:55.736 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" completed keep alive response. +2017-07-26 15:20:56.340 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 15:20:56.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 15:20:56.342 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 15:20:57.238 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:20:57.662 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:57.662 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:20:57.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:57.664 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:57.744 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" received FIN. +2017-07-26 15:20:57.761 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" disconnecting. +2017-07-26 15:20:57.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4621.9317ms +2017-07-26 15:20:57.770 +05:30 [Information] Connection id ""0HL6K1EC15S97"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-26 15:20:57.774 +05:30 [Debug] Connection id ""0HL6K1EC15S97"" stopped. +2017-07-26 15:20:57.775 +05:30 [Information] Request finished in 4641.2985ms 200 application/json; charset=utf-8 +2017-07-26 15:20:58.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:20:58.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:20:58.394 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:58.400 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:20:58.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:58.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:58.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:20:58.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3577.121ms +2017-07-26 15:20:58.499 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:20:58.513 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:20:58.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:20:59.486 +05:30 [Information] Request finished in 3719.9961ms 200 application/json; charset=utf-8 +2017-07-26 15:20:59.498 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" completed keep alive response. +2017-07-26 15:21:00.007 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4233.7607ms +2017-07-26 15:21:00.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:21:00.709 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 15:21:00.789 +05:30 [Information] Request finished in 5566.4806ms 200 application/json; charset=utf-8 +2017-07-26 15:21:00.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:21:00.854 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" completed keep alive response. +2017-07-26 15:21:00.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:21:00.896 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:21:00.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4596.8616ms +2017-07-26 15:21:01.035 +05:30 [Information] Request finished in 4719.5548ms 200 application/json; charset=utf-8 +2017-07-26 15:21:01.036 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" completed keep alive response. +2017-07-26 15:21:01.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:21:01.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:21:01.131 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:21:01.132 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:21:01.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5484.8197ms +2017-07-26 15:21:01.136 +05:30 [Information] Request finished in 5617.7258ms 200 application/json; charset=utf-8 +2017-07-26 15:21:01.137 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" completed keep alive response. +2017-07-26 15:23:22.711 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" received FIN. +2017-07-26 15:23:22.711 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" received FIN. +2017-07-26 15:23:22.711 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" disconnecting. +2017-07-26 15:23:22.711 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" received FIN. +2017-07-26 15:23:22.713 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" received FIN. +2017-07-26 15:23:22.714 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" disconnecting. +2017-07-26 15:23:22.715 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" disconnecting. +2017-07-26 15:23:22.716 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" sending FIN. +2017-07-26 15:23:22.714 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" sending FIN. +2017-07-26 15:23:22.716 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" sent FIN with status "0". +2017-07-26 15:23:22.717 +05:30 [Debug] Connection id ""0HL6K1EC15S9A"" stopped. +2017-07-26 15:23:22.717 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" sending FIN. +2017-07-26 15:23:22.713 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" disconnecting. +2017-07-26 15:23:22.720 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" sending FIN. +2017-07-26 15:23:22.720 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" sent FIN with status "0". +2017-07-26 15:23:22.721 +05:30 [Debug] Connection id ""0HL6K1EC15S99"" stopped. +2017-07-26 15:23:22.720 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" sent FIN with status "0". +2017-07-26 15:23:22.722 +05:30 [Debug] Connection id ""0HL6K1EC15S9C"" stopped. +2017-07-26 15:23:22.721 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" sent FIN with status "0". +2017-07-26 15:23:22.723 +05:30 [Debug] Connection id ""0HL6K1EC15S9B"" stopped. +2017-07-26 15:40:06.875 +05:30 [Debug] Hosting starting +2017-07-26 15:40:07.088 +05:30 [Debug] Hosting started +2017-07-26 15:40:07.145 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" started. +2017-07-26 15:40:07.146 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" started. +2017-07-26 15:40:07.331 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-26 15:40:07.331 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-26 15:40:07.406 +05:30 [Information] Request finished in 113.4071ms 200 +2017-07-26 15:40:07.459 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" completed keep alive response. +2017-07-26 15:40:08.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-26 15:40:08.268 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"154a3890-0484-4e77-919e-bf293d45fb82"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-26 15:40:08.402 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-26 15:40:08.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-26 15:40:08.508 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-26 15:40:08.553 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:40:08.561 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:08.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:08.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 470.7449ms +2017-07-26 15:40:09.174 +05:30 [Information] Request finished in 1898.706ms 200 application/json; charset=utf-8 +2017-07-26 15:40:09.176 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:40:18.463 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 15:40:18.465 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 15:40:18.468 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 15:40:22.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:40:27.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:27.093 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:27.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:27.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8749.3762ms +2017-07-26 15:40:27.223 +05:30 [Information] Request finished in 8759.8332ms 200 application/json; charset=utf-8 +2017-07-26 15:40:27.223 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" completed keep alive response. +2017-07-26 15:40:27.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-26 15:40:27.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-26 15:40:27.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-26 15:40:31.055 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-26 15:40:31.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:31.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:31.133 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:31.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3408.3896ms +2017-07-26 15:40:31.227 +05:30 [Information] Request finished in 3419.9765ms 200 application/json; charset=utf-8 +2017-07-26 15:40:31.228 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:40:38.564 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-26 15:40:38.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-26 15:40:38.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-26 15:40:41.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-26 15:40:42.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:42.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:42.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:42.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3464.7547ms +2017-07-26 15:40:42.042 +05:30 [Information] Request finished in 3477.1934ms 200 application/json; charset=utf-8 +2017-07-26 15:40:42.043 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" completed keep alive response. +2017-07-26 15:40:42.166 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 15:40:42.167 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 15:40:42.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 15:40:45.207 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:40:45.211 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:45.212 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:45.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:45.214 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3043.0917ms +2017-07-26 15:40:45.217 +05:30 [Information] Request finished in 3051.9192ms 200 application/json; charset=utf-8 +2017-07-26 15:40:45.221 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:40:45.266 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-26 15:40:45.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-26 15:40:45.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-26 15:40:48.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:40:48.311 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:48.314 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:48.316 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:48.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3047.039ms +2017-07-26 15:40:48.321 +05:30 [Information] Request finished in 3056.1922ms 200 application/json; charset=utf-8 +2017-07-26 15:40:48.322 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" completed keep alive response. +2017-07-26 15:40:48.336 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-26 15:40:48.337 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 15:40:48.339 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 15:40:51.401 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-26 15:40:51.497 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:51.497 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:51.498 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:51.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3188.7388ms +2017-07-26 15:40:51.535 +05:30 [Information] Request finished in 3197.2339ms 200 application/json; charset=utf-8 +2017-07-26 15:40:51.536 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:40:54.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 15:40:54.057 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 15:40:54.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 15:40:54.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 15:40:54.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 15:40:54.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 15:40:54.544 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" started. +2017-07-26 15:40:54.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 15:40:54.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 15:40:54.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 15:40:55.421 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" started. +2017-07-26 15:40:55.422 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 15:40:55.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 15:40:55.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 15:40:57.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:40:57.206 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:40:57.305 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:57.306 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:40:57.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:57.307 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:57.319 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3254.274ms +2017-07-26 15:40:57.324 +05:30 [Information] Request finished in 3269.0202ms 200 application/json; charset=utf-8 +2017-07-26 15:40:57.325 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:40:57.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:57.344 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:40:57.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:57.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:57.361 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3279.2235ms +2017-07-26 15:40:57.373 +05:30 [Information] Request finished in 3308.796ms 200 application/json; charset=utf-8 +2017-07-26 15:40:57.375 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" completed keep alive response. +2017-07-26 15:40:57.625 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:40:57.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:57.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:40:57.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:57.892 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:57.972 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3420.721ms +2017-07-26 15:40:57.974 +05:30 [Information] Request finished in 3427.0092ms 200 application/json; charset=utf-8 +2017-07-26 15:40:57.974 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" completed keep alive response. +2017-07-26 15:40:58.523 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:40:58.526 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:40:58.526 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:40:58.528 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:40:58.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3102.7906ms +2017-07-26 15:40:58.531 +05:30 [Information] Request finished in 3107.8943ms 200 application/json; charset=utf-8 +2017-07-26 15:40:58.532 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" completed keep alive response. +2017-07-26 15:40:58.546 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 15:40:58.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 15:40:58.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 15:41:01.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 15:41:01.641 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:41:01.641 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:41:01.643 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:41:01.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3093.2649ms +2017-07-26 15:41:01.648 +05:30 [Information] Request finished in 3102.4394ms 200 application/json; charset=utf-8 +2017-07-26 15:41:01.649 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" completed keep alive response. +2017-07-26 15:42:07.119 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" received FIN. +2017-07-26 15:42:07.120 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" received FIN. +2017-07-26 15:42:07.121 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" disconnecting. +2017-07-26 15:42:07.122 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" disconnecting. +2017-07-26 15:42:07.119 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" received FIN. +2017-07-26 15:42:07.125 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" received FIN. +2017-07-26 15:42:07.123 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" sending FIN. +2017-07-26 15:42:07.129 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" sending FIN. +2017-07-26 15:42:07.141 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" sent FIN with status "0". +2017-07-26 15:42:07.142 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" disconnecting. +2017-07-26 15:42:07.143 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" sending FIN. +2017-07-26 15:42:07.143 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" sent FIN with status "0". +2017-07-26 15:42:07.141 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" disconnecting. +2017-07-26 15:42:07.144 +05:30 [Debug] Connection id ""0HL6K1PUSPNDC"" stopped. +2017-07-26 15:42:07.145 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" sent FIN with status "0". +2017-07-26 15:42:07.145 +05:30 [Debug] Connection id ""0HL6K1PUSPNDB"" stopped. +2017-07-26 15:42:07.145 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" sending FIN. +2017-07-26 15:42:07.146 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" sent FIN with status "0". +2017-07-26 15:42:07.145 +05:30 [Debug] Connection id ""0HL6K1PUSPND9"" stopped. +2017-07-26 15:42:07.146 +05:30 [Debug] Connection id ""0HL6K1PUSPNDA"" stopped. +2017-07-26 15:43:04.416 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" started. +2017-07-26 15:43:04.424 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-26 15:43:04.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-26 15:43:04.427 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-26 15:43:06.536 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-26 15:43:06.709 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:06.710 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:06.712 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:06.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2285.5852ms +2017-07-26 15:43:06.720 +05:30 [Information] Request finished in 2295.0304ms 200 application/json; charset=utf-8 +2017-07-26 15:43:06.721 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" completed keep alive response. +2017-07-26 15:43:06.803 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-26 15:43:06.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 15:43:06.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 15:43:09.856 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-26 15:43:09.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:09.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:09.868 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:09.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3063.0257ms +2017-07-26 15:43:09.874 +05:30 [Information] Request finished in 3072.8013ms 200 application/json; charset=utf-8 +2017-07-26 15:43:09.874 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" completed keep alive response. +2017-07-26 15:43:13.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-26 15:43:13.034 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-26 15:43:13.034 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-26 15:43:13.063 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" started. +2017-07-26 15:43:13.065 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" started. +2017-07-26 15:43:13.106 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 15:43:13.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 15:43:13.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 15:43:13.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 15:43:13.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 15:43:13.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 15:43:14.251 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" started. +2017-07-26 15:43:14.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 15:43:14.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 15:43:14.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 15:43:14.849 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" started. +2017-07-26 15:43:14.854 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 15:43:14.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 15:43:14.855 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 15:43:16.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:16.552 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:16.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:16.559 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:16.559 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:16.585 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-26 15:43:16.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:16.644 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3516.0489ms +2017-07-26 15:43:16.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:16.653 +05:30 [Information] Request finished in 3578.7392ms 200 application/json; charset=utf-8 +2017-07-26 15:43:16.654 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" completed keep alive response. +2017-07-26 15:43:16.653 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:16.659 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:16.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:16.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:16.667 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:16.669 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:16.674 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3538.9935ms +2017-07-26 15:43:16.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3638.4656ms +2017-07-26 15:43:16.683 +05:30 [Information] Request finished in 3578.7565ms 200 application/json; charset=utf-8 +2017-07-26 15:43:16.684 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" completed keep alive response. +2017-07-26 15:43:16.687 +05:30 [Information] Request finished in 3678.9112ms 200 application/json; charset=utf-8 +2017-07-26 15:43:16.688 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" completed keep alive response. +2017-07-26 15:43:17.541 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:17.753 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-26 15:43:17.755 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-26 15:43:17.811 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:17.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-26 15:43:17.813 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-26 15:43:17.821 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-26 15:43:17.822 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-26 15:43:17.819 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:17.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:17.830 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:17.832 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3575.5773ms +2017-07-26 15:43:17.835 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" received FIN. +2017-07-26 15:43:17.837 +05:30 [Information] Request finished in 3581.9082ms 200 application/json; charset=utf-8 +2017-07-26 15:43:17.837 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" completed keep alive response. +2017-07-26 15:43:17.838 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" disconnecting. +2017-07-26 15:43:17.839 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" sending FIN. +2017-07-26 15:43:17.839 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" sent FIN with status "0". +2017-07-26 15:43:17.840 +05:30 [Debug] Connection id ""0HL6K1PUSPNDG"" stopped. +2017-07-26 15:43:18.103 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-26 15:43:18.104 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-26 15:43:18.105 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-26 15:43:18.506 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 15:43:18.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:18.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:18.555 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:18.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3700.8368ms +2017-07-26 15:43:18.600 +05:30 [Information] Request finished in 3744.4702ms 200 application/json; charset=utf-8 +2017-07-26 15:43:18.601 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" completed keep alive response. +2017-07-26 15:43:18.706 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 15:43:18.707 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 15:43:18.708 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 15:43:20.298 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:20.530 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:20.531 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:20.531 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:20.532 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:20.534 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2428.2494ms +2017-07-26 15:43:20.536 +05:30 [Information] Request finished in 2434.4409ms 200 application/json; charset=utf-8 +2017-07-26 15:43:20.536 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" completed keep alive response. +2017-07-26 15:43:20.969 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:20.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-26 15:43:21.026 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:21.027 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:21.028 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:21.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:21.031 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-26 15:43:21.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:21.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:21.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:21.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3211.3908ms +2017-07-26 15:43:21.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3214.419ms +2017-07-26 15:43:21.043 +05:30 [Information] Request finished in 3327.705ms 200 application/json; charset=utf-8 +2017-07-26 15:43:21.044 +05:30 [Information] Request finished in 3329.7976ms 200 application/json; charset=utf-8 +2017-07-26 15:43:21.047 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" completed keep alive response. +2017-07-26 15:43:21.045 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" completed keep alive response. +2017-07-26 15:43:21.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:43:21.777 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:21.777 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:21.779 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:21.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3071.5125ms +2017-07-26 15:43:21.782 +05:30 [Information] Request finished in 3077.555ms 200 application/json; charset=utf-8 +2017-07-26 15:43:21.783 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" completed keep alive response. +2017-07-26 15:43:21.788 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 15:43:21.789 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 15:43:21.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 15:43:24.826 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 15:43:24.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:43:24.866 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:43:24.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:43:24.869 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3077.8891ms +2017-07-26 15:43:24.872 +05:30 [Information] Request finished in 3082.9239ms 200 application/json; charset=utf-8 +2017-07-26 15:43:24.873 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" completed keep alive response. +2017-07-26 15:44:48.821 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" received FIN. +2017-07-26 15:44:48.823 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" started. +2017-07-26 15:44:48.823 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" disconnecting. +2017-07-26 15:44:48.823 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" sending FIN. +2017-07-26 15:44:48.824 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" sent FIN with status "0". +2017-07-26 15:44:48.824 +05:30 [Debug] Connection id ""0HL6K1PUSPNDE"" stopped. +2017-07-26 15:44:48.830 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" received FIN. +2017-07-26 15:44:48.835 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" received FIN. +2017-07-26 15:44:48.840 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" received FIN. +2017-07-26 15:44:48.841 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-26 15:44:48.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-26 15:44:48.842 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-26 15:44:48.849 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" disconnecting. +2017-07-26 15:44:48.854 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" disconnecting. +2017-07-26 15:44:48.855 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" disconnecting. +2017-07-26 15:44:48.856 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" sending FIN. +2017-07-26 15:44:48.856 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" sending FIN. +2017-07-26 15:44:48.857 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" sending FIN. +2017-07-26 15:44:48.858 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" sent FIN with status "0". +2017-07-26 15:44:48.859 +05:30 [Debug] Connection id ""0HL6K1PUSPNDD"" stopped. +2017-07-26 15:44:48.860 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" sent FIN with status "0". +2017-07-26 15:44:48.861 +05:30 [Debug] Connection id ""0HL6K1PUSPNDH"" stopped. +2017-07-26 15:44:48.862 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" sent FIN with status "0". +2017-07-26 15:44:48.864 +05:30 [Debug] Connection id ""0HL6K1PUSPNDF"" stopped. +2017-07-26 15:44:50.960 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-26 15:44:50.964 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:44:50.965 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:44:50.966 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:44:50.968 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2124.7046ms +2017-07-26 15:44:50.971 +05:30 [Information] Request finished in 2145.3808ms 200 application/json; charset=utf-8 +2017-07-26 15:44:50.973 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" completed keep alive response. +2017-07-26 15:44:50.984 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-26 15:44:50.985 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-26 15:44:50.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-26 15:44:54.017 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-26 15:44:54.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-26 15:44:54.110 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-26 15:44:54.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-26 15:44:54.118 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3125.2108ms +2017-07-26 15:44:54.121 +05:30 [Information] Request finished in 3136.7345ms 200 application/json; charset=utf-8 +2017-07-26 15:44:54.121 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" completed keep alive response. +2017-07-26 15:46:07.116 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" received FIN. +2017-07-26 15:46:07.117 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" disconnecting. +2017-07-26 15:46:07.118 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" sending FIN. +2017-07-26 15:46:07.118 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" sent FIN with status "0". +2017-07-26 15:46:07.119 +05:30 [Debug] Connection id ""0HL6K1PUSPNDI"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170728.txt b/src/Api.Socioboard/wwwroot/log/log-20170728.txt new file mode 100644 index 000000000..6854a5f9c --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170728.txt @@ -0,0 +1,3160 @@ +2017-07-28 10:48:25.339 +05:30 [Debug] Hosting starting +2017-07-28 10:48:25.646 +05:30 [Debug] Hosting started +2017-07-28 10:48:25.862 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" started. +2017-07-28 10:48:25.867 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" started. +2017-07-28 10:48:26.207 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-28 10:48:26.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 10:48:26.295 +05:30 [Information] Request finished in 194.5161ms 200 +2017-07-28 10:48:26.408 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:48:27.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 10:48:27.818 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d0f29eca-dadd-424a-963c-c83e046228c5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 10:48:28.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 10:48:28.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 10:48:28.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 10:48:28.492 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:48:28.497 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:48:28.499 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:48:28.883 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 581.2946ms +2017-07-28 10:48:28.959 +05:30 [Information] Request finished in 2883.8419ms 200 application/json; charset=utf-8 +2017-07-28 10:48:28.961 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:48:28.996 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-28 10:48:29.000 +05:30 [Debug] Request did not match any routes. +2017-07-28 10:48:29.023 +05:30 [Debug] The request path "" does not match the path filter +2017-07-28 10:48:29.028 +05:30 [Information] Request finished in 34.683ms 404 +2017-07-28 10:48:29.029 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:49:09.060 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 10:49:09.062 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 10:49:09.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 10:49:12.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 10:49:18.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:19.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:19.023 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:19.166 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 10091.8112ms +2017-07-28 10:49:19.169 +05:30 [Information] Request finished in 10121.6971ms 200 application/json; charset=utf-8 +2017-07-28 10:49:19.170 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:49:19.697 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 10:49:19.698 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 10:49:19.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 10:49:22.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 10:49:23.134 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:23.135 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:23.137 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:23.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3497.2177ms +2017-07-28 10:49:23.200 +05:30 [Information] Request finished in 3504.5448ms 200 application/json; charset=utf-8 +2017-07-28 10:49:23.201 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:49:27.543 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 10:49:27.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 10:49:27.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 10:49:27.683 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" started. +2017-07-28 10:49:27.777 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 10:49:27.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 10:49:27.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 10:49:27.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 10:49:27.835 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 10:49:27.915 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 10:49:28.956 +05:30 [Debug] Connection id ""0HL6LF09GOPO3"" started. +2017-07-28 10:49:29.392 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 10:49:29.393 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 10:49:29.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 10:49:29.731 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" started. +2017-07-28 10:49:30.047 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 10:49:30.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 10:49:30.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 10:49:31.653 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:31.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 10:49:31.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:31.674 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:31.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:31.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4126.4734ms +2017-07-28 10:49:31.683 +05:30 [Information] Request finished in 4150.072ms 200 application/json; charset=utf-8 +2017-07-28 10:49:31.684 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:49:31.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:31.718 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:31.718 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:31.721 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:31.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3937.9975ms +2017-07-28 10:49:31.731 +05:30 [Information] Request finished in 4039.2196ms 200 application/json; charset=utf-8 +2017-07-28 10:49:31.732 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:49:32.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:32.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:32.190 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:32.191 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:32.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:32.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4287.4901ms +2017-07-28 10:49:32.208 +05:30 [Information] Request finished in 4459.956ms 200 application/json; charset=utf-8 +2017-07-28 10:49:32.209 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" completed keep alive response. +2017-07-28 10:49:32.605 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 10:49:32.606 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 10:49:32.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 10:49:32.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 10:49:32.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 10:49:32.608 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 10:49:32.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:33.117 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 10:49:33.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 10:49:33.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 10:49:33.169 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 10:49:33.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:33.203 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:33.204 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:33.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:33.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:33.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:33.293 +05:30 [Debug] Connection id ""0HL6LF09GOPO3"" received FIN. +2017-07-28 10:49:33.298 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:33.313 +05:30 [Debug] Connection id ""0HL6LF09GOPO3"" disconnecting. +2017-07-28 10:49:33.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3256.1578ms +2017-07-28 10:49:33.320 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3903.4849ms +2017-07-28 10:49:33.319 +05:30 [Information] Connection id ""0HL6LF09GOPO3"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-07-28 10:49:33.330 +05:30 [Information] Request finished in 3275.8468ms 200 application/json; charset=utf-8 +2017-07-28 10:49:33.331 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" completed keep alive response. +2017-07-28 10:49:33.331 +05:30 [Information] Request finished in 3934.0604ms 200 application/json; charset=utf-8 +2017-07-28 10:49:33.333 +05:30 [Debug] Connection id ""0HL6LF09GOPO3"" stopped. +2017-07-28 10:49:33.527 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 10:49:33.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 10:49:33.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 10:49:34.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:34.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:34.823 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:34.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:34.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:34.828 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2219.1973ms +2017-07-28 10:49:34.830 +05:30 [Information] Request finished in 2225.817ms 200 application/json; charset=utf-8 +2017-07-28 10:49:34.830 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:49:35.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:35.713 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:35.714 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:35.714 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:35.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:35.723 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3109.3017ms +2017-07-28 10:49:35.729 +05:30 [Information] Request finished in 3123.0458ms 200 application/json; charset=utf-8 +2017-07-28 10:49:35.733 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:49:36.260 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:49:36.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:36.463 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:49:36.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:36.466 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:36.470 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3347.4777ms +2017-07-28 10:49:36.478 +05:30 [Information] Request finished in 3360.1389ms 200 application/json; charset=utf-8 +2017-07-28 10:49:36.478 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" completed keep alive response. +2017-07-28 10:49:36.616 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-28 10:49:36.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:36.624 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:36.625 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:36.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3070.0708ms +2017-07-28 10:49:36.634 +05:30 [Information] Request finished in 3109.5483ms 200 application/json; charset=utf-8 +2017-07-28 10:49:36.635 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" completed keep alive response. +2017-07-28 10:49:36.642 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 10:49:36.643 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 10:49:36.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 10:49:39.697 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 10:49:39.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:49:39.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:49:39.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:49:39.755 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3106.8349ms +2017-07-28 10:49:39.762 +05:30 [Information] Request finished in 3117.5214ms 200 application/json; charset=utf-8 +2017-07-28 10:49:39.763 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" completed keep alive response. +2017-07-28 10:50:24.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Google/GetAllGplusProfiles?groupId=1 +2017-07-28 10:50:24.440 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserSessions?userId=1 +2017-07-28 10:50:24.441 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Google/GetAllGplusProfiles"'. +2017-07-28 10:50:24.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserSessions"'. +2017-07-28 10:50:24.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Facebook/GetFacebookProfilesOnly?groupId=1 +2017-07-28 10:50:24.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" +2017-07-28 10:50:24.448 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/GetFacebookProfilesOnly"'. +2017-07-28 10:50:24.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" +2017-07-28 10:50:24.449 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" +2017-07-28 10:50:27.589 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:50:27.687 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:50:27.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 10:50:27.761 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:50:27.763 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:50:27.763 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:50:27.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:50:27.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserSessions (Api.Socioboard)" in 3366.5957ms +2017-07-28 10:50:27.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:50:27.905 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:50:27.905 +05:30 [Information] Request finished in 3455.1347ms 200 application/json; charset=utf-8 +2017-07-28 10:50:27.941 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" completed keep alive response. +2017-07-28 10:50:27.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:50:28.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:50:28.056 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.GetFacebookProfilesOnly (Api.Socioboard)" in 3553.5014ms +2017-07-28 10:50:28.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:50:28.060 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:50:28.062 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:50:28.064 +05:30 [Information] Request finished in 3626.2221ms 200 application/json; charset=utf-8 +2017-07-28 10:50:28.065 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:50:28.066 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" completed keep alive response. +2017-07-28 10:50:28.099 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GoogleController.GetAllGplusProfiles (Api.Socioboard)" in 3627.5059ms +2017-07-28 10:50:28.107 +05:30 [Information] Request finished in 3672.5758ms 200 application/json; charset=utf-8 +2017-07-28 10:50:28.107 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:50:53.955 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" received FIN. +2017-07-28 10:50:53.956 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" disconnecting. +2017-07-28 10:50:53.959 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 10:50:53.959 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" sending FIN. +2017-07-28 10:50:53.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 10:50:53.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 10:50:53.967 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" sent FIN with status "0". +2017-07-28 10:50:53.968 +05:30 [Debug] Connection id ""0HL6LF09GOPO1"" stopped. +2017-07-28 10:50:57.021 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-28 10:50:57.024 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:50:57.025 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:50:57.026 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:50:57.028 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3064.4904ms +2017-07-28 10:50:57.031 +05:30 [Information] Request finished in 3072.6687ms 200 application/json; charset=utf-8 +2017-07-28 10:50:57.031 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" completed keep alive response. +2017-07-28 10:50:57.048 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-28 10:50:57.049 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-28 10:50:57.050 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-28 10:51:00.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["81", "8d4cf66679e453e"]) - ModelState is Valid +2017-07-28 10:51:00.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-28 10:51:00.197 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-28 10:51:00.203 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3149.3271ms +2017-07-28 10:51:00.210 +05:30 [Information] Request finished in 3165.29ms 200 +2017-07-28 10:51:00.211 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" completed keep alive response. +2017-07-28 10:51:01.174 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 10:51:01.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 10:51:01.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 10:51:04.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-28 10:51:04.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:51:04.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:51:04.268 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:51:04.270 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3085.8765ms +2017-07-28 10:51:04.273 +05:30 [Information] Request finished in 3098.8685ms 200 application/json; charset=utf-8 +2017-07-28 10:51:04.273 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" completed keep alive response. +2017-07-28 10:51:48.196 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 10:51:48.197 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 10:51:48.198 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 10:51:51.246 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 10:51:51.284 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:51:51.285 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 10:51:51.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:51:51.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3092.2604ms +2017-07-28 10:51:51.299 +05:30 [Information] Request finished in 3101.5577ms 200 application/json; charset=utf-8 +2017-07-28 10:51:51.299 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" completed keep alive response. +2017-07-28 10:51:58.897 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/ForgotPasswordSendMail application/x-www-form-urlencoded; charset=UTF-8 36 +2017-07-28 10:51:58.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ForgotPasswordSendMail"'. +2017-07-28 10:51:58.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" +2017-07-28 10:52:01.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" with arguments (["avinashverma@globussoft.in"]) - ModelState is Valid +2017-07-28 10:52:05.109 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 10:52:05.110 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 10:52:05.111 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-28 10:52:05.114 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 10:52:05.117 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" in 6210.8873ms +2017-07-28 10:52:05.144 +05:30 [Information] Request finished in 6236.8606ms 200 text/plain; charset=utf-8 +2017-07-28 10:52:05.146 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" completed keep alive response. +2017-07-28 10:52:25.834 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" received FIN. +2017-07-28 10:52:25.835 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" disconnecting. +2017-07-28 10:52:25.836 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" sending FIN. +2017-07-28 10:52:25.837 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" sent FIN with status "0". +2017-07-28 10:52:25.838 +05:30 [Debug] Connection id ""0HL6LF09GOPO0"" stopped. +2017-07-28 10:54:25.834 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" received FIN. +2017-07-28 10:54:25.836 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" received FIN. +2017-07-28 10:54:25.836 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" disconnecting. +2017-07-28 10:54:25.838 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" sending FIN. +2017-07-28 10:54:25.843 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" sent FIN with status "0". +2017-07-28 10:54:25.844 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" disconnecting. +2017-07-28 10:54:25.846 +05:30 [Debug] Connection id ""0HL6LF09GOPO4"" stopped. +2017-07-28 10:54:25.847 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" sending FIN. +2017-07-28 10:54:25.848 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" sent FIN with status "0". +2017-07-28 10:54:25.849 +05:30 [Debug] Connection id ""0HL6LF09GOPO2"" stopped. +2017-07-28 13:23:39.011 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" started. +2017-07-28 13:23:39.018 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 13:23:39.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 13:23:39.022 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d0f29eca-dadd-424a-963c-c83e046228c5"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 13:23:39.024 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 13:23:39.028 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 13:23:39.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 13:23:39.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:23:39.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:23:39.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:23:39.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 6.5153ms +2017-07-28 13:23:39.041 +05:30 [Information] Request finished in 27.2231ms 200 application/json; charset=utf-8 +2017-07-28 13:23:39.043 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" completed keep alive response. +2017-07-28 13:25:54.249 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" received FIN. +2017-07-28 13:25:54.251 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" started. +2017-07-28 13:25:54.251 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" disconnecting. +2017-07-28 13:25:54.252 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" sending FIN. +2017-07-28 13:25:54.252 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" sent FIN with status "0". +2017-07-28 13:25:54.253 +05:30 [Debug] Connection id ""0HL6LF09GOPO5"" stopped. +2017-07-28 13:25:54.256 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 13:25:54.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 13:25:54.257 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 13:25:57.310 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 13:25:57.479 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:25:57.480 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:25:57.481 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:25:57.483 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3223.0562ms +2017-07-28 13:25:57.486 +05:30 [Information] Request finished in 3230.3741ms 200 application/json; charset=utf-8 +2017-07-28 13:25:57.487 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" completed keep alive response. +2017-07-28 13:28:25.833 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" received FIN. +2017-07-28 13:28:25.835 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" disconnecting. +2017-07-28 13:28:25.837 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" sending FIN. +2017-07-28 13:28:25.837 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" sent FIN with status "0". +2017-07-28 13:28:25.838 +05:30 [Debug] Connection id ""0HL6LF09GOPO6"" stopped. +2017-07-28 13:36:42.110 +05:30 [Debug] Hosting starting +2017-07-28 13:36:42.537 +05:30 [Debug] Hosting started +2017-07-28 13:36:42.793 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" started. +2017-07-28 13:36:42.793 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" started. +2017-07-28 13:36:43.025 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-28 13:36:43.025 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 13:36:43.121 +05:30 [Information] Request finished in 120.9538ms 200 +2017-07-28 13:36:43.181 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:36:44.793 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 13:36:44.847 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"82891648-3f9f-488a-9d4e-16007a4e148c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 13:36:44.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 13:36:45.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 13:36:45.096 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 13:36:45.142 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:36:45.150 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:36:45.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:36:49.019 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 4051.9384ms +2017-07-28 13:36:49.089 +05:30 [Information] Request finished in 6129.6291ms 200 application/json; charset=utf-8 +2017-07-28 13:36:49.092 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:36:59.961 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 13:36:59.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 13:36:59.968 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 13:37:03.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4cf66679e453e"]) - ModelState is Valid +2017-07-28 13:37:03.643 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 13:37:03.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 13:37:03.646 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 13:37:06.769 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 13:37:07.885 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:07.892 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:07.894 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:07.929 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7925.1121ms +2017-07-28 13:37:07.933 +05:30 [Information] Request finished in 7970.9013ms 200 application/json; charset=utf-8 +2017-07-28 13:37:07.937 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:37:08.343 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:08.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:08.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:08.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4836.1801ms +2017-07-28 13:37:08.489 +05:30 [Information] Request finished in 4846.7871ms 200 application/json; charset=utf-8 +2017-07-28 13:37:08.489 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:37:08.750 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 13:37:08.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 13:37:08.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 13:37:11.814 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 13:37:11.911 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:11.912 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:11.913 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:11.950 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3196.7392ms +2017-07-28 13:37:11.952 +05:30 [Information] Request finished in 3202.0247ms 200 application/json; charset=utf-8 +2017-07-28 13:37:11.953 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:37:14.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 13:37:14.271 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 13:37:14.272 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 13:37:14.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 13:37:14.274 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 13:37:14.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 13:37:14.831 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" started. +2017-07-28 13:37:14.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 13:37:14.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 13:37:14.840 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 13:37:15.729 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" started. +2017-07-28 13:37:15.730 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 13:37:15.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 13:37:15.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 13:37:17.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:37:17.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:37:17.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:17.828 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:37:17.829 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:17.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:17.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3568.3341ms +2017-07-28 13:37:17.886 +05:30 [Information] Request finished in 3616.4739ms 200 application/json; charset=utf-8 +2017-07-28 13:37:17.888 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:37:17.923 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:17.924 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:37:17.924 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:17.925 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:17.928 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3652.6907ms +2017-07-28 13:37:17.931 +05:30 [Information] Request finished in 3661.7083ms 200 application/json; charset=utf-8 +2017-07-28 13:37:17.931 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:37:18.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:37:18.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 13:37:19.157 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:19.158 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:37:19.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:19.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:19.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:19.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:19.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:19.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3435.8197ms +2017-07-28 13:37:19.177 +05:30 [Information] Request finished in 3444.6207ms 200 application/json; charset=utf-8 +2017-07-28 13:37:19.178 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" completed keep alive response. +2017-07-28 13:37:19.265 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4421.0032ms +2017-07-28 13:37:19.270 +05:30 [Information] Request finished in 4431.1497ms 200 application/json; charset=utf-8 +2017-07-28 13:37:19.271 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" completed keep alive response. +2017-07-28 13:37:43.117 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-28 13:37:43.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-28 13:37:43.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-28 13:37:46.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:37:46.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:46.259 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:46.260 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:46.262 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3141.5308ms +2017-07-28 13:37:46.265 +05:30 [Information] Request finished in 3152.5162ms 200 application/json; charset=utf-8 +2017-07-28 13:37:46.267 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:37:46.303 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-28 13:37:46.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-28 13:37:46.306 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-28 13:37:49.369 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:37:49.431 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:37:49.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:37:49.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:37:49.434 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3126.6793ms +2017-07-28 13:37:49.437 +05:30 [Information] Request finished in 3141.1561ms 200 application/json; charset=utf-8 +2017-07-28 13:37:49.437 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:37:56.631 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 211 +2017-07-28 13:37:56.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-07-28 13:37:56.634 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-07-28 13:37:59.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAJP2Ys4VVlUZAeJgagQ54KY9SaxLllmndvS9xLwqLeQTq3YOZCZCO8p4g0fHztwZBdsbruhGv1OZC2m2bh1J22LYBZBYIeeG8YQazZB5vgJT5l3i1ZBueWNtA83oAb5xlpy7EdhjOhY22xnmaJoWQV9AJE3mZBhIu1gZDZD", "1", "1"]) - ModelState is Valid +2017-07-28 13:38:01.560 +05:30 [Error] {"id":"187231345114052","birthday":"12/17/1993","cover":{"id":"118538431983344","offset_x":40,"offset_y":0,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/15823608_118538431983344_5000271662632656929_n.jpg?oh=008b52e566592c3e28a81b48611e4c08&oe=59EFA6C6"},"email":"soumyapanda@globussoft.in","gender":"male","name":"Soumya Panda"} +2017-07-28 13:38:01.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:01.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:01.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:01.736 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 5099.7352ms +2017-07-28 13:38:01.738 +05:30 [Information] Request finished in 5107.3891ms 200 application/json; charset=utf-8 +2017-07-28 13:38:01.739 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" completed keep alive response. +2017-07-28 13:38:01.796 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 13:38:01.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 13:38:01.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 13:38:04.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:38:04.852 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:04.853 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:04.854 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:04.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.6326ms +2017-07-28 13:38:04.858 +05:30 [Information] Request finished in 3062.9228ms 200 application/json; charset=utf-8 +2017-07-28 13:38:04.859 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" completed keep alive response. +2017-07-28 13:38:04.871 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 13:38:04.873 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 13:38:04.876 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 13:38:07.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:38:07.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:07.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:07.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:07.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3076.6143ms +2017-07-28 13:38:07.961 +05:30 [Information] Request finished in 3091.6599ms 200 application/json; charset=utf-8 +2017-07-28 13:38:07.962 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:38:07.979 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 13:38:07.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 13:38:07.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 13:38:11.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 13:38:11.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:11.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:11.043 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:11.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3062.0256ms +2017-07-28 13:38:11.050 +05:30 [Information] Request finished in 3082.5973ms 200 application/json; charset=utf-8 +2017-07-28 13:38:11.051 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:38:12.267 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 13:38:12.269 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 13:38:12.270 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 13:38:12.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 13:38:12.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 13:38:12.275 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 13:38:12.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 13:38:12.798 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 13:38:12.798 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 13:38:13.448 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 13:38:13.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 13:38:13.452 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 13:38:15.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:38:15.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:38:15.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:15.396 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:38:15.396 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:15.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:15.428 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:15.430 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:38:15.432 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:15.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3156.6797ms +2017-07-28 13:38:15.433 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:15.437 +05:30 [Information] Request finished in 3190.3219ms 200 application/json; charset=utf-8 +2017-07-28 13:38:15.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3160.866ms +2017-07-28 13:38:15.439 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" completed keep alive response. +2017-07-28 13:38:15.461 +05:30 [Information] Request finished in 3213.3415ms 200 application/json; charset=utf-8 +2017-07-28 13:38:15.462 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" completed keep alive response. +2017-07-28 13:38:15.888 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 13:38:16.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:16.081 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 13:38:16.081 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:16.082 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:16.085 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3284.579ms +2017-07-28 13:38:16.087 +05:30 [Information] Request finished in 3290.4041ms 200 application/json; charset=utf-8 +2017-07-28 13:38:16.088 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" completed keep alive response. +2017-07-28 13:38:16.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:38:16.524 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:16.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:16.526 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:16.528 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3074.3445ms +2017-07-28 13:38:16.545 +05:30 [Information] Request finished in 3097.381ms 200 application/json; charset=utf-8 +2017-07-28 13:38:16.546 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" completed keep alive response. +2017-07-28 13:38:16.554 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 13:38:16.555 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 13:38:16.556 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 13:38:19.606 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 13:38:19.638 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:38:19.638 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:38:19.640 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:38:19.643 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3084.3904ms +2017-07-28 13:38:19.645 +05:30 [Information] Request finished in 3091.1117ms 200 application/json; charset=utf-8 +2017-07-28 13:38:19.646 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" completed keep alive response. +2017-07-28 13:40:42.776 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" received FIN. +2017-07-28 13:40:42.777 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" received FIN. +2017-07-28 13:40:42.779 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" received FIN. +2017-07-28 13:40:42.777 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" received FIN. +2017-07-28 13:40:42.781 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" disconnecting. +2017-07-28 13:40:42.784 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" sending FIN. +2017-07-28 13:40:42.777 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" disconnecting. +2017-07-28 13:40:42.786 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" disconnecting. +2017-07-28 13:40:42.787 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" disconnecting. +2017-07-28 13:40:42.791 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" sending FIN. +2017-07-28 13:40:42.792 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" sending FIN. +2017-07-28 13:40:42.793 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" sending FIN. +2017-07-28 13:40:42.797 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" sent FIN with status "0". +2017-07-28 13:40:42.797 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" sent FIN with status "0". +2017-07-28 13:40:42.802 +05:30 [Debug] Connection id ""0HL6LHUAKL9C0"" stopped. +2017-07-28 13:40:42.802 +05:30 [Debug] Connection id ""0HL6LHUAKL9BU"" stopped. +2017-07-28 13:40:42.803 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" sent FIN with status "0". +2017-07-28 13:40:42.803 +05:30 [Debug] Connection id ""0HL6LHUAKL9C1"" stopped. +2017-07-28 13:40:42.802 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" sent FIN with status "0". +2017-07-28 13:40:42.804 +05:30 [Debug] Connection id ""0HL6LHUAKL9BV"" stopped. +2017-07-28 13:51:45.286 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" started. +2017-07-28 13:51:45.289 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 13:51:45.290 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 13:51:45.291 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 13:51:48.357 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:51:48.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:51:48.439 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:51:48.440 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:51:48.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3150.02ms +2017-07-28 13:51:48.445 +05:30 [Information] Request finished in 3157.0141ms 200 application/json; charset=utf-8 +2017-07-28 13:51:48.445 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" completed keep alive response. +2017-07-28 13:51:48.464 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-07-28 13:51:48.464 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-07-28 13:51:48.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-07-28 13:51:51.509 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["82", "8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:51:52.546 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-07-28 13:51:52.554 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-07-28 13:51:52.556 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 4087.8311ms +2017-07-28 13:51:52.562 +05:30 [Information] Request finished in 4095.8853ms 200 +2017-07-28 13:51:52.564 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" completed keep alive response. +2017-07-28 13:51:58.111 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 13:51:58.112 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 13:51:58.112 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 13:52:01.153 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 13:52:01.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:52:01.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:52:01.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:52:01.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.6804ms +2017-07-28 13:52:01.169 +05:30 [Information] Request finished in 3056.3545ms 200 application/json; charset=utf-8 +2017-07-28 13:52:01.169 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" completed keep alive response. +2017-07-28 13:52:03.771 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 13:52:03.773 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 13:52:03.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 13:52:06.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 13:52:06.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 13:52:06.973 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 13:52:06.975 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 13:52:06.982 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3202.6216ms +2017-07-28 13:52:06.985 +05:30 [Information] Request finished in 3218.6325ms 200 application/json; charset=utf-8 +2017-07-28 13:52:06.985 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" completed keep alive response. +2017-07-28 13:54:42.774 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" received FIN. +2017-07-28 13:54:42.774 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" disconnecting. +2017-07-28 13:54:42.775 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" sending FIN. +2017-07-28 13:54:42.775 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" sent FIN with status "0". +2017-07-28 13:54:42.776 +05:30 [Debug] Connection id ""0HL6LHUAKL9C2"" stopped. +2017-07-28 15:17:21.523 +05:30 [Debug] Hosting starting +2017-07-28 15:17:21.898 +05:30 [Debug] Hosting started +2017-07-28 15:17:21.943 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" started. +2017-07-28 15:17:21.943 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" started. +2017-07-28 15:17:22.175 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 15:17:22.175 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-28 15:17:22.296 +05:30 [Information] Request finished in 143.5896ms 200 +2017-07-28 15:17:22.419 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" completed keep alive response. +2017-07-28 15:17:24.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 15:17:24.212 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a55f674a-0923-4ee0-8ee8-c4968c726f1d"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 15:17:24.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 15:17:24.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 15:17:24.408 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 15:17:24.455 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:17:24.464 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:17:24.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:17:25.080 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 778.9177ms +2017-07-28 15:17:25.144 +05:30 [Information] Request finished in 3022.9488ms 200 application/json; charset=utf-8 +2017-07-28 15:17:25.147 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" completed keep alive response. +2017-07-28 15:17:25.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-28 15:17:25.302 +05:30 [Debug] Request did not match any routes. +2017-07-28 15:17:25.321 +05:30 [Debug] The request path "" does not match the path filter +2017-07-28 15:17:25.325 +05:30 [Information] Request finished in 25.9831ms 404 +2017-07-28 15:17:25.326 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" completed keep alive response. +2017-07-28 15:17:42.837 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:17:42.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:17:42.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:17:46.439 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d58faad1fa80"]) - ModelState is Valid +2017-07-28 15:17:55.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:17:55.484 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:17:55.485 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:17:55.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 12638.2749ms +2017-07-28 15:17:55.494 +05:30 [Information] Request finished in 12668.7148ms 200 application/json; charset=utf-8 +2017-07-28 15:17:55.496 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" completed keep alive response. +2017-07-28 15:18:01.549 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 15:18:01.551 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 15:18:01.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 15:18:03.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 15:18:04.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:18:04.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:18:04.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:18:04.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2906.2901ms +2017-07-28 15:18:04.462 +05:30 [Information] Request finished in 2915.3011ms 200 application/json; charset=utf-8 +2017-07-28 15:18:04.463 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" completed keep alive response. +2017-07-28 15:19:12.677 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" received FIN. +2017-07-28 15:19:12.683 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" disconnecting. +2017-07-28 15:19:12.677 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" received FIN. +2017-07-28 15:19:12.685 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" disconnecting. +2017-07-28 15:19:12.685 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" sending FIN. +2017-07-28 15:19:12.686 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" sending FIN. +2017-07-28 15:19:12.695 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" sent FIN with status "0". +2017-07-28 15:19:12.695 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" sent FIN with status "0". +2017-07-28 15:19:12.700 +05:30 [Debug] Connection id ""0HL6LJMIEFTS6"" stopped. +2017-07-28 15:19:12.701 +05:30 [Debug] Connection id ""0HL6LJMIEFTS5"" stopped. +2017-07-28 15:19:12.701 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" started. +2017-07-28 15:19:12.703 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 15:19:12.703 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 15:19:12.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 15:19:15.804 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 15:19:16.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:19:16.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:19:16.158 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:19:16.206 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3490.1876ms +2017-07-28 15:19:16.210 +05:30 [Information] Request finished in 3506.7211ms 200 application/json; charset=utf-8 +2017-07-28 15:19:16.211 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" completed keep alive response. +2017-07-28 15:19:31.779 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" started. +2017-07-28 15:19:31.782 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 15:19:31.783 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 15:19:31.785 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 15:19:31.786 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 15:19:31.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 15:19:31.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 15:19:32.286 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" started. +2017-07-28 15:19:32.287 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 15:19:32.288 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 15:19:32.290 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 15:19:34.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:19:34.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:19:35.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:19:35.030 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:19:35.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:19:35.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:19:35.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3252.071ms +2017-07-28 15:19:35.051 +05:30 [Information] Request finished in 3267.1068ms 200 application/json; charset=utf-8 +2017-07-28 15:19:35.053 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" completed keep alive response. +2017-07-28 15:19:35.119 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:19:35.119 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:19:35.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:19:35.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:19:35.126 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3332.7514ms +2017-07-28 15:19:35.134 +05:30 [Information] Request finished in 3353.5576ms 200 application/json; charset=utf-8 +2017-07-28 15:19:35.135 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" completed keep alive response. +2017-07-28 15:19:35.409 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:19:35.740 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:19:35.741 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:19:35.741 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:19:35.742 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:19:35.815 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3523.6121ms +2017-07-28 15:19:35.820 +05:30 [Information] Request finished in 3530.1265ms 200 application/json; charset=utf-8 +2017-07-28 15:19:35.821 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" completed keep alive response. +2017-07-28 15:19:47.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 15:19:47.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 15:19:47.038 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 15:19:49.135 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 15:19:49.213 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:19:49.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:19:49.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:19:49.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2179.4902ms +2017-07-28 15:19:49.221 +05:30 [Information] Request finished in 2185.366ms 200 application/json; charset=utf-8 +2017-07-28 15:19:49.221 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" completed keep alive response. +2017-07-28 15:21:19.710 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" received FIN. +2017-07-28 15:21:19.711 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" received FIN. +2017-07-28 15:21:19.713 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" started. +2017-07-28 15:21:19.746 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" received FIN. +2017-07-28 15:21:19.741 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" disconnecting. +2017-07-28 15:21:19.747 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" sending FIN. +2017-07-28 15:21:19.747 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" disconnecting. +2017-07-28 15:21:19.748 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" sent FIN with status "0". +2017-07-28 15:21:19.750 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" sending FIN. +2017-07-28 15:21:19.753 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" sent FIN with status "0". +2017-07-28 15:21:19.754 +05:30 [Debug] Connection id ""0HL6LJMIEFTS7"" stopped. +2017-07-28 15:21:19.751 +05:30 [Debug] Connection id ""0HL6LJMIEFTS8"" stopped. +2017-07-28 15:21:19.767 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" disconnecting. +2017-07-28 15:21:19.767 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" sending FIN. +2017-07-28 15:21:19.768 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" sent FIN with status "0". +2017-07-28 15:21:19.769 +05:30 [Debug] Connection id ""0HL6LJMIEFTS9"" stopped. +2017-07-28 15:21:19.767 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:21:19.770 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:21:19.772 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:21:22.829 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:21:22.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:22.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:22.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:22.835 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.2207ms +2017-07-28 15:21:22.838 +05:30 [Information] Request finished in 3082.0976ms 200 application/json; charset=utf-8 +2017-07-28 15:21:22.838 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:35.214 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:21:35.215 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:21:35.216 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:21:38.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:21:38.259 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:38.260 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:38.262 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:38.264 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.3832ms +2017-07-28 15:21:38.268 +05:30 [Information] Request finished in 3053.8768ms 200 application/json; charset=utf-8 +2017-07-28 15:21:38.269 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:38.335 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:21:38.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:21:38.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:21:41.384 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:21:41.388 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:41.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:41.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:41.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.65ms +2017-07-28 15:21:41.394 +05:30 [Information] Request finished in 3059.2719ms 200 application/json; charset=utf-8 +2017-07-28 15:21:41.395 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:41.407 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 15:21:41.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 15:21:41.410 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 15:21:44.460 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:21:44.466 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:44.466 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:44.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:44.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3056.375ms +2017-07-28 15:21:44.471 +05:30 [Information] Request finished in 3064.3124ms 200 application/json; charset=utf-8 +2017-07-28 15:21:44.471 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:44.484 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 15:21:44.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 15:21:44.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 15:21:51.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 15:21:51.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:51.700 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:51.701 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:51.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 7216.5048ms +2017-07-28 15:21:51.706 +05:30 [Information] Request finished in 7223.003ms 200 application/json; charset=utf-8 +2017-07-28 15:21:51.707 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:53.423 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" started. +2017-07-28 15:21:53.425 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 15:21:53.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 15:21:53.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 15:21:53.427 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 15:21:53.431 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 15:21:53.432 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 15:21:53.860 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" started. +2017-07-28 15:21:53.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 15:21:53.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 15:21:53.863 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 15:21:54.528 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" started. +2017-07-28 15:21:54.529 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:21:54.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:21:54.564 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:21:56.691 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:21:56.707 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:56.708 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:21:56.708 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:56.729 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:56.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:21:56.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3299.3348ms +2017-07-28 15:21:56.813 +05:30 [Information] Request finished in 3386.7133ms 200 application/json; charset=utf-8 +2017-07-28 15:21:56.814 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:21:56.859 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:56.859 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:21:56.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:56.861 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:56.865 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3429.753ms +2017-07-28 15:21:56.873 +05:30 [Information] Request finished in 3442.5898ms 200 application/json; charset=utf-8 +2017-07-28 15:21:56.874 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" completed keep alive response. +2017-07-28 15:21:56.915 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:21:57.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:57.107 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:21:57.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:57.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:57.112 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3245.7639ms +2017-07-28 15:21:57.114 +05:30 [Information] Request finished in 3252.3511ms 200 application/json; charset=utf-8 +2017-07-28 15:21:57.115 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" completed keep alive response. +2017-07-28 15:21:57.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:21:57.657 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:21:57.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:21:57.659 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:21:57.660 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3094.85ms +2017-07-28 15:21:57.663 +05:30 [Information] Request finished in 3133.5113ms 200 application/json; charset=utf-8 +2017-07-28 15:21:57.664 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" completed keep alive response. +2017-07-28 15:21:57.671 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 15:21:57.672 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 15:21:57.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 15:22:00.742 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 15:22:00.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:22:00.778 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:22:00.780 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:22:00.783 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3107.2663ms +2017-07-28 15:22:00.786 +05:30 [Information] Request finished in 3115.2278ms 200 application/json; charset=utf-8 +2017-07-28 15:22:00.787 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" completed keep alive response. +2017-07-28 15:22:15.964 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:22:15.966 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:22:15.967 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:22:18.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:22:18.163 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:22:18.164 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:22:18.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:22:18.168 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2198.701ms +2017-07-28 15:22:18.172 +05:30 [Information] Request finished in 2207.8418ms 200 application/json; charset=utf-8 +2017-07-28 15:22:18.173 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" completed keep alive response. +2017-07-28 15:22:29.908 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:22:29.909 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:22:29.910 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:22:32.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:22:32.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:22:32.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:22:32.269 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:22:32.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2359.4423ms +2017-07-28 15:22:32.276 +05:30 [Information] Request finished in 2367.6488ms 200 application/json; charset=utf-8 +2017-07-28 15:22:32.276 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" completed keep alive response. +2017-07-28 15:23:21.927 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" received FIN. +2017-07-28 15:23:21.927 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" received FIN. +2017-07-28 15:23:21.937 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" received FIN. +2017-07-28 15:23:21.937 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" disconnecting. +2017-07-28 15:23:21.928 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" disconnecting. +2017-07-28 15:23:21.949 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" sending FIN. +2017-07-28 15:23:21.950 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" sent FIN with status "0". +2017-07-28 15:23:21.953 +05:30 [Debug] Connection id ""0HL6LJMIEFTSA"" stopped. +2017-07-28 15:23:21.953 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" sending FIN. +2017-07-28 15:23:21.956 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" sent FIN with status "0". +2017-07-28 15:23:21.954 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" disconnecting. +2017-07-28 15:23:21.956 +05:30 [Debug] Connection id ""0HL6LJMIEFTSD"" stopped. +2017-07-28 15:23:21.960 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" sending FIN. +2017-07-28 15:23:21.961 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" sent FIN with status "0". +2017-07-28 15:23:21.962 +05:30 [Debug] Connection id ""0HL6LJMIEFTSB"" stopped. +2017-07-28 15:25:21.931 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" received FIN. +2017-07-28 15:25:21.939 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" disconnecting. +2017-07-28 15:25:21.940 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" sending FIN. +2017-07-28 15:25:21.940 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" sent FIN with status "0". +2017-07-28 15:25:21.941 +05:30 [Debug] Connection id ""0HL6LJMIEFTSC"" stopped. +2017-07-28 15:29:13.442 +05:30 [Debug] Hosting starting +2017-07-28 15:29:13.692 +05:30 [Debug] Hosting started +2017-07-28 15:29:13.924 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" started. +2017-07-28 15:29:13.925 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" started. +2017-07-28 15:29:14.189 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 15:29:14.183 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-28 15:29:14.272 +05:30 [Information] Request finished in 147.6803ms 200 +2017-07-28 15:29:14.338 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" completed keep alive response. +2017-07-28 15:29:15.047 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 15:29:15.119 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"73a793ca-24b4-4c74-b212-1eee6a97b466"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 15:29:15.480 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 15:29:15.656 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 15:29:15.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 15:29:15.742 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:29:15.751 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:29:15.765 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:29:16.162 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 653.2037ms +2017-07-28 15:29:16.273 +05:30 [Information] Request finished in 2166.2115ms 200 application/json; charset=utf-8 +2017-07-28 15:29:16.276 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" completed keep alive response. +2017-07-28 15:29:43.036 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:29:43.037 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:29:43.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:29:46.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:29:51.074 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:29:51.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:29:51.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:29:51.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8220.3207ms +2017-07-28 15:29:51.264 +05:30 [Information] Request finished in 8229.1095ms 200 application/json; charset=utf-8 +2017-07-28 15:29:51.265 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" completed keep alive response. +2017-07-28 15:29:51.640 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-28 15:29:51.641 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-28 15:29:51.642 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-28 15:29:54.765 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 15:29:54.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:29:54.824 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:29:54.825 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:29:54.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3258.9307ms +2017-07-28 15:29:54.912 +05:30 [Information] Request finished in 3269.7238ms 200 application/json; charset=utf-8 +2017-07-28 15:29:54.914 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" completed keep alive response. +2017-07-28 15:31:13.851 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" received FIN. +2017-07-28 15:31:13.852 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" received FIN. +2017-07-28 15:31:13.856 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" disconnecting. +2017-07-28 15:31:13.855 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" disconnecting. +2017-07-28 15:31:13.859 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" sending FIN. +2017-07-28 15:31:13.859 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" sending FIN. +2017-07-28 15:31:13.871 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" sent FIN with status "0". +2017-07-28 15:31:13.871 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" sent FIN with status "0". +2017-07-28 15:31:13.877 +05:30 [Debug] Connection id ""0HL6LJT6K15C9"" stopped. +2017-07-28 15:31:13.877 +05:30 [Debug] Connection id ""0HL6LJT6K15C8"" stopped. +2017-07-28 15:32:38.153 +05:30 [Debug] Hosting starting +2017-07-28 15:32:38.446 +05:30 [Debug] Hosting started +2017-07-28 15:32:38.554 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" started. +2017-07-28 15:32:38.554 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" started. +2017-07-28 15:32:38.826 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-28 15:32:38.838 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-28 15:32:38.948 +05:30 [Information] Request finished in 187.0922ms 200 +2017-07-28 15:32:39.106 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" completed keep alive response. +2017-07-28 15:32:40.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-28 15:32:40.274 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b6f48502-a193-4e98-a5d7-7b6ca1663cff"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-28 15:32:40.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-28 15:32:40.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-28 15:32:40.600 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-28 15:32:40.661 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:32:40.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:32:40.706 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:32:41.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 750.5049ms +2017-07-28 15:32:41.288 +05:30 [Information] Request finished in 2559.1303ms 200 application/json; charset=utf-8 +2017-07-28 15:32:41.291 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:33:03.637 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:33:03.638 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:33:03.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:33:07.174 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:33:14.185 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:33:14.192 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:33:14.193 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:33:14.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10666.5861ms +2017-07-28 15:33:14.319 +05:30 [Information] Request finished in 10682.1399ms 200 application/json; charset=utf-8 +2017-07-28 15:33:14.320 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" completed keep alive response. +2017-07-28 15:33:14.831 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-28 15:33:14.833 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-28 15:33:14.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-28 15:33:18.004 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 15:33:18.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:33:18.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:33:18.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:33:18.154 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3301.8373ms +2017-07-28 15:33:18.157 +05:30 [Information] Request finished in 3332.6497ms 200 application/json; charset=utf-8 +2017-07-28 15:33:18.158 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:33:43.390 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:33:43.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:33:43.420 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:33:46.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:33:46.559 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:33:46.560 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:33:46.562 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:33:46.564 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3142.0181ms +2017-07-28 15:33:46.567 +05:30 [Information] Request finished in 3183.6229ms 200 application/json; charset=utf-8 +2017-07-28 15:33:46.568 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" completed keep alive response. +2017-07-28 15:33:59.787 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:33:59.788 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:33:59.788 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:34:02.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:34:02.868 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:02.869 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:02.871 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:02.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3084.4545ms +2017-07-28 15:34:02.879 +05:30 [Information] Request finished in 3091.1612ms 200 application/json; charset=utf-8 +2017-07-28 15:34:02.881 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:34:02.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 15:34:02.929 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 15:34:02.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 15:34:05.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:34:05.982 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:05.982 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:05.984 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:05.987 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3053.3027ms +2017-07-28 15:34:05.994 +05:30 [Information] Request finished in 3067.4095ms 200 application/json; charset=utf-8 +2017-07-28 15:34:05.997 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" completed keep alive response. +2017-07-28 15:34:06.022 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 15:34:06.024 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 15:34:06.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 15:34:09.095 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 15:34:09.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:09.198 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:09.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:09.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3210.9797ms +2017-07-28 15:34:09.243 +05:30 [Information] Request finished in 3220.9623ms 200 application/json; charset=utf-8 +2017-07-28 15:34:09.244 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:34:11.594 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 15:34:11.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 15:34:11.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 15:34:11.654 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 15:34:11.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 15:34:11.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 15:34:12.128 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" started. +2017-07-28 15:34:12.131 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 15:34:12.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 15:34:12.133 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 15:34:13.052 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" started. +2017-07-28 15:34:13.056 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:34:13.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:34:13.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:34:13.808 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:34:13.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:13.888 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:34:13.889 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:13.894 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:13.921 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2315.8143ms +2017-07-28 15:34:13.924 +05:30 [Information] Request finished in 2338.0273ms 200 application/json; charset=utf-8 +2017-07-28 15:34:13.925 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:34:14.784 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:34:14.855 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:14.856 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:34:14.856 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:14.858 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:14.860 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3177.5829ms +2017-07-28 15:34:14.863 +05:30 [Information] Request finished in 3274.9401ms 200 application/json; charset=utf-8 +2017-07-28 15:34:14.863 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" completed keep alive response. +2017-07-28 15:34:15.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:34:15.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:15.296 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:15.323 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:15.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2266.1506ms +2017-07-28 15:34:15.328 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:34:15.329 +05:30 [Information] Request finished in 2274.7319ms 200 application/json; charset=utf-8 +2017-07-28 15:34:15.330 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" completed keep alive response. +2017-07-28 15:34:15.349 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 15:34:15.350 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 15:34:15.353 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 15:34:15.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:15.625 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:34:15.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:15.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:15.706 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3566.3857ms +2017-07-28 15:34:15.710 +05:30 [Information] Request finished in 3578.4332ms 200 application/json; charset=utf-8 +2017-07-28 15:34:15.711 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" completed keep alive response. +2017-07-28 15:34:17.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 15:34:17.719 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:34:17.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:34:17.722 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:34:17.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2368.4093ms +2017-07-28 15:34:17.733 +05:30 [Information] Request finished in 2381.5788ms 200 application/json; charset=utf-8 +2017-07-28 15:34:17.733 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" completed keep alive response. +2017-07-28 15:36:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" received FIN. +2017-07-28 15:36:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" received FIN. +2017-07-28 15:36:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" received FIN. +2017-07-28 15:36:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" received FIN. +2017-07-28 15:36:38.532 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" disconnecting. +2017-07-28 15:36:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" sending FIN. +2017-07-28 15:36:38.555 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" sent FIN with status "0". +2017-07-28 15:36:38.562 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" disconnecting. +2017-07-28 15:36:38.562 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" sending FIN. +2017-07-28 15:36:38.563 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" sent FIN with status "0". +2017-07-28 15:36:38.561 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" disconnecting. +2017-07-28 15:36:38.564 +05:30 [Debug] Connection id ""0HL6LJV3JSFM2"" stopped. +2017-07-28 15:36:38.566 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" sending FIN. +2017-07-28 15:36:38.564 +05:30 [Debug] Connection id ""0HL6LJV3JSFM1"" stopped. +2017-07-28 15:36:38.566 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" sent FIN with status "0". +2017-07-28 15:36:38.567 +05:30 [Debug] Connection id ""0HL6LJV3JSFLV"" stopped. +2017-07-28 15:36:38.561 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" disconnecting. +2017-07-28 15:36:38.568 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" sending FIN. +2017-07-28 15:36:38.569 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" sent FIN with status "0". +2017-07-28 15:36:38.569 +05:30 [Debug] Connection id ""0HL6LJV3JSFM0"" stopped. +2017-07-28 15:47:05.805 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" started. +2017-07-28 15:47:05.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-28 15:47:05.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-28 15:47:05.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-28 15:47:08.853 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:47:08.958 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:47:08.959 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:47:08.960 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:47:08.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3150.4242ms +2017-07-28 15:47:08.966 +05:30 [Information] Request finished in 3157.1313ms 200 application/json; charset=utf-8 +2017-07-28 15:47:08.967 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" completed keep alive response. +2017-07-28 15:47:21.198 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-28 15:47:21.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-28 15:47:21.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-28 15:47:24.234 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:47:24.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:47:24.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:47:24.297 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:47:24.299 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3096.4212ms +2017-07-28 15:47:24.305 +05:30 [Information] Request finished in 3111.9158ms 200 application/json; charset=utf-8 +2017-07-28 15:47:24.306 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" completed keep alive response. +2017-07-28 15:48:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" received FIN. +2017-07-28 15:48:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" disconnecting. +2017-07-28 15:48:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" sending FIN. +2017-07-28 15:48:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" sent FIN with status "0". +2017-07-28 15:48:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFM3"" stopped. +2017-07-28 15:52:31.020 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" started. +2017-07-28 15:52:31.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Facebook/AddFacebookAccount application/x-www-form-urlencoded 214 +2017-07-28 15:52:31.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Facebook/AddFacebookAccount"'. +2017-07-28 15:52:31.068 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" +2017-07-28 15:52:34.163 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" with arguments (["EAAKYvwDVmnUBAEl2J7vH0ZCFOxwVWPw7n3lvdWC9dluZAtrryxtyUhMwaKZBDnon6mRYO5aNoMk2ZAZAxmnIQXqejzUHZCn51kRRrs4ZAZCLNDmykZB4CZBTSh2AeF30xqtYCJzsQZBa0OyGENZBbaPEq9zoWXtPbK0YbzwSd7qCrxRelQZDZD", "1", "1"]) - ModelState is Valid +2017-07-28 15:52:35.160 +05:30 [Error] {"id":"187231345114052","birthday":"12/17/1993","cover":{"id":"118538431983344","offset_x":40,"offset_y":0,"source":"https://scontent.xx.fbcdn.net/v/t1.0-9/s720x720/15823608_118538431983344_5000271662632656929_n.jpg?oh=008b52e566592c3e28a81b48611e4c08&oe=59EFA6C6"},"email":"soumyapanda@globussoft.in","gender":"male","name":"Soumya Panda"} +2017-07-28 15:52:35.398 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:35.399 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:35.401 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:35.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.FacebookController.AddFacebookAccount (Api.Socioboard)" in 4333.7707ms +2017-07-28 15:52:35.406 +05:30 [Information] Request finished in 4384.5451ms 200 application/json; charset=utf-8 +2017-07-28 15:52:35.407 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" completed keep alive response. +2017-07-28 15:52:35.491 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:52:35.493 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:52:35.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:52:38.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:52:38.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:38.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:38.580 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:38.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3084.4806ms +2017-07-28 15:52:38.586 +05:30 [Information] Request finished in 3094.6649ms 200 application/json; charset=utf-8 +2017-07-28 15:52:38.590 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" completed keep alive response. +2017-07-28 15:52:38.598 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 15:52:38.599 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 15:52:38.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 15:52:40.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:52:40.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:40.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:40.718 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:40.725 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2118.4001ms +2017-07-28 15:52:40.728 +05:30 [Information] Request finished in 2130.5042ms 200 application/json; charset=utf-8 +2017-07-28 15:52:40.729 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" completed keep alive response. +2017-07-28 15:52:40.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 15:52:40.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 15:52:40.736 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 15:52:43.791 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 15:52:43.800 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:43.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:43.802 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:43.804 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3066.5202ms +2017-07-28 15:52:43.807 +05:30 [Information] Request finished in 3071.8762ms 200 application/json; charset=utf-8 +2017-07-28 15:52:43.807 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" completed keep alive response. +2017-07-28 15:52:45.845 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" started. +2017-07-28 15:52:45.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 15:52:45.848 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 15:52:45.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 15:52:45.849 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 15:52:45.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 15:52:45.849 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 15:52:46.206 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" started. +2017-07-28 15:52:46.246 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 15:52:46.249 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 15:52:46.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 15:52:46.931 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" started. +2017-07-28 15:52:46.933 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 15:52:46.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 15:52:46.934 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 15:52:48.030 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:52:48.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:48.108 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:52:48.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:48.110 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:48.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2260.2507ms +2017-07-28 15:52:48.116 +05:30 [Information] Request finished in 2268.5807ms 200 application/json; charset=utf-8 +2017-07-28 15:52:48.116 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" completed keep alive response. +2017-07-28 15:52:48.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:52:48.990 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:48.991 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:52:48.991 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:48.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:49.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3146.6636ms +2017-07-28 15:52:49.003 +05:30 [Information] Request finished in 3156.9356ms 200 application/json; charset=utf-8 +2017-07-28 15:52:49.004 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" completed keep alive response. +2017-07-28 15:52:49.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 15:52:49.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:49.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:49.104 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:49.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2170.467ms +2017-07-28 15:52:49.109 +05:30 [Information] Request finished in 2176.2239ms 200 application/json; charset=utf-8 +2017-07-28 15:52:49.110 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" completed keep alive response. +2017-07-28 15:52:49.137 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 15:52:49.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 15:52:49.139 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 15:52:49.393 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 15:52:49.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:49.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 15:52:49.590 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:49.592 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:49.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3341.2379ms +2017-07-28 15:52:49.599 +05:30 [Information] Request finished in 3387.0474ms 200 application/json; charset=utf-8 +2017-07-28 15:52:49.599 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" completed keep alive response. +2017-07-28 15:52:52.170 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 15:52:52.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 15:52:52.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 15:52:52.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 15:52:52.215 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3075.3448ms +2017-07-28 15:52:52.218 +05:30 [Information] Request finished in 3093.0192ms 200 application/json; charset=utf-8 +2017-07-28 15:52:52.219 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" completed keep alive response. +2017-07-28 15:54:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" received FIN. +2017-07-28 15:54:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" received FIN. +2017-07-28 15:54:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" disconnecting. +2017-07-28 15:54:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" sending FIN. +2017-07-28 15:54:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" disconnecting. +2017-07-28 15:54:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" received FIN. +2017-07-28 15:54:38.532 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" received FIN. +2017-07-28 15:54:38.532 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" disconnecting. +2017-07-28 15:54:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" sending FIN. +2017-07-28 15:54:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" sent FIN with status "0". +2017-07-28 15:54:38.536 +05:30 [Debug] Connection id ""0HL6LJV3JSFM4"" stopped. +2017-07-28 15:54:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" sending FIN. +2017-07-28 15:54:38.538 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" sent FIN with status "0". +2017-07-28 15:54:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFM6"" stopped. +2017-07-28 15:54:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" sent FIN with status "0". +2017-07-28 15:54:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" disconnecting. +2017-07-28 15:54:38.544 +05:30 [Debug] Connection id ""0HL6LJV3JSFM7"" stopped. +2017-07-28 15:54:38.545 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" sending FIN. +2017-07-28 15:54:38.545 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" sent FIN with status "0". +2017-07-28 15:54:38.546 +05:30 [Debug] Connection id ""0HL6LJV3JSFM5"" stopped. +2017-07-28 16:01:38.169 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" started. +2017-07-28 16:01:38.171 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-28 16:01:38.172 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-28 16:01:38.172 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-28 16:01:41.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:01:41.330 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:01:41.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:01:41.331 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:01:41.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3158.4403ms +2017-07-28 16:01:41.336 +05:30 [Information] Request finished in 3164.3194ms 200 application/json; charset=utf-8 +2017-07-28 16:01:41.337 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" completed keep alive response. +2017-07-28 16:01:44.977 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-28 16:01:44.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-28 16:01:44.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-28 16:01:48.052 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:01:48.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:01:48.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:01:48.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:01:48.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3140.6551ms +2017-07-28 16:01:48.122 +05:30 [Information] Request finished in 3145.4142ms 200 application/json; charset=utf-8 +2017-07-28 16:01:48.122 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" completed keep alive response. +2017-07-28 16:03:58.689 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" received FIN. +2017-07-28 16:03:58.709 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" started. +2017-07-28 16:03:58.732 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" disconnecting. +2017-07-28 16:03:58.740 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" sending FIN. +2017-07-28 16:03:58.743 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" sent FIN with status "0". +2017-07-28 16:03:58.744 +05:30 [Debug] Connection id ""0HL6LJV3JSFM8"" stopped. +2017-07-28 16:03:58.765 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:03:58.768 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:03:58.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:04:01.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:04:01.981 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:01.983 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:01.985 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:01.988 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3208.1378ms +2017-07-28 16:04:01.992 +05:30 [Information] Request finished in 3243.7735ms 200 application/json; charset=utf-8 +2017-07-28 16:04:01.993 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" completed keep alive response. +2017-07-28 16:04:03.333 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:04:03.333 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:04:03.334 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:04:05.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:04:05.442 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:05.443 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:05.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:05.451 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2114.2323ms +2017-07-28 16:04:05.456 +05:30 [Information] Request finished in 2123.5339ms 200 application/json; charset=utf-8 +2017-07-28 16:04:05.462 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" completed keep alive response. +2017-07-28 16:04:05.500 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:04:05.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:04:05.504 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:04:07.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:04:07.605 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:07.605 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:07.606 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:07.608 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2101.5359ms +2017-07-28 16:04:07.611 +05:30 [Information] Request finished in 2115.8078ms 200 application/json; charset=utf-8 +2017-07-28 16:04:07.612 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" completed keep alive response. +2017-07-28 16:04:07.617 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:04:07.618 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:04:07.618 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:04:10.673 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:04:10.683 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:10.684 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:10.685 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:10.689 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3068.496ms +2017-07-28 16:04:10.693 +05:30 [Information] Request finished in 3076.2758ms 200 application/json; charset=utf-8 +2017-07-28 16:04:10.694 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" completed keep alive response. +2017-07-28 16:04:12.030 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" started. +2017-07-28 16:04:12.038 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:04:12.039 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:04:12.039 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:04:12.039 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:04:12.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:04:12.041 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:04:12.584 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" started. +2017-07-28 16:04:12.586 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 16:04:12.587 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 16:04:12.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 16:04:13.289 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" started. +2017-07-28 16:04:13.296 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:04:13.297 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:04:13.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:04:15.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:04:15.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:15.170 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:04:15.171 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:15.172 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:15.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3131.4024ms +2017-07-28 16:04:15.220 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:04:15.220 +05:30 [Information] Request finished in 3167.9118ms 200 application/json; charset=utf-8 +2017-07-28 16:04:15.248 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" completed keep alive response. +2017-07-28 16:04:15.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:15.284 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:04:15.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:15.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:15.289 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3246.7094ms +2017-07-28 16:04:15.291 +05:30 [Information] Request finished in 3259.1704ms 200 application/json; charset=utf-8 +2017-07-28 16:04:15.292 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" completed keep alive response. +2017-07-28 16:04:15.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:04:15.928 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:15.930 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:04:15.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:15.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:15.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3352.0208ms +2017-07-28 16:04:15.948 +05:30 [Information] Request finished in 3360.9169ms 200 application/json; charset=utf-8 +2017-07-28 16:04:15.948 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" completed keep alive response. +2017-07-28 16:04:16.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:04:16.458 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:16.458 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:16.459 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:16.460 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3161.4487ms +2017-07-28 16:04:16.463 +05:30 [Information] Request finished in 3170.8987ms 200 application/json; charset=utf-8 +2017-07-28 16:04:16.463 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" completed keep alive response. +2017-07-28 16:04:16.469 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 16:04:16.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 16:04:16.471 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 16:04:19.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 16:04:19.551 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:04:19.552 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:04:19.553 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:04:19.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3082.5482ms +2017-07-28 16:04:19.563 +05:30 [Information] Request finished in 3091.6323ms 200 application/json; charset=utf-8 +2017-07-28 16:04:19.564 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" completed keep alive response. +2017-07-28 16:06:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" received FIN. +2017-07-28 16:06:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" received FIN. +2017-07-28 16:06:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" disconnecting. +2017-07-28 16:06:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" disconnecting. +2017-07-28 16:06:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" received FIN. +2017-07-28 16:06:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" received FIN. +2017-07-28 16:06:38.536 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" sending FIN. +2017-07-28 16:06:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" disconnecting. +2017-07-28 16:06:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" sending FIN. +2017-07-28 16:06:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" disconnecting. +2017-07-28 16:06:38.544 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" sent FIN with status "0". +2017-07-28 16:06:38.545 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" sent FIN with status "0". +2017-07-28 16:06:38.547 +05:30 [Debug] Connection id ""0HL6LJV3JSFMC"" stopped. +2017-07-28 16:06:38.547 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" sending FIN. +2017-07-28 16:06:38.546 +05:30 [Debug] Connection id ""0HL6LJV3JSFM9"" stopped. +2017-07-28 16:06:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" sent FIN with status "0". +2017-07-28 16:06:38.549 +05:30 [Debug] Connection id ""0HL6LJV3JSFMA"" stopped. +2017-07-28 16:06:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" sending FIN. +2017-07-28 16:06:38.550 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" sent FIN with status "0". +2017-07-28 16:06:38.551 +05:30 [Debug] Connection id ""0HL6LJV3JSFMB"" stopped. +2017-07-28 16:10:00.723 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" started. +2017-07-28 16:10:00.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-07-28 16:10:00.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-07-28 16:10:00.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-07-28 16:10:03.793 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:10:03.883 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:03.884 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:03.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:03.894 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3160.5644ms +2017-07-28 16:10:03.899 +05:30 [Information] Request finished in 3172.9483ms 200 application/json; charset=utf-8 +2017-07-28 16:10:03.900 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:03.907 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-07-28 16:10:03.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-07-28 16:10:03.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-07-28 16:10:06.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:10:07.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:07.030 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:07.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:07.035 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3122.7033ms +2017-07-28 16:10:07.038 +05:30 [Information] Request finished in 3130.5459ms 200 application/json; charset=utf-8 +2017-07-28 16:10:07.038 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:35.155 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Pinterest/AddPinterestAccount application/x-www-form-urlencoded 40 +2017-07-28 16:10:35.157 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/AddPinterestAccount"'. +2017-07-28 16:10:35.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.AddPinterestAccount (Api.Socioboard)" +2017-07-28 16:10:38.183 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.AddPinterestAccount (Api.Socioboard)" with arguments (["f387efeb17a0992f", "1", "1"]) - ModelState is Valid +2017-07-28 16:10:42.543 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.AddPinterestAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:42.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:42.547 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:42.550 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.AddPinterestAccount (Api.Socioboard)" in 7388.559ms +2017-07-28 16:10:42.553 +05:30 [Information] Request finished in 7397.8852ms 200 application/json; charset=utf-8 +2017-07-28 16:10:42.554 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:42.597 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:10:42.598 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:10:42.599 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:10:45.652 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:10:45.655 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:45.655 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:45.657 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:45.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.4482ms +2017-07-28 16:10:45.665 +05:30 [Information] Request finished in 3066.4126ms 200 application/json; charset=utf-8 +2017-07-28 16:10:45.665 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:45.689 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:10:45.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:10:45.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:10:48.740 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:10:48.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:48.749 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:48.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:48.753 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3061.4486ms +2017-07-28 16:10:48.758 +05:30 [Information] Request finished in 3069.5548ms 200 application/json; charset=utf-8 +2017-07-28 16:10:48.759 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:48.767 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:10:48.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:10:48.770 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:10:51.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:10:51.853 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:51.854 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:51.855 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:51.857 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3085.637ms +2017-07-28 16:10:51.859 +05:30 [Information] Request finished in 3094.0402ms 200 application/json; charset=utf-8 +2017-07-28 16:10:51.859 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:53.494 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" started. +2017-07-28 16:10:53.496 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:10:53.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:10:53.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:10:53.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:10:53.499 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:10:53.499 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:10:54.207 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" started. +2017-07-28 16:10:54.312 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 16:10:54.323 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 16:10:54.335 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 16:10:55.063 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" started. +2017-07-28 16:10:55.065 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:10:55.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:10:55.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:10:56.731 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:10:56.734 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:10:56.774 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:56.776 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:10:56.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:56.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:56.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3279.238ms +2017-07-28 16:10:56.787 +05:30 [Information] Request finished in 3290.2775ms 200 application/json; charset=utf-8 +2017-07-28 16:10:56.787 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" completed keep alive response. +2017-07-28 16:10:56.890 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:56.891 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:10:56.891 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:56.893 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:56.895 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3392.9907ms +2017-07-28 16:10:56.898 +05:30 [Information] Request finished in 3402.1874ms 200 application/json; charset=utf-8 +2017-07-28 16:10:56.899 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:10:57.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:10:57.730 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:57.747 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:10:57.747 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:57.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:57.760 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3418.0365ms +2017-07-28 16:10:57.780 +05:30 [Information] Request finished in 3531.9693ms 200 application/json; charset=utf-8 +2017-07-28 16:10:57.785 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" completed keep alive response. +2017-07-28 16:10:58.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:10:58.183 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:10:58.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:10:58.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:10:58.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3119.2599ms +2017-07-28 16:10:58.190 +05:30 [Information] Request finished in 3125.9792ms 200 application/json; charset=utf-8 +2017-07-28 16:10:58.191 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" completed keep alive response. +2017-07-28 16:10:58.201 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 16:10:58.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 16:10:58.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 16:11:01.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 16:11:01.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:11:01.325 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:11:01.328 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:11:01.331 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3125.0863ms +2017-07-28 16:11:01.346 +05:30 [Information] Request finished in 3134.8104ms 200 application/json; charset=utf-8 +2017-07-28 16:11:01.348 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" completed keep alive response. +2017-07-28 16:11:09.257 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoards?profileId=equablewind307&userId=1&skip=0&take=5 +2017-07-28 16:11:09.257 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoards"'. +2017-07-28 16:11:09.259 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" +2017-07-28 16:11:12.333 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" with arguments (["equablewind307", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:11:13.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:11:13.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:11:13.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:11:13.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:11:13.179 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" in 3917.4974ms +2017-07-28 16:11:13.181 +05:30 [Information] Request finished in 3932.7232ms 200 application/json; charset=utf-8 +2017-07-28 16:11:13.184 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" completed keep alive response. +2017-07-28 16:11:15.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985225068&userId=1&skip=0&take=5 +2017-07-28 16:11:15.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:11:15.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:11:19.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985225068", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:11:19.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoards?profileId=equablewind307&userId=1&skip=0&take=5 +2017-07-28 16:11:19.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoards"'. +2017-07-28 16:11:19.841 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" +2017-07-28 16:11:20.256 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:11:20.257 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:11:20.257 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:11:20.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:11:20.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 4278.6749ms +2017-07-28 16:11:20.264 +05:30 [Information] Request finished in 4285.5243ms 200 application/json; charset=utf-8 +2017-07-28 16:11:20.265 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" completed keep alive response. +2017-07-28 16:11:22.917 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" with arguments (["equablewind307", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:11:25.581 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:11:25.584 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:11:25.584 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:11:25.588 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:11:25.596 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" in 5747.2581ms +2017-07-28 16:11:25.601 +05:30 [Information] Request finished in 5763.4341ms 200 application/json; charset=utf-8 +2017-07-28 16:11:25.601 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" completed keep alive response. +2017-07-28 16:11:29.729 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:11:29.729 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:11:29.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:11:32.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:11:33.721 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:11:33.729 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:11:33.732 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:11:33.737 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:11:33.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 4029.9847ms +2017-07-28 16:11:33.766 +05:30 [Information] Request finished in 4038.9493ms 200 application/json; charset=utf-8 +2017-07-28 16:11:33.767 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" completed keep alive response. +2017-07-28 16:12:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" received FIN. +2017-07-28 16:12:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" received FIN. +2017-07-28 16:12:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" received FIN. +2017-07-28 16:12:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" disconnecting. +2017-07-28 16:12:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" received FIN. +2017-07-28 16:12:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" disconnecting. +2017-07-28 16:12:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" disconnecting. +2017-07-28 16:12:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" sending FIN. +2017-07-28 16:12:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" sending FIN. +2017-07-28 16:12:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" sent FIN with status "0". +2017-07-28 16:12:38.545 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" sending FIN. +2017-07-28 16:12:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" disconnecting. +2017-07-28 16:12:38.549 +05:30 [Debug] Connection id ""0HL6LJV3JSFMF"" stopped. +2017-07-28 16:12:38.556 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" sent FIN with status "0". +2017-07-28 16:12:38.566 +05:30 [Debug] Connection id ""0HL6LJV3JSFME"" stopped. +2017-07-28 16:12:38.559 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" sending FIN. +2017-07-28 16:12:38.568 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" sent FIN with status "0". +2017-07-28 16:12:38.571 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" sent FIN with status "0". +2017-07-28 16:12:38.576 +05:30 [Debug] Connection id ""0HL6LJV3JSFMG"" stopped. +2017-07-28 16:12:38.576 +05:30 [Debug] Connection id ""0HL6LJV3JSFMD"" stopped. +2017-07-28 16:19:19.221 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" started. +2017-07-28 16:19:19.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:19:19.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:19:19.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:19:22.314 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:19:22.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:22.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:22.349 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:22.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3124.6642ms +2017-07-28 16:19:22.353 +05:30 [Information] Request finished in 3130.2092ms 200 application/json; charset=utf-8 +2017-07-28 16:19:22.354 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" completed keep alive response. +2017-07-28 16:19:22.379 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:19:22.380 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:19:22.381 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:19:25.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:19:25.485 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:25.485 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:25.486 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:25.489 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3105.5325ms +2017-07-28 16:19:25.492 +05:30 [Information] Request finished in 3126.399ms 200 application/json; charset=utf-8 +2017-07-28 16:19:25.493 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" completed keep alive response. +2017-07-28 16:19:25.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:19:25.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:19:25.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:19:28.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:19:28.552 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:28.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:28.554 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:28.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3047.9454ms +2017-07-28 16:19:28.560 +05:30 [Information] Request finished in 3061.5046ms 200 application/json; charset=utf-8 +2017-07-28 16:19:28.561 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" completed keep alive response. +2017-07-28 16:19:30.210 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:19:30.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:19:30.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:19:30.219 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" started. +2017-07-28 16:19:30.221 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:19:30.222 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:19:30.222 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:19:30.401 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" started. +2017-07-28 16:19:30.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:19:30.484 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:19:30.486 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:19:32.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:19:33.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:19:33.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:33.331 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:19:33.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:33.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:33.342 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3124.9109ms +2017-07-28 16:19:33.345 +05:30 [Information] Request finished in 3134.3565ms 200 application/json; charset=utf-8 +2017-07-28 16:19:33.346 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" completed keep alive response. +2017-07-28 16:19:33.405 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:33.406 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:19:33.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:33.409 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:33.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 2900.7024ms +2017-07-28 16:19:33.416 +05:30 [Information] Request finished in 2977.5361ms 200 application/json; charset=utf-8 +2017-07-28 16:19:33.416 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" completed keep alive response. +2017-07-28 16:19:33.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:19:33.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:19:33.596 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:19:33.596 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:19:33.597 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:19:33.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3375.3994ms +2017-07-28 16:19:33.601 +05:30 [Information] Request finished in 3380.9554ms 200 application/json; charset=utf-8 +2017-07-28 16:19:33.602 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" completed keep alive response. +2017-07-28 16:20:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" received FIN. +2017-07-28 16:20:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" received FIN. +2017-07-28 16:20:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" received FIN. +2017-07-28 16:20:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" disconnecting. +2017-07-28 16:20:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" sending FIN. +2017-07-28 16:20:38.547 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" disconnecting. +2017-07-28 16:20:38.547 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" disconnecting. +2017-07-28 16:20:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" sent FIN with status "0". +2017-07-28 16:20:38.549 +05:30 [Debug] Connection id ""0HL6LJV3JSFMI"" stopped. +2017-07-28 16:20:38.548 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" sending FIN. +2017-07-28 16:20:38.550 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" sending FIN. +2017-07-28 16:20:38.551 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" sent FIN with status "0". +2017-07-28 16:20:38.551 +05:30 [Debug] Connection id ""0HL6LJV3JSFMH"" stopped. +2017-07-28 16:20:38.552 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" sent FIN with status "0". +2017-07-28 16:20:38.552 +05:30 [Debug] Connection id ""0HL6LJV3JSFMJ"" stopped. +2017-07-28 16:21:26.329 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" started. +2017-07-28 16:21:26.333 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 16:21:26.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 16:21:26.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 16:21:29.399 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 16:21:29.446 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:21:29.446 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:21:29.447 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:21:29.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3110.7839ms +2017-07-28 16:21:29.455 +05:30 [Information] Request finished in 3120.1584ms 200 application/json; charset=utf-8 +2017-07-28 16:21:29.456 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:21:39.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 62 +2017-07-28 16:21:39.766 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 16:21:39.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 16:21:42.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 16:21:42.930 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:21:42.931 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:21:42.933 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:21:42.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3165.9426ms +2017-07-28 16:21:42.937 +05:30 [Information] Request finished in 3186.4512ms 200 application/json; charset=utf-8 +2017-07-28 16:21:42.938 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:21:47.606 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 64 +2017-07-28 16:21:47.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 16:21:47.607 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 16:21:50.639 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 16:21:50.671 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:21:50.672 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:21:50.674 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:21:50.676 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3066.8957ms +2017-07-28 16:21:50.678 +05:30 [Information] Request finished in 3072.1497ms 200 application/json; charset=utf-8 +2017-07-28 16:21:50.679 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:21:58.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 16:21:58.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 16:21:58.938 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 16:22:02.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 16:22:02.126 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:02.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:02.130 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:02.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3192.4137ms +2017-07-28 16:22:02.135 +05:30 [Information] Request finished in 3199.5476ms 200 application/json; charset=utf-8 +2017-07-28 16:22:02.135 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:22:02.240 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 16:22:02.241 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:22:02.242 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:22:05.305 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 16:22:05.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:05.318 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:05.321 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:05.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3078.0569ms +2017-07-28 16:22:05.328 +05:30 [Information] Request finished in 3086.2098ms 200 application/json; charset=utf-8 +2017-07-28 16:22:05.329 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:22:29.246 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:22:29.247 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:22:29.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:22:29.297 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" started. +2017-07-28 16:22:29.300 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" started. +2017-07-28 16:22:29.345 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:22:29.346 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:22:29.347 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:22:29.371 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:22:29.376 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:22:29.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:22:31.268 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" started. +2017-07-28 16:22:31.270 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 16:22:31.271 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 16:22:31.271 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 16:22:31.978 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" started. +2017-07-28 16:22:31.979 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 16:22:31.980 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 16:22:31.981 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 16:22:32.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:22:32.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:32.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:32.890 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:32.891 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:32.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3642.2967ms +2017-07-28 16:22:32.899 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:32.932 +05:30 [Information] Request finished in 3655.25ms 200 application/json; charset=utf-8 +2017-07-28 16:22:32.934 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:22:33.017 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:33.020 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:33.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:33.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:33.091 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3703.6361ms +2017-07-28 16:22:33.102 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:33.102 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:33.103 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:33.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:33.129 +05:30 [Information] Request finished in 3804.4622ms 200 application/json; charset=utf-8 +2017-07-28 16:22:33.131 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" completed keep alive response. +2017-07-28 16:22:33.156 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3751.6517ms +2017-07-28 16:22:33.164 +05:30 [Information] Request finished in 3838.8872ms 200 application/json; charset=utf-8 +2017-07-28 16:22:33.166 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" completed keep alive response. +2017-07-28 16:22:34.166 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:22:34.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:22:34.178 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:22:34.207 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:22:34.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:22:34.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:22:34.537 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 16:22:34.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 16:22:34.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 16:22:34.953 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" started. +2017-07-28 16:22:35.336 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 16:22:35.338 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 16:22:35.338 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 16:22:35.360 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:35.570 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:35.570 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:35.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:35.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:35.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4301.8085ms +2017-07-28 16:22:35.578 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" received FIN. +2017-07-28 16:22:35.584 +05:30 [Information] Request finished in 4312.6566ms 200 application/json; charset=utf-8 +2017-07-28 16:22:35.586 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" completed keep alive response. +2017-07-28 16:22:35.586 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" disconnecting. +2017-07-28 16:22:35.586 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" sending FIN. +2017-07-28 16:22:35.595 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" sent FIN with status "0". +2017-07-28 16:22:35.595 +05:30 [Debug] Connection id ""0HL6LJV3JSFMN"" stopped. +2017-07-28 16:22:37.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:37.815 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:37.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:22:37.849 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:37.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:37.879 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:37.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:37.931 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:37.948 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:37.949 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:37.949 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3737.046ms +2017-07-28 16:22:38.003 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:38.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3789.2745ms +2017-07-28 16:22:38.028 +05:30 [Information] Request finished in 3881.5601ms 200 application/json; charset=utf-8 +2017-07-28 16:22:38.031 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:22:38.106 +05:30 [Information] Request finished in 3929.8859ms 200 application/json; charset=utf-8 +2017-07-28 16:22:38.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:38.108 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" completed keep alive response. +2017-07-28 16:22:38.111 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:38.127 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:38.128 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:38.134 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3590.724ms +2017-07-28 16:22:38.138 +05:30 [Information] Request finished in 3600.4707ms 200 application/json; charset=utf-8 +2017-07-28 16:22:38.139 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" completed keep alive response. +2017-07-28 16:22:38.422 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 16:22:38.459 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:38.460 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:38.462 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:38.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3117.0613ms +2017-07-28 16:22:38.526 +05:30 [Information] Request finished in 3235.907ms 200 application/json; charset=utf-8 +2017-07-28 16:22:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" completed keep alive response. +2017-07-28 16:22:39.254 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 16:22:39.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:39.290 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:39.291 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:39.293 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7310.1296ms +2017-07-28 16:22:39.295 +05:30 [Information] Request finished in 7315.2995ms 200 application/json; charset=utf-8 +2017-07-28 16:22:39.296 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" completed keep alive response. +2017-07-28 16:22:42.053 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoards?profileId=equablewind307&userId=1&skip=0&take=5 +2017-07-28 16:22:42.053 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoards"'. +2017-07-28 16:22:42.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" +2017-07-28 16:22:45.107 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" with arguments (["equablewind307", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:22:45.301 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:45.301 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:45.303 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:45.326 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:45.343 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoards (Api.Socioboard)" in 3273.0156ms +2017-07-28 16:22:45.350 +05:30 [Information] Request finished in 3297.408ms 200 application/json; charset=utf-8 +2017-07-28 16:22:45.352 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" completed keep alive response. +2017-07-28 16:22:48.836 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:22:48.837 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:22:48.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:22:51.930 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:22:52.484 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:22:52.485 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:22:52.487 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:22:52.490 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:22:52.496 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3654.5524ms +2017-07-28 16:22:52.501 +05:30 [Information] Request finished in 3664.739ms 200 application/json; charset=utf-8 +2017-07-28 16:22:52.502 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" completed keep alive response. +2017-07-28 16:24:22.555 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" received FIN. +2017-07-28 16:24:22.555 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" received FIN. +2017-07-28 16:24:22.557 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" received FIN. +2017-07-28 16:24:22.558 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" disconnecting. +2017-07-28 16:24:22.558 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" disconnecting. +2017-07-28 16:24:22.557 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" received FIN. +2017-07-28 16:24:22.562 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" sending FIN. +2017-07-28 16:24:22.562 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" disconnecting. +2017-07-28 16:24:22.557 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" disconnecting. +2017-07-28 16:24:22.566 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" sent FIN with status "0". +2017-07-28 16:24:22.558 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" received FIN. +2017-07-28 16:24:22.567 +05:30 [Debug] Connection id ""0HL6LJV3JSFMP"" stopped. +2017-07-28 16:24:22.567 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" disconnecting. +2017-07-28 16:24:22.567 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" started. +2017-07-28 16:24:22.567 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" sending FIN. +2017-07-28 16:24:22.569 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" sending FIN. +2017-07-28 16:24:22.570 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" sent FIN with status "0". +2017-07-28 16:24:22.577 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" sending FIN. +2017-07-28 16:24:22.577 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" sending FIN. +2017-07-28 16:24:22.573 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:24:22.578 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" sent FIN with status "0". +2017-07-28 16:24:22.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:24:22.577 +05:30 [Debug] Connection id ""0HL6LJV3JSFML"" stopped. +2017-07-28 16:24:22.580 +05:30 [Debug] Connection id ""0HL6LJV3JSFMK"" stopped. +2017-07-28 16:24:22.581 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:24:22.582 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" sent FIN with status "0". +2017-07-28 16:24:22.585 +05:30 [Debug] Connection id ""0HL6LJV3JSFMM"" stopped. +2017-07-28 16:24:22.585 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" sent FIN with status "0". +2017-07-28 16:24:22.587 +05:30 [Debug] Connection id ""0HL6LJV3JSFMO"" stopped. +2017-07-28 16:24:25.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:24:25.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:25.650 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:25.651 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:25.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3068.6427ms +2017-07-28 16:24:25.660 +05:30 [Information] Request finished in 3087.9366ms 200 application/json; charset=utf-8 +2017-07-28 16:24:25.660 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" completed keep alive response. +2017-07-28 16:24:25.670 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:24:25.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:24:25.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:24:27.766 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:24:27.773 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:27.774 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:27.776 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:27.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2105.3991ms +2017-07-28 16:24:27.832 +05:30 [Information] Request finished in 2160.0457ms 200 application/json; charset=utf-8 +2017-07-28 16:24:27.833 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" completed keep alive response. +2017-07-28 16:24:27.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:24:27.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:24:27.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:24:31.001 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:24:31.010 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:31.011 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:31.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:31.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3174.163ms +2017-07-28 16:24:31.041 +05:30 [Information] Request finished in 3199.8985ms 200 application/json; charset=utf-8 +2017-07-28 16:24:31.043 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" completed keep alive response. +2017-07-28 16:24:32.786 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" started. +2017-07-28 16:24:32.811 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:24:32.813 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:24:32.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:24:32.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:24:32.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:24:32.816 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:24:33.473 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" started. +2017-07-28 16:24:33.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:24:33.733 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:24:33.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:24:35.916 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:24:35.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:35.922 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:24:35.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:35.923 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:35.925 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3106.2059ms +2017-07-28 16:24:35.930 +05:30 [Information] Request finished in 3137.9625ms 200 application/json; charset=utf-8 +2017-07-28 16:24:35.930 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" completed keep alive response. +2017-07-28 16:24:35.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:24:36.060 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:24:36.118 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:36.118 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:24:36.119 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:36.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:36.122 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3300.865ms +2017-07-28 16:24:36.125 +05:30 [Information] Request finished in 3334.999ms 200 application/json; charset=utf-8 +2017-07-28 16:24:36.126 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" completed keep alive response. +2017-07-28 16:24:37.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:24:37.757 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:24:37.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:24:37.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:24:37.766 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 4021.9315ms +2017-07-28 16:24:37.768 +05:30 [Information] Request finished in 4243.2348ms 200 application/json; charset=utf-8 +2017-07-28 16:24:37.769 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" completed keep alive response. +2017-07-28 16:26:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" received FIN. +2017-07-28 16:26:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" received FIN. +2017-07-28 16:26:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" disconnecting. +2017-07-28 16:26:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" disconnecting. +2017-07-28 16:26:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" received FIN. +2017-07-28 16:26:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" sending FIN. +2017-07-28 16:26:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" sent FIN with status "0". +2017-07-28 16:26:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" sending FIN. +2017-07-28 16:26:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFMR"" stopped. +2017-07-28 16:26:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" sent FIN with status "0". +2017-07-28 16:26:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFMQ"" stopped. +2017-07-28 16:26:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" disconnecting. +2017-07-28 16:26:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" sending FIN. +2017-07-28 16:26:38.532 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" sent FIN with status "0". +2017-07-28 16:26:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFMS"" stopped. +2017-07-28 16:29:30.511 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" started. +2017-07-28 16:29:30.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:29:30.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:29:30.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:29:33.572 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:29:33.576 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:33.577 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:33.578 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:33.580 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.9664ms +2017-07-28 16:29:33.585 +05:30 [Information] Request finished in 3071.5631ms 200 application/json; charset=utf-8 +2017-07-28 16:29:33.585 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" completed keep alive response. +2017-07-28 16:29:33.608 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:29:33.610 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:29:33.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:29:36.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:29:36.680 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:36.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:36.681 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:36.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.1626ms +2017-07-28 16:29:36.686 +05:30 [Information] Request finished in 3077.5845ms 200 application/json; charset=utf-8 +2017-07-28 16:29:36.687 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" completed keep alive response. +2017-07-28 16:29:36.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:29:36.706 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:29:36.707 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:29:39.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:29:39.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:39.757 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:39.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:39.761 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3050.3989ms +2017-07-28 16:29:39.764 +05:30 [Information] Request finished in 3059.297ms 200 application/json; charset=utf-8 +2017-07-28 16:29:39.765 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" completed keep alive response. +2017-07-28 16:29:41.481 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" started. +2017-07-28 16:29:41.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:29:41.489 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:29:41.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:29:41.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:29:41.516 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:29:41.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:29:41.939 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" started. +2017-07-28 16:29:41.941 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:29:41.942 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:29:41.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:29:43.705 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:29:43.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:43.712 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:29:43.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:43.715 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:43.718 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2179.4035ms +2017-07-28 16:29:43.723 +05:30 [Information] Request finished in 2238.4453ms 200 application/json; charset=utf-8 +2017-07-28 16:29:43.725 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" completed keep alive response. +2017-07-28 16:29:44.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:29:44.706 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:44.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:29:44.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:44.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:44.710 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3212.0516ms +2017-07-28 16:29:44.713 +05:30 [Information] Request finished in 3230.0835ms 200 application/json; charset=utf-8 +2017-07-28 16:29:44.714 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" completed keep alive response. +2017-07-28 16:29:45.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:29:45.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:29:45.857 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:29:45.857 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:29:45.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:29:45.898 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3933.1853ms +2017-07-28 16:29:45.904 +05:30 [Information] Request finished in 3962.4901ms 200 application/json; charset=utf-8 +2017-07-28 16:29:45.905 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" completed keep alive response. +2017-07-28 16:31:03.161 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" received FIN. +2017-07-28 16:31:03.164 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" started. +2017-07-28 16:31:03.164 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" disconnecting. +2017-07-28 16:31:03.166 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" sending FIN. +2017-07-28 16:31:03.162 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" received FIN. +2017-07-28 16:31:03.167 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" sent FIN with status "0". +2017-07-28 16:31:03.167 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" received FIN. +2017-07-28 16:31:03.168 +05:30 [Debug] Connection id ""0HL6LJV3JSFMU"" stopped. +2017-07-28 16:31:03.168 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" disconnecting. +2017-07-28 16:31:03.170 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" sending FIN. +2017-07-28 16:31:03.170 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" sent FIN with status "0". +2017-07-28 16:31:03.171 +05:30 [Debug] Connection id ""0HL6LJV3JSFMV"" stopped. +2017-07-28 16:31:03.168 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" disconnecting. +2017-07-28 16:31:03.172 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" sending FIN. +2017-07-28 16:31:03.173 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" sent FIN with status "0". +2017-07-28 16:31:03.173 +05:30 [Debug] Connection id ""0HL6LJV3JSFMT"" stopped. +2017-07-28 16:31:03.175 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:31:03.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:31:03.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:31:05.271 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:31:05.276 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:05.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:05.286 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:05.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2111.4566ms +2017-07-28 16:31:05.306 +05:30 [Information] Request finished in 2138.5376ms 200 application/json; charset=utf-8 +2017-07-28 16:31:05.306 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" completed keep alive response. +2017-07-28 16:31:05.334 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:31:05.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:31:05.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:31:08.488 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:31:08.495 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:08.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:08.498 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:08.507 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3161.2173ms +2017-07-28 16:31:08.511 +05:30 [Information] Request finished in 3176.2001ms 200 application/json; charset=utf-8 +2017-07-28 16:31:08.512 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" completed keep alive response. +2017-07-28 16:31:08.539 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:31:08.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:31:08.542 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:31:11.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:31:11.694 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:11.696 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:11.699 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:11.702 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3156.9148ms +2017-07-28 16:31:11.705 +05:30 [Information] Request finished in 3181.4945ms 200 application/json; charset=utf-8 +2017-07-28 16:31:11.706 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" completed keep alive response. +2017-07-28 16:31:13.961 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" started. +2017-07-28 16:31:14.061 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:31:14.061 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:31:14.063 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:31:14.488 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:31:14.492 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:31:14.493 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:31:14.807 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" started. +2017-07-28 16:31:15.317 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:31:15.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:31:15.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:31:16.990 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:31:16.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:17.000 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:31:17.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:17.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:17.008 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2939.4064ms +2017-07-28 16:31:17.012 +05:30 [Information] Request finished in 3023.5338ms 200 application/json; charset=utf-8 +2017-07-28 16:31:17.014 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" completed keep alive response. +2017-07-28 16:31:17.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:31:17.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:31:17.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:17.817 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:31:17.817 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:17.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:31:17.844 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:17.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:31:17.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:31:17.855 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 2423.5975ms +2017-07-28 16:31:17.856 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:31:17.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3363.8346ms +2017-07-28 16:31:17.882 +05:30 [Information] Request finished in 3007.6486ms 200 application/json; charset=utf-8 +2017-07-28 16:31:17.883 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" completed keep alive response. +2017-07-28 16:31:18.109 +05:30 [Information] Request finished in 3896.7157ms 200 application/json; charset=utf-8 +2017-07-28 16:31:18.109 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" completed keep alive response. +2017-07-28 16:32:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" received FIN. +2017-07-28 16:32:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" received FIN. +2017-07-28 16:32:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" disconnecting. +2017-07-28 16:32:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" disconnecting. +2017-07-28 16:32:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" received FIN. +2017-07-28 16:32:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" sending FIN. +2017-07-28 16:32:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" disconnecting. +2017-07-28 16:32:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" sending FIN. +2017-07-28 16:32:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" sent FIN with status "0". +2017-07-28 16:32:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" sending FIN. +2017-07-28 16:32:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFN1"" stopped. +2017-07-28 16:32:38.535 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" sent FIN with status "0". +2017-07-28 16:32:38.536 +05:30 [Debug] Connection id ""0HL6LJV3JSFN2"" stopped. +2017-07-28 16:32:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" sent FIN with status "0". +2017-07-28 16:32:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFN0"" stopped. +2017-07-28 16:34:00.508 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" started. +2017-07-28 16:34:00.512 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:34:00.513 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:34:00.514 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:34:03.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:34:03.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:03.623 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:03.628 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:03.631 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3114.6378ms +2017-07-28 16:34:03.640 +05:30 [Information] Request finished in 3126.0381ms 200 application/json; charset=utf-8 +2017-07-28 16:34:03.642 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" completed keep alive response. +2017-07-28 16:34:03.714 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:34:03.724 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:34:03.730 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:34:05.949 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:34:05.954 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:05.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:05.955 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:05.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2227.243ms +2017-07-28 16:34:05.961 +05:30 [Information] Request finished in 2250.7557ms 200 application/json; charset=utf-8 +2017-07-28 16:34:05.962 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" completed keep alive response. +2017-07-28 16:34:05.967 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:34:05.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:34:05.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:34:08.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:34:08.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:08.194 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:08.223 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:08.244 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2256.1958ms +2017-07-28 16:34:08.277 +05:30 [Information] Request finished in 2298.2102ms 200 application/json; charset=utf-8 +2017-07-28 16:34:08.292 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" completed keep alive response. +2017-07-28 16:34:10.004 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" started. +2017-07-28 16:34:10.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:34:10.175 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:34:10.176 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:34:10.284 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:34:10.304 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:34:10.313 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:34:10.899 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" started. +2017-07-28 16:34:10.902 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:34:10.913 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:34:10.961 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:34:12.646 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:34:12.651 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:12.651 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:34:12.652 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:12.653 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:12.657 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2339.7948ms +2017-07-28 16:34:12.675 +05:30 [Information] Request finished in 2629.3116ms 200 application/json; charset=utf-8 +2017-07-28 16:34:12.676 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" completed keep alive response. +2017-07-28 16:34:13.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:34:13.494 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:13.495 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:34:13.495 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:13.496 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:13.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3320.7287ms +2017-07-28 16:34:13.500 +05:30 [Information] Request finished in 3469.9906ms 200 application/json; charset=utf-8 +2017-07-28 16:34:13.501 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" completed keep alive response. +2017-07-28 16:34:14.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:34:16.115 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:34:16.125 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:34:16.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:34:16.138 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:34:16.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 5179.2585ms +2017-07-28 16:34:16.150 +05:30 [Information] Request finished in 5248.6504ms 200 application/json; charset=utf-8 +2017-07-28 16:34:16.151 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" completed keep alive response. +2017-07-28 16:36:08.331 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" received FIN. +2017-07-28 16:36:08.335 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" started. +2017-07-28 16:36:08.336 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" disconnecting. +2017-07-28 16:36:08.332 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" received FIN. +2017-07-28 16:36:08.393 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" sending FIN. +2017-07-28 16:36:08.411 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:36:08.426 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" received FIN. +2017-07-28 16:36:08.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:36:08.427 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" sent FIN with status "0". +2017-07-28 16:36:08.426 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" disconnecting. +2017-07-28 16:36:08.429 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" disconnecting. +2017-07-28 16:36:08.447 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:36:08.449 +05:30 [Debug] Connection id ""0HL6LJV3JSFN4"" stopped. +2017-07-28 16:36:08.457 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" sending FIN. +2017-07-28 16:36:08.476 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" sending FIN. +2017-07-28 16:36:08.476 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" sent FIN with status "0". +2017-07-28 16:36:08.477 +05:30 [Debug] Connection id ""0HL6LJV3JSFN5"" stopped. +2017-07-28 16:36:08.478 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" sent FIN with status "0". +2017-07-28 16:36:08.478 +05:30 [Debug] Connection id ""0HL6LJV3JSFN3"" stopped. +2017-07-28 16:36:11.495 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:36:11.500 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:11.501 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:11.502 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:11.503 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3043.5306ms +2017-07-28 16:36:11.507 +05:30 [Information] Request finished in 3169.9979ms 200 application/json; charset=utf-8 +2017-07-28 16:36:11.508 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" completed keep alive response. +2017-07-28 16:36:11.537 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:36:11.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:36:11.545 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:36:14.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:36:14.704 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:14.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:14.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:14.716 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3165.3295ms +2017-07-28 16:36:14.723 +05:30 [Information] Request finished in 3199.5509ms 200 application/json; charset=utf-8 +2017-07-28 16:36:14.725 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" completed keep alive response. +2017-07-28 16:36:14.730 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:36:14.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:36:14.732 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:36:17.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:36:17.896 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:17.897 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:17.898 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:17.900 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3165.6811ms +2017-07-28 16:36:17.902 +05:30 [Information] Request finished in 3173.3827ms 200 application/json; charset=utf-8 +2017-07-28 16:36:17.903 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" completed keep alive response. +2017-07-28 16:36:19.507 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" started. +2017-07-28 16:36:19.514 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:36:19.515 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:36:19.517 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:36:19.516 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:36:19.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:36:19.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:36:19.970 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" started. +2017-07-28 16:36:19.974 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:36:19.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:36:19.983 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:36:22.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:36:22.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:36:22.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:36:22.800 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:22.801 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:36:22.802 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:22.803 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:22.804 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:22.807 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:36:22.807 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3282.1534ms +2017-07-28 16:36:22.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:22.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:22.814 +05:30 [Information] Request finished in 3301.979ms 200 application/json; charset=utf-8 +2017-07-28 16:36:22.816 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" completed keep alive response. +2017-07-28 16:36:22.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3235.4038ms +2017-07-28 16:36:23.278 +05:30 [Information] Request finished in 3516.8273ms 200 application/json; charset=utf-8 +2017-07-28 16:36:23.289 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" completed keep alive response. +2017-07-28 16:36:23.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:36:23.904 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:36:23.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:36:23.907 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:36:23.912 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3922.3406ms +2017-07-28 16:36:23.915 +05:30 [Information] Request finished in 3941.1008ms 200 application/json; charset=utf-8 +2017-07-28 16:36:23.916 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" completed keep alive response. +2017-07-28 16:37:50.892 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" received FIN. +2017-07-28 16:37:50.892 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" received FIN. +2017-07-28 16:37:50.893 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" received FIN. +2017-07-28 16:37:50.895 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" disconnecting. +2017-07-28 16:37:50.894 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" disconnecting. +2017-07-28 16:37:50.897 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" sending FIN. +2017-07-28 16:37:50.898 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" sent FIN with status "0". +2017-07-28 16:37:50.896 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" started. +2017-07-28 16:37:50.898 +05:30 [Debug] Connection id ""0HL6LJV3JSFN8"" stopped. +2017-07-28 16:37:50.899 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" sending FIN. +2017-07-28 16:37:50.894 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" disconnecting. +2017-07-28 16:37:50.902 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" sent FIN with status "0". +2017-07-28 16:37:50.905 +05:30 [Debug] Connection id ""0HL6LJV3JSFN7"" stopped. +2017-07-28 16:37:50.902 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" sending FIN. +2017-07-28 16:37:50.906 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:37:50.907 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" sent FIN with status "0". +2017-07-28 16:37:50.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:37:50.908 +05:30 [Debug] Connection id ""0HL6LJV3JSFN6"" stopped. +2017-07-28 16:37:50.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:37:53.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:37:53.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:37:53.957 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:37:53.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:37:53.960 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.6097ms +2017-07-28 16:37:53.962 +05:30 [Information] Request finished in 3059.2129ms 200 application/json; charset=utf-8 +2017-07-28 16:37:53.963 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" completed keep alive response. +2017-07-28 16:37:53.970 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:37:53.971 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:37:53.972 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:37:56.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:37:56.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:37:56.100 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:37:56.101 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:37:56.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2129.8239ms +2017-07-28 16:37:56.107 +05:30 [Information] Request finished in 2137.1636ms 200 application/json; charset=utf-8 +2017-07-28 16:37:56.108 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" completed keep alive response. +2017-07-28 16:37:56.117 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:37:56.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:37:56.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:37:59.284 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:37:59.299 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:37:59.300 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:37:59.304 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:37:59.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3183.8653ms +2017-07-28 16:37:59.325 +05:30 [Information] Request finished in 3203.5879ms 200 application/json; charset=utf-8 +2017-07-28 16:37:59.326 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" completed keep alive response. +2017-07-28 16:38:00.653 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" started. +2017-07-28 16:38:00.663 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:38:00.666 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:38:00.667 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:38:00.668 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:38:00.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:38:00.671 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:38:01.109 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" started. +2017-07-28 16:38:01.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:38:01.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:38:01.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:38:03.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:38:03.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:38:03.864 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:38:03.874 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:38:03.875 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:38:03.876 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:38:03.903 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:38:03.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3232.7251ms +2017-07-28 16:38:03.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:38:03.979 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:38:03.979 +05:30 [Information] Request finished in 3320.0149ms 200 application/json; charset=utf-8 +2017-07-28 16:38:03.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:38:03.982 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" completed keep alive response. +2017-07-28 16:38:03.997 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:38:04.002 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3326.1774ms +2017-07-28 16:38:04.009 +05:30 [Information] Request finished in 3349.2925ms 200 application/json; charset=utf-8 +2017-07-28 16:38:04.010 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" completed keep alive response. +2017-07-28 16:38:04.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:38:04.323 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:38:04.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:38:04.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:38:04.334 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3210.0775ms +2017-07-28 16:38:04.336 +05:30 [Information] Request finished in 3222.767ms 200 application/json; charset=utf-8 +2017-07-28 16:38:04.337 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" completed keep alive response. +2017-07-28 16:39:56.940 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" received FIN. +2017-07-28 16:39:56.940 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" received FIN. +2017-07-28 16:39:56.941 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" disconnecting. +2017-07-28 16:39:56.941 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" received FIN. +2017-07-28 16:39:56.954 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" disconnecting. +2017-07-28 16:39:56.955 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" sending FIN. +2017-07-28 16:39:56.956 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" disconnecting. +2017-07-28 16:39:56.957 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" sent FIN with status "0". +2017-07-28 16:39:56.958 +05:30 [Debug] Connection id ""0HL6LJV3JSFN9"" stopped. +2017-07-28 16:39:56.953 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" started. +2017-07-28 16:39:56.959 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" sending FIN. +2017-07-28 16:39:56.960 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" sending FIN. +2017-07-28 16:39:56.976 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" sent FIN with status "0". +2017-07-28 16:39:56.976 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:39:56.989 +05:30 [Debug] Connection id ""0HL6LJV3JSFNB"" stopped. +2017-07-28 16:39:56.988 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" sent FIN with status "0". +2017-07-28 16:39:56.989 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:39:57.005 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:39:57.004 +05:30 [Debug] Connection id ""0HL6LJV3JSFNA"" stopped. +2017-07-28 16:40:00.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:40:00.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:00.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:00.278 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:00.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3273.2838ms +2017-07-28 16:40:00.284 +05:30 [Information] Request finished in 3323.0326ms 200 application/json; charset=utf-8 +2017-07-28 16:40:00.287 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" completed keep alive response. +2017-07-28 16:40:00.368 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:40:00.378 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:40:00.382 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:40:02.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:40:02.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:02.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:02.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:02.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2135.3169ms +2017-07-28 16:40:02.522 +05:30 [Information] Request finished in 2170.1439ms 200 application/json; charset=utf-8 +2017-07-28 16:40:02.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" completed keep alive response. +2017-07-28 16:40:02.534 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:40:02.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:40:02.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:40:05.594 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:40:05.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:05.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:05.610 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:05.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3075.4792ms +2017-07-28 16:40:05.615 +05:30 [Information] Request finished in 3083.7265ms 200 application/json; charset=utf-8 +2017-07-28 16:40:05.616 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" completed keep alive response. +2017-07-28 16:40:07.003 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" started. +2017-07-28 16:40:07.012 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:40:07.012 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:40:07.013 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:40:07.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:40:07.020 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:40:07.021 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:40:07.374 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" started. +2017-07-28 16:40:07.376 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:40:07.377 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:40:07.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:40:10.150 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:40:10.209 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:40:10.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:10.237 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:40:10.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:10.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:10.242 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:10.243 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:40:10.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3225.6863ms +2017-07-28 16:40:10.243 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:10.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:10.249 +05:30 [Information] Request finished in 3240.3059ms 200 application/json; charset=utf-8 +2017-07-28 16:40:10.250 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" completed keep alive response. +2017-07-28 16:40:10.254 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3225.299ms +2017-07-28 16:40:10.259 +05:30 [Information] Request finished in 3249.792ms 200 application/json; charset=utf-8 +2017-07-28 16:40:10.261 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" completed keep alive response. +2017-07-28 16:40:10.512 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:40:11.148 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:40:11.149 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:40:11.149 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:40:11.150 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:40:11.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3774.0408ms +2017-07-28 16:40:11.160 +05:30 [Information] Request finished in 3782.4747ms 200 application/json; charset=utf-8 +2017-07-28 16:40:11.161 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" completed keep alive response. +2017-07-28 16:42:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" received FIN. +2017-07-28 16:42:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" received FIN. +2017-07-28 16:42:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" disconnecting. +2017-07-28 16:42:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" sending FIN. +2017-07-28 16:42:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" received FIN. +2017-07-28 16:42:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" sent FIN with status "0". +2017-07-28 16:42:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" disconnecting. +2017-07-28 16:42:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFNC"" stopped. +2017-07-28 16:42:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" disconnecting. +2017-07-28 16:42:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" sending FIN. +2017-07-28 16:42:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" sending FIN. +2017-07-28 16:42:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" sent FIN with status "0". +2017-07-28 16:42:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFND"" stopped. +2017-07-28 16:42:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" sent FIN with status "0". +2017-07-28 16:42:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFNE"" stopped. +2017-07-28 16:44:08.935 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" started. +2017-07-28 16:44:08.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:44:08.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:44:08.939 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:44:12.032 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:44:12.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:12.037 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:12.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:12.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3100.8085ms +2017-07-28 16:44:12.043 +05:30 [Information] Request finished in 3106.0371ms 200 application/json; charset=utf-8 +2017-07-28 16:44:12.044 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" completed keep alive response. +2017-07-28 16:44:12.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:44:12.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:44:12.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:44:15.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:44:15.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:15.112 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:15.113 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:15.115 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3055.5003ms +2017-07-28 16:44:15.117 +05:30 [Information] Request finished in 3062.4296ms 200 application/json; charset=utf-8 +2017-07-28 16:44:15.118 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" completed keep alive response. +2017-07-28 16:44:15.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:44:15.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:44:15.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:44:18.197 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:44:18.205 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:18.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:18.206 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:18.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3077.946ms +2017-07-28 16:44:18.211 +05:30 [Information] Request finished in 3088.8474ms 200 application/json; charset=utf-8 +2017-07-28 16:44:18.211 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" completed keep alive response. +2017-07-28 16:44:20.003 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" started. +2017-07-28 16:44:20.016 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:44:20.016 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:44:20.017 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:44:20.024 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:44:20.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:44:20.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:44:22.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:44:22.214 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:22.214 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:44:22.214 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:22.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:22.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2188.0711ms +2017-07-28 16:44:22.223 +05:30 [Information] Request finished in 2210.7393ms 200 application/json; charset=utf-8 +2017-07-28 16:44:22.224 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" completed keep alive response. +2017-07-28 16:44:23.118 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:44:23.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:44:23.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:44:23.375 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:44:23.489 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:23.508 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:44:23.509 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:23.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:23.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3717.5522ms +2017-07-28 16:44:23.746 +05:30 [Information] Request finished in 3735.7744ms 200 application/json; charset=utf-8 +2017-07-28 16:44:23.748 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" completed keep alive response. +2017-07-28 16:44:26.478 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:44:29.542 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:44:29.543 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:44:29.546 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:44:29.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:44:29.600 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 6442.1491ms +2017-07-28 16:44:29.603 +05:30 [Information] Request finished in 6554.7523ms 200 application/json; charset=utf-8 +2017-07-28 16:44:29.604 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" completed keep alive response. +2017-07-28 16:46:25.919 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" received FIN. +2017-07-28 16:46:25.919 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" received FIN. +2017-07-28 16:46:25.921 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" started. +2017-07-28 16:46:25.920 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" disconnecting. +2017-07-28 16:46:25.923 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" sending FIN. +2017-07-28 16:46:25.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:46:25.921 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" disconnecting. +2017-07-28 16:46:25.925 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:46:25.925 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" sending FIN. +2017-07-28 16:46:25.925 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" sent FIN with status "0". +2017-07-28 16:46:25.928 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" sent FIN with status "0". +2017-07-28 16:46:25.927 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:46:25.928 +05:30 [Debug] Connection id ""0HL6LJV3JSFNG"" stopped. +2017-07-28 16:46:25.928 +05:30 [Debug] Connection id ""0HL6LJV3JSFNF"" stopped. +2017-07-28 16:46:29.063 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:46:29.066 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:29.067 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:29.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:29.071 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3138.9103ms +2017-07-28 16:46:29.074 +05:30 [Information] Request finished in 3150.653ms 200 application/json; charset=utf-8 +2017-07-28 16:46:29.074 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" completed keep alive response. +2017-07-28 16:46:29.099 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:46:29.101 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:46:29.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:46:32.156 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:46:32.160 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:32.161 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:32.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:32.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3059.344ms +2017-07-28 16:46:32.166 +05:30 [Information] Request finished in 3079.257ms 200 application/json; charset=utf-8 +2017-07-28 16:46:32.166 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" completed keep alive response. +2017-07-28 16:46:32.194 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:46:32.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:46:32.203 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:46:35.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:46:35.243 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:35.244 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:35.245 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:35.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3039.7727ms +2017-07-28 16:46:35.250 +05:30 [Information] Request finished in 3077.2154ms 200 application/json; charset=utf-8 +2017-07-28 16:46:35.250 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" completed keep alive response. +2017-07-28 16:46:36.837 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" started. +2017-07-28 16:46:36.868 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:46:36.869 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:46:36.869 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:46:36.876 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:46:36.877 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:46:36.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:46:37.096 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" started. +2017-07-28 16:46:37.205 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:46:37.209 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:46:37.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:46:39.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:46:39.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:46:39.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:39.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:46:39.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:39.185 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:39.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:39.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:46:39.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:39.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2338.5907ms +2017-07-28 16:46:39.225 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:39.227 +05:30 [Information] Request finished in 2363.87ms 200 application/json; charset=utf-8 +2017-07-28 16:46:39.228 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" completed keep alive response. +2017-07-28 16:46:39.231 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2357.346ms +2017-07-28 16:46:39.235 +05:30 [Information] Request finished in 2403.0938ms 200 application/json; charset=utf-8 +2017-07-28 16:46:39.236 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" completed keep alive response. +2017-07-28 16:46:39.388 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:46:40.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:46:40.181 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:46:40.182 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:46:40.183 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:46:40.189 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 2971.317ms +2017-07-28 16:46:40.193 +05:30 [Information] Request finished in 3069.6243ms 200 application/json; charset=utf-8 +2017-07-28 16:46:40.194 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" completed keep alive response. +2017-07-28 16:48:38.542 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" received FIN. +2017-07-28 16:48:38.543 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" disconnecting. +2017-07-28 16:48:38.544 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" received FIN. +2017-07-28 16:48:38.551 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" received FIN. +2017-07-28 16:48:38.549 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" sending FIN. +2017-07-28 16:48:38.551 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" disconnecting. +2017-07-28 16:48:38.560 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" sending FIN. +2017-07-28 16:48:38.561 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" sent FIN with status "0". +2017-07-28 16:48:38.559 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" sent FIN with status "0". +2017-07-28 16:48:38.558 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" disconnecting. +2017-07-28 16:48:38.569 +05:30 [Debug] Connection id ""0HL6LJV3JSFNI"" stopped. +2017-07-28 16:48:38.568 +05:30 [Debug] Connection id ""0HL6LJV3JSFNH"" stopped. +2017-07-28 16:48:38.571 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" sending FIN. +2017-07-28 16:48:38.572 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" sent FIN with status "0". +2017-07-28 16:48:38.572 +05:30 [Debug] Connection id ""0HL6LJV3JSFNJ"" stopped. +2017-07-28 16:49:59.471 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" started. +2017-07-28 16:49:59.475 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:49:59.475 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:49:59.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:50:02.514 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:50:02.518 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:02.518 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:02.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:02.522 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3041.9938ms +2017-07-28 16:50:02.525 +05:30 [Information] Request finished in 3049.8894ms 200 application/json; charset=utf-8 +2017-07-28 16:50:02.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:50:02.543 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:50:02.543 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:50:02.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:50:05.578 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:50:05.584 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:05.585 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:05.586 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:05.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3041.5449ms +2017-07-28 16:50:05.590 +05:30 [Information] Request finished in 3051.2177ms 200 application/json; charset=utf-8 +2017-07-28 16:50:05.590 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:50:05.595 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:50:05.597 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:50:05.600 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:50:08.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:50:08.646 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:08.647 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:08.648 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:08.650 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3047.7643ms +2017-07-28 16:50:08.654 +05:30 [Information] Request finished in 3058.5561ms 200 application/json; charset=utf-8 +2017-07-28 16:50:08.655 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:50:10.172 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" started. +2017-07-28 16:50:10.181 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:50:10.181 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:50:10.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:50:10.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:50:10.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:50:10.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:50:10.488 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" started. +2017-07-28 16:50:10.490 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:50:10.490 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:50:10.492 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:50:12.586 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:50:13.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:50:13.352 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:50:13.372 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:13.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:50:13.377 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:13.378 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:13.380 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:50:13.380 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:13.387 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:13.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:13.394 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3201.4035ms +2017-07-28 16:50:13.395 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3209.4915ms +2017-07-28 16:50:13.418 +05:30 [Information] Request finished in 3221.0795ms 200 application/json; charset=utf-8 +2017-07-28 16:50:13.418 +05:30 [Information] Request finished in 3222.7905ms 200 application/json; charset=utf-8 +2017-07-28 16:50:13.419 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" completed keep alive response. +2017-07-28 16:50:13.419 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:50:15.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:50:15.938 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:50:15.939 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:50:15.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:50:15.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 5450.7857ms +2017-07-28 16:50:15.954 +05:30 [Information] Request finished in 5464.2671ms 200 application/json; charset=utf-8 +2017-07-28 16:50:15.955 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" completed keep alive response. +2017-07-28 16:51:09.169 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 16:51:09.170 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 16:51:09.170 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 16:51:12.203 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:51:12.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:12.210 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:12.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:12.218 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3044.7926ms +2017-07-28 16:51:12.221 +05:30 [Information] Request finished in 3050.6542ms 200 application/json; charset=utf-8 +2017-07-28 16:51:12.221 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" completed keep alive response. +2017-07-28 16:51:12.235 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 16:51:12.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 16:51:12.236 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 16:51:15.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 16:51:15.279 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:15.281 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:15.282 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:15.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.5549ms +2017-07-28 16:51:15.287 +05:30 [Information] Request finished in 3052.878ms 200 application/json; charset=utf-8 +2017-07-28 16:51:15.288 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:51:15.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 16:51:15.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 16:51:15.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 16:51:18.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 16:51:18.344 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:18.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:18.345 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:18.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3050.4102ms +2017-07-28 16:51:18.352 +05:30 [Information] Request finished in 3058.2942ms 200 application/json; charset=utf-8 +2017-07-28 16:51:18.353 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" completed keep alive response. +2017-07-28 16:51:19.710 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 16:51:19.713 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 16:51:19.714 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 16:51:19.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 16:51:19.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 16:51:19.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 16:51:20.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Pinterest/GetTopBoardPins?boardId=494973883985223444&userId=1&skip=0&take=5 +2017-07-28 16:51:20.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Pinterest/GetTopBoardPins"'. +2017-07-28 16:51:20.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" +2017-07-28 16:51:22.892 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:51:22.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:22.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:51:22.917 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:22.940 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 16:51:22.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:22.978 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3228.7169ms +2017-07-28 16:51:22.981 +05:30 [Information] Request finished in 3289.5826ms 200 application/json; charset=utf-8 +2017-07-28 16:51:22.982 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" completed keep alive response. +2017-07-28 16:51:23.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:23.029 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:51:23.029 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:23.031 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:23.034 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3272.1228ms +2017-07-28 16:51:23.037 +05:30 [Information] Request finished in 3337.6714ms 200 application/json; charset=utf-8 +2017-07-28 16:51:23.038 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" completed keep alive response. +2017-07-28 16:51:23.160 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" with arguments (["494973883985223444", "1", "0", "5"]) - ModelState is Valid +2017-07-28 16:51:23.941 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 16:51:23.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 16:51:23.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 16:51:23.946 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 16:51:23.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PinterestController.GetTopBoardPins (Api.Socioboard)" in 3879.3409ms +2017-07-28 16:51:23.979 +05:30 [Information] Request finished in 3914.586ms 200 application/json; charset=utf-8 +2017-07-28 16:51:23.979 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" completed keep alive response. +2017-07-28 16:52:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" received FIN. +2017-07-28 16:52:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" received FIN. +2017-07-28 16:52:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" received FIN. +2017-07-28 16:52:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" disconnecting. +2017-07-28 16:52:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" disconnecting. +2017-07-28 16:52:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" disconnecting. +2017-07-28 16:52:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" sending FIN. +2017-07-28 16:52:38.536 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" sending FIN. +2017-07-28 16:52:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" sending FIN. +2017-07-28 16:52:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" sent FIN with status "0". +2017-07-28 16:52:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" sent FIN with status "0". +2017-07-28 16:52:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFNM"" stopped. +2017-07-28 16:52:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFNL"" stopped. +2017-07-28 16:52:38.540 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" sent FIN with status "0". +2017-07-28 16:52:38.542 +05:30 [Debug] Connection id ""0HL6LJV3JSFNK"" stopped. +2017-07-28 17:01:22.086 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" started. +2017-07-28 17:01:22.088 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=1&skip=0&count=200 +2017-07-28 17:01:22.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-07-28 17:01:22.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-07-28 17:01:25.247 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["1", "0", "200"]) - ModelState is Valid +2017-07-28 17:01:27.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:01:27.376 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:01:27.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:01:27.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:01:27.384 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 5291.0181ms +2017-07-28 17:01:27.386 +05:30 [Information] Request finished in 5297.6242ms 200 application/json; charset=utf-8 +2017-07-28 17:01:27.387 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" completed keep alive response. +2017-07-28 17:01:45.130 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/RssNewsFeedsUrl?userId=1&keyword=music +2017-07-28 17:01:45.132 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/RssNewsFeedsUrl"'. +2017-07-28 17:01:45.137 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.RssNewsFeedsUrl (Api.Socioboard)" +2017-07-28 17:01:48.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.RssNewsFeedsUrl (Api.Socioboard)" with arguments (["1", "music"]) - ModelState is Valid +2017-07-28 17:02:01.142 +05:30 [Fatal] could not execute query +[ select rssfeedurl0_.rssFeedUrlId as rssFeedU1_23_, rssfeedurl0_.rssurl as rssurl23_, rssfeedurl0_.LastUpdate as LastUpdate23_, rssfeedurl0_.Keywords as Keywords23_ from RssFeedUrl rssfeedurl0_ where (rssfeedurl0_.rssurl like concat('%',?p0,'%')) and (rssfeedurl0_.Keywords is not null) ] + Name:p1 - Value:http://www.hindustantimes.com/rss/music/rssfeed.xml +[SQL: select rssfeedurl0_.rssFeedUrlId as rssFeedU1_23_, rssfeedurl0_.rssurl as rssurl23_, rssfeedurl0_.LastUpdate as LastUpdate23_, rssfeedurl0_.Keywords as Keywords23_ from RssFeedUrl rssfeedurl0_ where (rssfeedurl0_.rssurl like concat('%',?p0,'%')) and (rssfeedurl0_.Keywords is not null)] +2017-07-28 17:02:01.201 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Api.Socioboard.Model.DatabaseRepository.FindSingle[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 188 +2017-07-28 17:02:01.213 +05:30 [Error] Unknown column 'rssfeedurl0_.Keywords' in 'field list' +2017-07-28 17:02:01.287 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.RssFeedUrl#0][SQL: INSERT INTO RssFeedUrl (rssurl, LastUpdate, Keywords, rssFeedUrlId) VALUES (?, ?, ?, ?)] +2017-07-28 17:02:01.292 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-07-28 17:02:01.294 +05:30 [Error] Unknown column 'Keywords' in 'field list' +2017-07-28 17:02:01.297 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-07-28 17:02:10.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.RssNewsFeedsUrl (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:02:10.330 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:02:10.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:02:10.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:02:10.348 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.RssNewsFeedsUrl (Api.Socioboard)" in 25200.9563ms +2017-07-28 17:02:10.353 +05:30 [Information] Request finished in 25231.3356ms 200 application/json; charset=utf-8 +2017-07-28 17:02:10.354 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" completed keep alive response. +2017-07-28 17:04:38.525 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" received FIN. +2017-07-28 17:04:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" disconnecting. +2017-07-28 17:04:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" sending FIN. +2017-07-28 17:04:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" sent FIN with status "0". +2017-07-28 17:04:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNN"" stopped. +2017-07-28 17:06:16.435 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" started. +2017-07-28 17:06:16.513 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 17:06:16.514 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 17:06:16.515 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 17:06:19.635 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:06:19.687 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:19.687 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:19.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:19.701 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3175.584ms +2017-07-28 17:06:19.706 +05:30 [Information] Request finished in 3259.1433ms 200 application/json; charset=utf-8 +2017-07-28 17:06:19.706 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" completed keep alive response. +2017-07-28 17:06:19.780 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 17:06:19.780 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 17:06:19.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 17:06:23.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:06:23.097 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:23.098 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:23.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:23.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3425.4061ms +2017-07-28 17:06:23.356 +05:30 [Information] Request finished in 3542.5786ms 200 application/json; charset=utf-8 +2017-07-28 17:06:23.356 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" completed keep alive response. +2017-07-28 17:06:23.429 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 17:06:23.429 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 17:06:23.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 17:06:26.484 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 17:06:26.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:26.494 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:26.495 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:26.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3061.8035ms +2017-07-28 17:06:26.500 +05:30 [Information] Request finished in 3096.0719ms 200 application/json; charset=utf-8 +2017-07-28 17:06:26.500 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" completed keep alive response. +2017-07-28 17:06:28.229 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" started. +2017-07-28 17:06:28.234 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 17:06:28.235 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 17:06:28.237 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 17:06:28.262 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 17:06:28.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 17:06:28.272 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 17:06:29.261 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" started. +2017-07-28 17:06:29.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=1&skip=0&count=200 +2017-07-28 17:06:29.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-07-28 17:06:29.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-07-28 17:06:29.825 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:06:30.130 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:30.131 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:06:30.132 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:30.135 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:30.138 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 1863.1021ms +2017-07-28 17:06:30.141 +05:30 [Information] Request finished in 1906.5391ms 200 application/json; charset=utf-8 +2017-07-28 17:06:30.142 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" completed keep alive response. +2017-07-28 17:06:30.693 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:06:30.699 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:30.700 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:06:30.701 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:30.702 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:30.703 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2464.2939ms +2017-07-28 17:06:30.706 +05:30 [Information] Request finished in 2477.7981ms 200 application/json; charset=utf-8 +2017-07-28 17:06:30.706 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" completed keep alive response. +2017-07-28 17:06:31.499 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["1", "0", "200"]) - ModelState is Valid +2017-07-28 17:06:32.049 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:06:32.050 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:06:32.050 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:06:32.062 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:06:32.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 2704.8534ms +2017-07-28 17:06:32.181 +05:30 [Information] Request finished in 2899.1851ms 200 application/json; charset=utf-8 +2017-07-28 17:06:32.182 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" completed keep alive response. +2017-07-28 17:08:26.364 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" received FIN. +2017-07-28 17:08:26.365 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" received FIN. +2017-07-28 17:08:26.366 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" disconnecting. +2017-07-28 17:08:26.366 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" disconnecting. +2017-07-28 17:08:26.366 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" received FIN. +2017-07-28 17:08:26.370 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" disconnecting. +2017-07-28 17:08:26.370 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" sending FIN. +2017-07-28 17:08:26.368 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" sending FIN. +2017-07-28 17:08:26.372 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" sent FIN with status "0". +2017-07-28 17:08:26.372 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" sending FIN. +2017-07-28 17:08:26.373 +05:30 [Debug] Connection id ""0HL6LJV3JSFNP"" stopped. +2017-07-28 17:08:26.377 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" sent FIN with status "0". +2017-07-28 17:08:26.378 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" started. +2017-07-28 17:08:26.379 +05:30 [Debug] Connection id ""0HL6LJV3JSFNQ"" stopped. +2017-07-28 17:08:26.381 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-07-28 17:08:26.384 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" sent FIN with status "0". +2017-07-28 17:08:26.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-07-28 17:08:26.385 +05:30 [Debug] Connection id ""0HL6LJV3JSFNO"" stopped. +2017-07-28 17:08:26.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-07-28 17:08:28.470 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-28 17:08:28.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:28.570 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:28.573 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:28.578 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2185.5299ms +2017-07-28 17:08:28.582 +05:30 [Information] Request finished in 2199.9283ms 200 application/json; charset=utf-8 +2017-07-28 17:08:28.583 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" completed keep alive response. +2017-07-28 17:08:28.652 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-28 17:08:28.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 17:08:28.653 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 17:08:31.694 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-28 17:08:31.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:31.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:31.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:31.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3052.3817ms +2017-07-28 17:08:31.710 +05:30 [Information] Request finished in 3057.888ms 200 application/json; charset=utf-8 +2017-07-28 17:08:31.711 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" completed keep alive response. +2017-07-28 17:08:48.118 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 17:08:48.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 17:08:48.121 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 17:08:48.399 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" started. +2017-07-28 17:08:48.419 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" started. +2017-07-28 17:08:48.426 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 17:08:48.430 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 17:08:48.431 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 17:08:48.456 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 17:08:48.459 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 17:08:48.466 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 17:08:49.233 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" started. +2017-07-28 17:08:49.359 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 17:08:49.362 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 17:08:49.364 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 17:08:50.078 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" started. +2017-07-28 17:08:50.080 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 17:08:50.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 17:08:50.086 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 17:08:51.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 17:08:51.370 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:51.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:51.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:51.374 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3251.637ms +2017-07-28 17:08:51.377 +05:30 [Information] Request finished in 3280.996ms 200 application/json; charset=utf-8 +2017-07-28 17:08:51.378 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" completed keep alive response. +2017-07-28 17:08:51.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:51.863 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:51.864 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:51.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:51.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:51.870 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:51.905 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3471.6707ms +2017-07-28 17:08:51.943 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:51.945 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:51.947 +05:30 [Information] Request finished in 3534.5225ms 200 application/json; charset=utf-8 +2017-07-28 17:08:51.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:51.948 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" completed keep alive response. +2017-07-28 17:08:51.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:51.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3484.8833ms +2017-07-28 17:08:51.982 +05:30 [Information] Request finished in 3545.1414ms 200 application/json; charset=utf-8 +2017-07-28 17:08:51.983 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" completed keep alive response. +2017-07-28 17:08:52.712 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 17:08:52.716 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 17:08:52.718 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 17:08:52.718 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 17:08:52.739 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 17:08:52.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:52.741 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 17:08:53.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:53.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:53.035 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:53.036 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:53.038 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3671.5593ms +2017-07-28 17:08:53.041 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" received FIN. +2017-07-28 17:08:53.042 +05:30 [Information] Request finished in 3703.3577ms 200 application/json; charset=utf-8 +2017-07-28 17:08:53.051 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" completed keep alive response. +2017-07-28 17:08:53.052 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" disconnecting. +2017-07-28 17:08:53.056 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" sending FIN. +2017-07-28 17:08:53.056 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" sent FIN with status "0". +2017-07-28 17:08:53.059 +05:30 [Debug] Connection id ""0HL6LJV3JSFNU"" stopped. +2017-07-28 17:08:53.190 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-28 17:08:53.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-28 17:08:53.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-28 17:08:53.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 17:08:53.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:53.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:53.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:53.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3192.8004ms +2017-07-28 17:08:53.284 +05:30 [Information] Request finished in 3204.7725ms 200 application/json; charset=utf-8 +2017-07-28 17:08:53.285 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" completed keep alive response. +2017-07-28 17:08:53.529 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 17:08:53.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 17:08:53.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 17:08:55.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:56.014 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:56.028 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:56.046 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:56.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:56.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:56.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3304.9484ms +2017-07-28 17:08:56.078 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:56.083 +05:30 [Information] Request finished in 3374.2367ms 200 application/json; charset=utf-8 +2017-07-28 17:08:56.084 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" completed keep alive response. +2017-07-28 17:08:56.083 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:56.088 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:56.090 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:56.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3372.7906ms +2017-07-28 17:08:56.098 +05:30 [Information] Request finished in 3389.0755ms 200 application/json; charset=utf-8 +2017-07-28 17:08:56.102 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" completed keep alive response. +2017-07-28 17:08:56.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:08:56.580 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:56.580 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:08:56.580 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:56.583 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:56.587 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3390.1137ms +2017-07-28 17:08:56.589 +05:30 [Information] Request finished in 3401.4259ms 200 application/json; charset=utf-8 +2017-07-28 17:08:56.590 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" completed keep alive response. +2017-07-28 17:08:56.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:08:56.745 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:08:56.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:08:56.752 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:08:56.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3222.0866ms +2017-07-28 17:08:56.772 +05:30 [Information] Request finished in 3241.7414ms 200 application/json; charset=utf-8 +2017-07-28 17:08:56.772 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" completed keep alive response. +2017-07-28 17:08:56.806 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-28 17:08:56.807 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-28 17:08:56.808 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-28 17:08:59.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-28 17:09:00.033 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:09:00.034 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:09:00.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:09:00.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3226.855ms +2017-07-28 17:09:00.049 +05:30 [Information] Request finished in 3241.9126ms 200 application/json; charset=utf-8 +2017-07-28 17:09:00.052 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" completed keep alive response. +2017-07-28 17:09:01.529 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=1&skip=0&count=200 +2017-07-28 17:09:01.530 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-07-28 17:09:01.533 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-07-28 17:09:04.584 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["1", "0", "200"]) - ModelState is Valid +2017-07-28 17:09:06.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:09:06.154 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:09:06.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:09:06.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:09:06.180 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 4634.8715ms +2017-07-28 17:09:06.190 +05:30 [Information] Request finished in 4656.5481ms 200 application/json; charset=utf-8 +2017-07-28 17:09:06.192 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" completed keep alive response. +2017-07-28 17:10:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" received FIN. +2017-07-28 17:10:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" received FIN. +2017-07-28 17:10:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" disconnecting. +2017-07-28 17:10:38.529 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" received FIN. +2017-07-28 17:10:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" received FIN. +2017-07-28 17:10:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" sending FIN. +2017-07-28 17:10:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" sent FIN with status "0". +2017-07-28 17:10:38.533 +05:30 [Debug] Connection id ""0HL6LJV3JSFNT"" stopped. +2017-07-28 17:10:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" disconnecting. +2017-07-28 17:10:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" sending FIN. +2017-07-28 17:10:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" sent FIN with status "0". +2017-07-28 17:10:38.534 +05:30 [Debug] Connection id ""0HL6LJV3JSFNV"" stopped. +2017-07-28 17:10:38.532 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" disconnecting. +2017-07-28 17:10:38.536 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" disconnecting. +2017-07-28 17:10:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" sending FIN. +2017-07-28 17:10:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" sent FIN with status "0". +2017-07-28 17:10:38.538 +05:30 [Debug] Connection id ""0HL6LJV3JSFNS"" stopped. +2017-07-28 17:10:38.537 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" sending FIN. +2017-07-28 17:10:38.539 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" sent FIN with status "0". +2017-07-28 17:10:38.540 +05:30 [Debug] Connection id ""0HL6LJV3JSFNR"" stopped. +2017-07-28 17:11:43.392 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" started. +2017-07-28 17:11:43.393 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 17:11:43.395 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 17:11:43.396 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 17:11:46.590 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:11:46.594 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:46.595 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:46.596 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:46.599 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3200.7004ms +2017-07-28 17:11:46.603 +05:30 [Information] Request finished in 3208.8618ms 200 application/json; charset=utf-8 +2017-07-28 17:11:46.604 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:11:46.635 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 17:11:46.636 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 17:11:46.637 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 17:11:49.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:11:49.748 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:49.748 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:49.755 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:49.762 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3123.1449ms +2017-07-28 17:11:49.767 +05:30 [Information] Request finished in 3149.1794ms 200 application/json; charset=utf-8 +2017-07-28 17:11:49.769 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:11:49.774 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 17:11:49.775 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 17:11:49.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 17:11:52.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 17:11:52.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:52.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:52.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:52.908 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3120.7828ms +2017-07-28 17:11:52.912 +05:30 [Information] Request finished in 3138.528ms 200 application/json; charset=utf-8 +2017-07-28 17:11:52.913 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:11:54.466 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" started. +2017-07-28 17:11:54.467 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 17:11:54.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 17:11:54.469 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 17:11:54.470 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 17:11:54.470 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 17:11:54.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 17:11:55.267 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" started. +2017-07-28 17:11:55.393 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=1&skip=0&count=200 +2017-07-28 17:11:55.394 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-07-28 17:11:55.423 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-07-28 17:11:58.152 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:11:58.231 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:58.235 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:11:58.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:58.238 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:58.243 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3769.7058ms +2017-07-28 17:11:58.246 +05:30 [Information] Request finished in 3778.9965ms 200 application/json; charset=utf-8 +2017-07-28 17:11:58.248 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:11:58.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:11:58.359 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:58.360 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:11:58.360 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:58.362 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:58.365 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3888.334ms +2017-07-28 17:11:58.370 +05:30 [Information] Request finished in 3901.046ms 200 application/json; charset=utf-8 +2017-07-28 17:11:58.371 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" completed keep alive response. +2017-07-28 17:11:58.667 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["1", "0", "200"]) - ModelState is Valid +2017-07-28 17:11:59.725 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:11:59.726 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:11:59.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:11:59.728 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:11:59.742 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 4302.1747ms +2017-07-28 17:11:59.745 +05:30 [Information] Request finished in 4473.9905ms 200 application/json; charset=utf-8 +2017-07-28 17:11:59.746 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" completed keep alive response. +2017-07-28 17:12:35.748 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-28 17:12:35.749 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-28 17:12:35.749 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-28 17:12:37.921 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:12:37.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:37.926 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:37.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:37.974 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2188.2916ms +2017-07-28 17:12:37.984 +05:30 [Information] Request finished in 2254.4871ms 200 application/json; charset=utf-8 +2017-07-28 17:12:37.984 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:12:38.058 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-28 17:12:38.065 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-28 17:12:38.066 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-28 17:12:41.167 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-28 17:12:41.175 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:41.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:41.179 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:41.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3113.8896ms +2017-07-28 17:12:41.190 +05:30 [Information] Request finished in 3181.3478ms 200 application/json; charset=utf-8 +2017-07-28 17:12:41.190 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" completed keep alive response. +2017-07-28 17:12:41.247 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-07-28 17:12:41.248 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-28 17:12:41.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-28 17:12:44.472 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-07-28 17:12:44.498 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:44.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:44.520 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:44.672 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3269.6848ms +2017-07-28 17:12:44.733 +05:30 [Information] Request finished in 3462.5962ms 200 application/json; charset=utf-8 +2017-07-28 17:12:44.734 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" completed keep alive response. +2017-07-28 17:12:46.632 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-28 17:12:46.634 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-28 17:12:46.633 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-28 17:12:46.635 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-28 17:12:46.640 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-28 17:12:46.651 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-28 17:12:47.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/RssFeed/getRssNewsFeedsPost?userId=1&skip=0&count=200 +2017-07-28 17:12:47.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/RssFeed/getRssNewsFeedsPost"'. +2017-07-28 17:12:47.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" +2017-07-28 17:12:48.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:12:48.973 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:48.981 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:12:48.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:48.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:48.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2333.3874ms +2017-07-28 17:12:49.005 +05:30 [Information] Request finished in 2390.805ms 200 application/json; charset=utf-8 +2017-07-28 17:12:49.009 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" completed keep alive response. +2017-07-28 17:12:49.842 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-28 17:12:49.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:49.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:12:49.851 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:49.852 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:49.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3208.7718ms +2017-07-28 17:12:49.962 +05:30 [Information] Request finished in 3309.9356ms 200 application/json; charset=utf-8 +2017-07-28 17:12:49.963 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" completed keep alive response. +2017-07-28 17:12:50.544 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" with arguments (["1", "0", "200"]) - ModelState is Valid +2017-07-28 17:12:51.587 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:12:51.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:12:51.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-28 17:12:51.594 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:12:51.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.RssFeedController.getRssNewsFeedsPost (Api.Socioboard)" in 4268.0182ms +2017-07-28 17:12:51.614 +05:30 [Information] Request finished in 4287.6289ms 200 application/json; charset=utf-8 +2017-07-28 17:12:51.614 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" completed keep alive response. +2017-07-28 17:13:48.200 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=tw_847698757219106817&userId=1&message=Bollywood%20doesn%27t%20give%20us%20due%20credit%3A%20Playback%20singers%20voice%20their%20discontent%20%20http%3A%2F%2Fwww.hindustantimes.com%2Fmusic%2Fbollywood-doesn-t-give-us-due-credit-playback-singers-voice-their-discontent%2Fstory-MnMMC92Uj7us9EcxaRC0TM.html&imagePath=http%3A%2F%2Fwww.hindustantimes.com%2Frf%2Fimage_size_630x354%2FHT%2Fp2%2F2017%2F07%2F21%2FPictures%2F_b5b94cb4-6dd9-11e7-90b5-ba41537c464e.jpg multipart/form-data; boundary=----WebKitFormBoundaryhmY5BXHqlOBwaGND 145 +2017-07-28 17:13:48.202 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-07-28 17:13:48.206 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-07-28 17:13:51.336 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["Bollywood doesn't give us due credit: Playback singers voice their discontent http://www.hindustantimes.com/music/bollywood-doesn-t-give-us-due-credit-playback-singers-voice-their-discontent/story-MnMMC92Uj7us9EcxaRC0TM.html", "tw_847698757219106817", "1", "http://www.hindustantimes.com/rf/image_size_630x354/HT/p2/2017/07/21/Pictures/_b5b94cb4-6dd9-11e7-90b5-ba41537c464e.jpg", "", "defaultUri", ""]) - ModelState is Valid +2017-07-28 17:13:51.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-28 17:13:51.348 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-28 17:13:51.351 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-07-28 17:13:51.370 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-28 17:13:51.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 3159.3037ms +2017-07-28 17:13:51.396 +05:30 [Information] Request finished in 3208.0471ms 200 text/plain; charset=utf-8 +2017-07-28 17:13:51.397 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" completed keep alive response. +2017-07-28 17:13:54.784 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.ScheduledMessage#0][SQL: INSERT INTO ScheduledMessage (shareMessage, clientTime, scheduleTime, localscheduletime, createTime, userId, profileId, profileType, picUrl, status, socialprofileName, url, link, id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)] +2017-07-28 17:13:54.786 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-07-28 17:13:54.788 +05:30 [Error] Unknown column 'localscheduletime' in 'field list' +2017-07-28 17:13:54.789 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-07-28 17:14:38.523 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" received FIN. +2017-07-28 17:14:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" disconnecting. +2017-07-28 17:14:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" received FIN. +2017-07-28 17:14:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" disconnecting. +2017-07-28 17:14:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" sending FIN. +2017-07-28 17:14:38.528 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" sending FIN. +2017-07-28 17:14:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" sent FIN with status "0". +2017-07-28 17:14:38.530 +05:30 [Debug] Connection id ""0HL6LJV3JSFO2"" stopped. +2017-07-28 17:14:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" sent FIN with status "0". +2017-07-28 17:14:38.531 +05:30 [Debug] Connection id ""0HL6LJV3JSFO0"" stopped. +2017-07-28 17:16:38.524 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" received FIN. +2017-07-28 17:16:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" disconnecting. +2017-07-28 17:16:38.526 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" sending FIN. +2017-07-28 17:16:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" sent FIN with status "0". +2017-07-28 17:16:38.527 +05:30 [Debug] Connection id ""0HL6LJV3JSFO1"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170731.txt b/src/Api.Socioboard/wwwroot/log/log-20170731.txt new file mode 100644 index 000000000..1b65d18de --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170731.txt @@ -0,0 +1,149 @@ +2017-07-31 10:20:51.515 +05:30 [Debug] Hosting starting +2017-07-31 10:20:52.814 +05:30 [Debug] Hosting started +2017-07-31 10:20:53.026 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" started. +2017-07-31 10:20:53.040 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" started. +2017-07-31 10:20:53.468 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-07-31 10:20:53.465 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-07-31 10:20:53.640 +05:30 [Information] Request finished in 248.0149ms 200 +2017-07-31 10:20:53.771 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" completed keep alive response. +2017-07-31 10:20:55.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-07-31 10:20:55.123 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b5415089-01c8-47c7-a70c-511b99e1d65f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-07-31 10:20:56.071 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-07-31 10:20:56.226 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-07-31 10:20:56.239 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-07-31 10:20:56.304 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-31 10:20:56.310 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:20:56.314 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:02.665 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 6576.6679ms +2017-07-31 10:21:02.776 +05:30 [Information] Request finished in 9474.6324ms 200 application/json; charset=utf-8 +2017-07-31 10:21:02.779 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:21:02.805 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-07-31 10:21:02.811 +05:30 [Debug] Request did not match any routes. +2017-07-31 10:21:02.830 +05:30 [Debug] The request path "" does not match the path filter +2017-07-31 10:21:02.833 +05:30 [Information] Request finished in 33.3683ms 404 +2017-07-31 10:21:02.834 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" completed keep alive response. +2017-07-31 10:21:28.796 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-31 10:21:28.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-31 10:21:28.800 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-31 10:21:32.524 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-31 10:21:38.030 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:21:38.120 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:21:38.127 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:38.379 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9576.0137ms +2017-07-31 10:21:38.383 +05:30 [Information] Request finished in 9586.4324ms 200 application/json; charset=utf-8 +2017-07-31 10:21:38.383 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:21:38.906 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-07-31 10:21:38.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-07-31 10:21:38.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-07-31 10:21:42.046 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-07-31 10:21:42.123 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:21:42.124 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:21:42.125 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:42.188 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3278.5262ms +2017-07-31 10:21:42.191 +05:30 [Information] Request finished in 3284.7281ms 200 application/json; charset=utf-8 +2017-07-31 10:21:42.192 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" completed keep alive response. +2017-07-31 10:21:42.467 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-31 10:21:42.469 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-31 10:21:42.474 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-31 10:21:45.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-31 10:21:45.515 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:21:45.516 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:21:45.518 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:45.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.9987ms +2017-07-31 10:21:45.524 +05:30 [Information] Request finished in 3074.3784ms 200 application/json; charset=utf-8 +2017-07-31 10:21:45.525 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:21:45.584 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-07-31 10:21:45.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-07-31 10:21:45.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-07-31 10:21:48.655 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-31 10:21:48.663 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:21:48.664 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:21:48.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:48.667 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.8522ms +2017-07-31 10:21:48.672 +05:30 [Information] Request finished in 3091.6224ms 200 application/json; charset=utf-8 +2017-07-31 10:21:48.674 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" completed keep alive response. +2017-07-31 10:21:48.715 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-07-31 10:21:48.715 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-07-31 10:21:48.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-07-31 10:21:51.840 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-07-31 10:21:52.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:21:52.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:21:52.758 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:21:52.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4135.6945ms +2017-07-31 10:21:52.856 +05:30 [Information] Request finished in 4171.0956ms 200 application/json; charset=utf-8 +2017-07-31 10:21:52.857 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:21:57.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-07-31 10:21:57.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-07-31 10:21:57.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-07-31 10:21:57.093 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-07-31 10:21:57.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-07-31 10:21:57.116 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-07-31 10:21:57.828 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" started. +2017-07-31 10:21:57.830 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-07-31 10:21:57.831 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-07-31 10:21:57.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-07-31 10:21:58.505 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" started. +2017-07-31 10:21:58.509 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-07-31 10:21:58.510 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-07-31 10:21:58.512 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-07-31 10:22:00.242 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-31 10:22:00.268 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-31 10:22:00.377 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-07-31 10:22:00.483 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:22:00.486 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-31 10:22:00.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:22:00.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:22:00.502 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3382.5637ms +2017-07-31 10:22:00.505 +05:30 [Information] Request finished in 3431.5584ms 200 application/json; charset=utf-8 +2017-07-31 10:22:00.507 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:22:00.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:22:00.533 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-31 10:22:00.533 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:22:00.534 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:22:00.536 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3474.737ms +2017-07-31 10:22:00.538 +05:30 [Information] Request finished in 3482.9819ms 200 application/json; charset=utf-8 +2017-07-31 10:22:00.539 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" completed keep alive response. +2017-07-31 10:22:00.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-07-31 10:22:00.661 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:22:00.661 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:22:00.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:22:00.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2151.3464ms +2017-07-31 10:22:00.667 +05:30 [Information] Request finished in 2158.7636ms 200 application/json; charset=utf-8 +2017-07-31 10:22:00.667 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" completed keep alive response. +2017-07-31 10:22:00.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-07-31 10:22:00.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-07-31 10:22:00.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-07-31 10:22:00.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:22:00.861 +05:30 [Debug] No information found on request to perform content negotiation. +2017-07-31 10:22:00.861 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:22:00.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:22:00.927 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3081.8347ms +2017-07-31 10:22:00.929 +05:30 [Information] Request finished in 3099.6289ms 200 application/json; charset=utf-8 +2017-07-31 10:22:00.930 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" completed keep alive response. +2017-07-31 10:22:02.782 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-07-31 10:22:03.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-07-31 10:22:03.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-07-31 10:22:03.048 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-07-31 10:22:03.053 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2365.5756ms +2017-07-31 10:22:03.057 +05:30 [Information] Request finished in 2375.6755ms 200 application/json; charset=utf-8 +2017-07-31 10:22:03.059 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" completed keep alive response. +2017-07-31 10:24:53.004 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" received FIN. +2017-07-31 10:24:53.004 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" received FIN. +2017-07-31 10:24:53.010 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" received FIN. +2017-07-31 10:24:53.011 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" received FIN. +2017-07-31 10:24:53.020 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" disconnecting. +2017-07-31 10:24:53.021 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" disconnecting. +2017-07-31 10:24:53.020 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" disconnecting. +2017-07-31 10:24:53.022 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" sending FIN. +2017-07-31 10:24:53.022 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" sending FIN. +2017-07-31 10:24:53.021 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" disconnecting. +2017-07-31 10:24:53.025 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" sending FIN. +2017-07-31 10:24:53.030 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" sent FIN with status "0". +2017-07-31 10:24:53.030 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" sent FIN with status "0". +2017-07-31 10:24:53.032 +05:30 [Debug] Connection id ""0HL6NPUSHTJEM"" stopped. +2017-07-31 10:24:53.032 +05:30 [Debug] Connection id ""0HL6NPUSHTJEP"" stopped. +2017-07-31 10:24:53.033 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" sent FIN with status "0". +2017-07-31 10:24:53.033 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" sending FIN. +2017-07-31 10:24:53.034 +05:30 [Debug] Connection id ""0HL6NPUSHTJEO"" stopped. +2017-07-31 10:24:53.034 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" sent FIN with status "0". +2017-07-31 10:24:53.035 +05:30 [Debug] Connection id ""0HL6NPUSHTJEN"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170801.txt b/src/Api.Socioboard/wwwroot/log/log-20170801.txt new file mode 100644 index 000000000..ea67f0f2f --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170801.txt @@ -0,0 +1,633 @@ +2017-08-01 16:42:02.149 +05:30 [Debug] Hosting starting +2017-08-01 16:42:02.743 +05:30 [Debug] Hosting started +2017-08-01 16:42:02.931 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" started. +2017-08-01 16:42:02.932 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" started. +2017-08-01 16:42:03.691 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-01 16:42:03.679 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-01 16:42:03.762 +05:30 [Information] Request finished in 374.1669ms 200 +2017-08-01 16:42:03.826 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" completed keep alive response. +2017-08-01 16:42:05.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-01 16:42:05.421 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"484df1cf-de06-4781-b845-ea1b73e66016"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-01 16:42:05.690 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-01 16:42:05.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-01 16:42:05.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-01 16:42:05.916 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 16:42:05.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 16:42:05.935 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 16:42:10.871 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 5163.7486ms +2017-08-01 16:42:10.976 +05:30 [Information] Request finished in 7586.9658ms 200 application/json; charset=utf-8 +2017-08-01 16:42:10.981 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" completed keep alive response. +2017-08-01 16:42:11.075 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-01 16:42:11.080 +05:30 [Debug] Request did not match any routes. +2017-08-01 16:42:11.103 +05:30 [Debug] The request path "" does not match the path filter +2017-08-01 16:42:11.110 +05:30 [Information] Request finished in 48.5201ms 404 +2017-08-01 16:42:11.110 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" completed keep alive response. +2017-08-01 16:42:36.800 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 16:42:36.801 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 16:42:36.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 16:42:40.479 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 16:42:47.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 16:42:47.758 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 16:42:47.774 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 16:42:47.935 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11112.671ms +2017-08-01 16:42:47.943 +05:30 [Information] Request finished in 11147.7416ms 200 application/json; charset=utf-8 +2017-08-01 16:42:47.944 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" completed keep alive response. +2017-08-01 16:42:48.608 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-01 16:42:48.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-01 16:42:48.612 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-01 16:42:51.911 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-01 16:42:51.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 16:42:51.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 16:42:51.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 16:42:52.045 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3405.6583ms +2017-08-01 16:42:52.047 +05:30 [Information] Request finished in 3438.3061ms 200 application/json; charset=utf-8 +2017-08-01 16:42:52.047 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" completed keep alive response. +2017-08-01 16:44:02.906 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" received FIN. +2017-08-01 16:44:02.906 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" received FIN. +2017-08-01 16:44:02.909 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" disconnecting. +2017-08-01 16:44:02.910 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" disconnecting. +2017-08-01 16:44:02.918 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" sending FIN. +2017-08-01 16:44:02.922 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" sending FIN. +2017-08-01 16:44:02.931 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" sent FIN with status "0". +2017-08-01 16:44:02.931 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" sent FIN with status "0". +2017-08-01 16:44:02.935 +05:30 [Debug] Connection id ""0HL6OPOHGUCA1"" stopped. +2017-08-01 16:44:02.935 +05:30 [Debug] Connection id ""0HL6OPOHGUCA0"" stopped. +2017-08-01 16:44:22.773 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" started. +2017-08-01 16:44:22.783 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/ForgotPasswordSendMail application/x-www-form-urlencoded; charset=UTF-8 36 +2017-08-01 16:44:22.784 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/ForgotPasswordSendMail"'. +2017-08-01 16:44:22.786 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" +2017-08-01 16:44:25.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" with arguments (["avinashverma@globussoft.in"]) - ModelState is Valid +2017-08-01 16:45:23.637 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 16:45:23.643 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 16:45:23.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-01 16:45:23.649 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 16:45:23.653 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.ForgotPasswordSendMail (Api.Socioboard)" in 60865.3825ms +2017-08-01 16:45:23.657 +05:30 [Information] Request finished in 60880.1067ms 200 text/plain; charset=utf-8 +2017-08-01 16:45:23.658 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" completed keep alive response. +2017-08-01 16:48:02.903 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" received FIN. +2017-08-01 16:48:02.904 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" disconnecting. +2017-08-01 16:48:02.905 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" sending FIN. +2017-08-01 16:48:02.905 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" sent FIN with status "0". +2017-08-01 16:48:02.906 +05:30 [Debug] Connection id ""0HL6OPOHGUCA2"" stopped. +2017-08-01 17:04:51.717 +05:30 [Debug] Hosting starting +2017-08-01 17:04:52.087 +05:30 [Debug] Hosting started +2017-08-01 17:04:52.302 +05:30 [Debug] Connection id ""0HL6OQ59KARV6"" started. +2017-08-01 17:04:52.302 +05:30 [Debug] Connection id ""0HL6OQ59KARV7"" started. +2017-08-01 17:04:52.613 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-01 17:04:52.636 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-01 17:04:52.754 +05:30 [Information] Request finished in 148.2719ms 200 +2017-08-01 17:04:52.815 +05:30 [Debug] Connection id ""0HL6OQ59KARV6"" completed keep alive response. +2017-08-01 17:04:53.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-01 17:04:53.921 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"162cba14-3e2f-4892-92f0-71fa54221b4c"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-01 17:04:54.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-01 17:04:54.259 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-01 17:04:54.262 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-01 17:04:54.313 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:04:54.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:04:54.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:04:54.661 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 521.2523ms +2017-08-01 17:04:54.781 +05:30 [Information] Request finished in 2245.6225ms 200 application/json; charset=utf-8 +2017-08-01 17:04:54.784 +05:30 [Debug] Connection id ""0HL6OQ59KARV7"" completed keep alive response. +2017-08-01 17:12:56.581 +05:30 [Debug] Hosting starting +2017-08-01 17:12:57.249 +05:30 [Debug] Hosting started +2017-08-01 17:12:57.272 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" started. +2017-08-01 17:12:57.272 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" started. +2017-08-01 17:12:57.520 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-01 17:12:57.567 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-01 17:12:57.656 +05:30 [Information] Request finished in 180.2821ms 200 +2017-08-01 17:12:57.723 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:12:58.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-01 17:12:58.465 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cf6a9fb9-b982-4608-8f94-b827bf37bf2a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-01 17:12:58.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-01 17:12:58.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-01 17:12:58.756 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-01 17:12:58.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:12:58.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:12:58.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:12:59.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 451.1667ms +2017-08-01 17:12:59.182 +05:30 [Information] Request finished in 1699.3792ms 200 application/json; charset=utf-8 +2017-08-01 17:12:59.184 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" completed keep alive response. +2017-08-01 17:13:32.585 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:13:32.586 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:13:32.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:13:35.996 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:13:39.628 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:39.636 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:39.639 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:39.781 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7192.1704ms +2017-08-01 17:13:39.783 +05:30 [Information] Request finished in 7198.5706ms 200 application/json; charset=utf-8 +2017-08-01 17:13:39.784 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:13:40.326 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-01 17:13:40.327 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-01 17:13:40.328 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-01 17:13:42.530 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-01 17:13:42.571 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:42.572 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:42.574 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:42.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2291.0542ms +2017-08-01 17:13:42.623 +05:30 [Information] Request finished in 2297.0094ms 200 application/json; charset=utf-8 +2017-08-01 17:13:42.624 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" completed keep alive response. +2017-08-01 17:13:42.753 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:13:42.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:13:42.756 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:13:45.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:13:45.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:45.819 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:45.820 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:45.823 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3064.5021ms +2017-08-01 17:13:45.827 +05:30 [Information] Request finished in 3074.7916ms 200 application/json; charset=utf-8 +2017-08-01 17:13:45.829 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:13:45.891 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-01 17:13:45.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-01 17:13:45.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-01 17:13:48.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:13:48.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:48.984 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:48.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:48.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3079.6775ms +2017-08-01 17:13:48.993 +05:30 [Information] Request finished in 3102.6201ms 200 application/json; charset=utf-8 +2017-08-01 17:13:48.994 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" completed keep alive response. +2017-08-01 17:13:49.004 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-01 17:13:49.005 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-01 17:13:49.007 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-01 17:13:52.077 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-01 17:13:52.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:52.405 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:52.407 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:52.473 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3464.0082ms +2017-08-01 17:13:52.476 +05:30 [Information] Request finished in 3472.0713ms 200 application/json; charset=utf-8 +2017-08-01 17:13:52.477 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:13:56.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-01 17:13:56.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-01 17:13:56.195 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-01 17:13:56.238 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-01 17:13:56.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-01 17:13:56.251 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-01 17:13:56.840 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" started. +2017-08-01 17:13:56.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-01 17:13:56.842 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-01 17:13:56.844 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-01 17:13:57.718 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" started. +2017-08-01 17:13:57.719 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:13:57.720 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:13:57.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:13:59.722 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:13:59.741 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:13:59.844 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:59.849 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:13:59.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:59.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:59.878 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3614.3662ms +2017-08-01 17:13:59.881 +05:30 [Information] Request finished in 3664.7774ms 200 application/json; charset=utf-8 +2017-08-01 17:13:59.882 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:13:59.946 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:13:59.946 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:13:59.947 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:13:59.948 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:13:59.951 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3746.5209ms +2017-08-01 17:13:59.955 +05:30 [Information] Request finished in 3772.7258ms 200 application/json; charset=utf-8 +2017-08-01 17:13:59.955 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" completed keep alive response. +2017-08-01 17:14:00.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:14:00.778 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:14:00.782 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:14:00.783 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:14:00.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:14:00.786 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3063.0387ms +2017-08-01 17:14:00.791 +05:30 [Information] Request finished in 3070.3861ms 200 application/json; charset=utf-8 +2017-08-01 17:14:00.791 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" completed keep alive response. +2017-08-01 17:14:00.813 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-01 17:14:00.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-01 17:14:00.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-01 17:14:01.162 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:14:01.162 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:14:01.163 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:14:01.165 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:14:01.240 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4392.2103ms +2017-08-01 17:14:01.246 +05:30 [Information] Request finished in 4403.1518ms 200 application/json; charset=utf-8 +2017-08-01 17:14:01.246 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:14:03.863 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-01 17:14:03.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:14:03.992 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:14:03.993 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:14:03.997 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3177.6935ms +2017-08-01 17:14:04.001 +05:30 [Information] Request finished in 3188.1407ms 200 application/json; charset=utf-8 +2017-08-01 17:14:04.003 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" completed keep alive response. +2017-08-01 17:14:06.047 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-08-01 17:14:06.050 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-08-01 17:14:06.053 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-08-01 17:14:09.102 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:14:09.170 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:14:09.171 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:14:09.174 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:14:09.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3121.7578ms +2017-08-01 17:14:09.181 +05:30 [Information] Request finished in 3137.1868ms 200 application/json; charset=utf-8 +2017-08-01 17:14:09.181 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" completed keep alive response. +2017-08-01 17:14:09.187 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-08-01 17:14:09.190 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-08-01 17:14:09.193 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-08-01 17:14:12.243 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:14:12.307 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:14:12.308 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:14:12.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:14:12.310 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3116.2376ms +2017-08-01 17:14:12.314 +05:30 [Information] Request finished in 3127.2141ms 200 application/json; charset=utf-8 +2017-08-01 17:14:12.315 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" completed keep alive response. +2017-08-01 17:14:50.088 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/Instagram/AddInstagramAccount application/x-www-form-urlencoded 56 +2017-08-01 17:14:50.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Instagram/AddInstagramAccount"'. +2017-08-01 17:14:50.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.InstagramController.AddInstagramAccount (Api.Socioboard)" +2017-08-01 17:14:53.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.InstagramController.AddInstagramAccount (Api.Socioboard)" with arguments (["1", "1", "1d43c618fadb4edeb4068d6f3be653b4"]) - ModelState is Valid +2017-08-01 17:15:18.653 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.InstagramController.AddInstagramAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:18.657 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:18.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:18.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.InstagramController.AddInstagramAccount (Api.Socioboard)" in 28571.1848ms +2017-08-01 17:15:18.679 +05:30 [Information] Request finished in 28590.8015ms 200 application/json; charset=utf-8 +2017-08-01 17:15:18.681 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:15:18.809 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" received FIN. +2017-08-01 17:15:18.810 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" received FIN. +2017-08-01 17:15:18.811 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" received FIN. +2017-08-01 17:15:18.811 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" disconnecting. +2017-08-01 17:15:18.811 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" disconnecting. +2017-08-01 17:15:18.823 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" disconnecting. +2017-08-01 17:15:18.813 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" sending FIN. +2017-08-01 17:15:18.824 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" sending FIN. +2017-08-01 17:15:18.827 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" sending FIN. +2017-08-01 17:15:18.824 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:15:18.830 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:15:18.831 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:15:18.834 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" sent FIN with status "0". +2017-08-01 17:15:18.834 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" sent FIN with status "0". +2017-08-01 17:15:18.841 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGG"" stopped. +2017-08-01 17:15:18.841 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGI"" stopped. +2017-08-01 17:15:18.842 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" sent FIN with status "0". +2017-08-01 17:15:18.843 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGF"" stopped. +2017-08-01 17:15:21.870 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:15:21.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:21.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:21.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:21.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.4051ms +2017-08-01 17:15:21.885 +05:30 [Information] Request finished in 3073.4683ms 200 application/json; charset=utf-8 +2017-08-01 17:15:21.886 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:15:21.923 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-01 17:15:21.924 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-01 17:15:21.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-01 17:15:24.997 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:15:25.004 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:25.005 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:25.006 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:25.010 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3081.889ms +2017-08-01 17:15:25.014 +05:30 [Information] Request finished in 3096.9327ms 200 application/json; charset=utf-8 +2017-08-01 17:15:25.014 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:15:25.026 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-01 17:15:25.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-01 17:15:25.028 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-01 17:15:28.082 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-01 17:15:28.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:28.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:28.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:28.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3067.4121ms +2017-08-01 17:15:28.101 +05:30 [Information] Request finished in 3075.948ms 200 application/json; charset=utf-8 +2017-08-01 17:15:28.102 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:15:29.411 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" started. +2017-08-01 17:15:29.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-01 17:15:29.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-01 17:15:29.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-01 17:15:29.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-01 17:15:29.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-01 17:15:29.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-01 17:15:29.865 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" started. +2017-08-01 17:15:29.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-01 17:15:29.870 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-01 17:15:29.872 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-01 17:15:30.752 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" started. +2017-08-01 17:15:30.761 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:15:30.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:15:30.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:15:31.714 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:15:31.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:31.726 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:15:31.727 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:31.850 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:31.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2400.5678ms +2017-08-01 17:15:31.974 +05:30 [Information] Request finished in 2550.214ms 200 application/json; charset=utf-8 +2017-08-01 17:15:31.975 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" completed keep alive response. +2017-08-01 17:15:32.669 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:15:32.758 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:32.759 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:15:32.760 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:32.762 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:32.764 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3313.9431ms +2017-08-01 17:15:32.767 +05:30 [Information] Request finished in 3354.2515ms 200 application/json; charset=utf-8 +2017-08-01 17:15:32.768 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" completed keep alive response. +2017-08-01 17:15:33.098 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:15:33.161 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:15:33.227 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:33.228 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:33.229 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:33.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2466.7941ms +2017-08-01 17:15:33.252 +05:30 [Information] Request finished in 2491.1292ms 200 application/json; charset=utf-8 +2017-08-01 17:15:33.254 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" completed keep alive response. +2017-08-01 17:15:33.327 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-01 17:15:33.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-01 17:15:33.360 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-01 17:15:33.395 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:33.395 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:15:33.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:33.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:33.399 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3525.3817ms +2017-08-01 17:15:33.401 +05:30 [Information] Request finished in 3532.151ms 200 application/json; charset=utf-8 +2017-08-01 17:15:33.402 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" completed keep alive response. +2017-08-01 17:15:36.401 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-01 17:15:36.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:15:36.436 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:15:36.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:15:36.442 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3079.0991ms +2017-08-01 17:15:36.446 +05:30 [Information] Request finished in 3140.5071ms 200 application/json; charset=utf-8 +2017-08-01 17:15:36.446 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" completed keep alive response. +2017-08-01 17:16:57.240 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" received FIN. +2017-08-01 17:16:57.241 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" disconnecting. +2017-08-01 17:16:57.245 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" received FIN. +2017-08-01 17:16:57.247 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" disconnecting. +2017-08-01 17:16:57.244 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" received FIN. +2017-08-01 17:16:57.249 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" sending FIN. +2017-08-01 17:16:57.252 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" sent FIN with status "0". +2017-08-01 17:16:57.252 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" disconnecting. +2017-08-01 17:16:57.252 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGK"" stopped. +2017-08-01 17:16:57.251 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" received FIN. +2017-08-01 17:16:57.256 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" sending FIN. +2017-08-01 17:16:57.256 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" sending FIN. +2017-08-01 17:16:57.258 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" sent FIN with status "0". +2017-08-01 17:16:57.259 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGL"" stopped. +2017-08-01 17:16:57.260 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" sent FIN with status "0". +2017-08-01 17:16:57.261 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGH"" stopped. +2017-08-01 17:16:57.256 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" disconnecting. +2017-08-01 17:16:57.262 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" sending FIN. +2017-08-01 17:16:57.263 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" sent FIN with status "0". +2017-08-01 17:16:57.265 +05:30 [Debug] Connection id ""0HL6OQ9Q5ALGJ"" stopped. +2017-08-01 17:41:06.614 +05:30 [Debug] Hosting starting +2017-08-01 17:41:07.462 +05:30 [Debug] Hosting started +2017-08-01 17:41:07.567 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" started. +2017-08-01 17:41:07.574 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" started. +2017-08-01 17:41:07.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-01 17:41:07.883 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-01 17:41:07.983 +05:30 [Information] Request finished in 149.527ms 200 +2017-08-01 17:41:08.145 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:41:09.098 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-01 17:41:09.155 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"2b6ac95c-df41-47b9-bbcf-854825703e8f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-01 17:41:09.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-01 17:41:09.487 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-01 17:41:09.491 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-01 17:41:09.547 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:41:09.553 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:09.557 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:09.966 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 624.177ms +2017-08-01 17:41:10.068 +05:30 [Information] Request finished in 2325.451ms 200 application/json; charset=utf-8 +2017-08-01 17:41:10.071 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:41:23.962 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:41:23.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:41:23.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:41:27.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:41:31.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:31.782 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:31.784 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:31.937 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7959.146ms +2017-08-01 17:41:31.939 +05:30 [Information] Request finished in 7978.3843ms 200 application/json; charset=utf-8 +2017-08-01 17:41:31.940 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:41:32.404 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-01 17:41:32.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-01 17:41:32.407 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-01 17:41:35.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-01 17:41:35.577 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:35.578 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:35.579 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:35.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3218.9842ms +2017-08-01 17:41:35.629 +05:30 [Information] Request finished in 3225.1841ms 200 application/json; charset=utf-8 +2017-08-01 17:41:35.630 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:41:39.521 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-01 17:41:39.522 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-01 17:41:39.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-01 17:41:42.556 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-01 17:41:42.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:42.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:42.796 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:42.798 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3272.1012ms +2017-08-01 17:41:42.800 +05:30 [Information] Request finished in 3278.3803ms 200 application/json; charset=utf-8 +2017-08-01 17:41:42.801 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:41:42.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:41:42.921 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:41:42.925 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:41:45.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:41:45.980 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:45.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:45.983 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:45.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3058.3965ms +2017-08-01 17:41:45.987 +05:30 [Information] Request finished in 3067.5055ms 200 application/json; charset=utf-8 +2017-08-01 17:41:45.989 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:41:46.026 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-01 17:41:46.027 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-01 17:41:46.029 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-01 17:41:49.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:41:49.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:49.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:49.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:49.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3048.5556ms +2017-08-01 17:41:49.083 +05:30 [Information] Request finished in 3056.8746ms 200 application/json; charset=utf-8 +2017-08-01 17:41:49.084 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:41:49.114 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-01 17:41:49.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-01 17:41:49.126 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-01 17:41:52.185 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-01 17:41:52.283 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:52.284 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:52.285 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:52.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3194.0383ms +2017-08-01 17:41:52.327 +05:30 [Information] Request finished in 3221.196ms 200 application/json; charset=utf-8 +2017-08-01 17:41:52.328 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:41:54.056 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-01 17:41:54.057 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-01 17:41:54.058 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-01 17:41:54.059 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-01 17:41:54.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-01 17:41:54.062 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-01 17:41:54.494 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" started. +2017-08-01 17:41:54.546 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-01 17:41:54.547 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-01 17:41:54.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-01 17:41:55.214 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" started. +2017-08-01 17:41:55.218 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:41:55.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:41:55.220 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:41:57.142 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:41:57.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:41:57.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:57.212 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:41:57.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:57.217 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:57.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3171.3708ms +2017-08-01 17:41:57.266 +05:30 [Information] Request finished in 3209.0585ms 200 application/json; charset=utf-8 +2017-08-01 17:41:57.267 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:41:57.290 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:57.290 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:41:57.291 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:57.292 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:57.296 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3234.7489ms +2017-08-01 17:41:57.299 +05:30 [Information] Request finished in 3244.2621ms 200 application/json; charset=utf-8 +2017-08-01 17:41:57.299 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:41:57.595 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:41:57.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:57.914 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:41:57.914 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:57.915 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:57.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3433.1941ms +2017-08-01 17:41:57.986 +05:30 [Information] Request finished in 3488.4667ms 200 application/json; charset=utf-8 +2017-08-01 17:41:57.987 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" completed keep alive response. +2017-08-01 17:41:58.262 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:41:58.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:41:58.265 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:41:58.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:41:58.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.0886ms +2017-08-01 17:41:58.270 +05:30 [Information] Request finished in 3054.9508ms 200 application/json; charset=utf-8 +2017-08-01 17:41:58.271 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" completed keep alive response. +2017-08-01 17:41:58.281 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-01 17:41:58.282 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-01 17:41:58.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-01 17:42:01.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-01 17:42:01.387 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:01.388 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:01.389 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:01.391 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3104.296ms +2017-08-01 17:42:01.393 +05:30 [Information] Request finished in 3111.9423ms 200 application/json; charset=utf-8 +2017-08-01 17:42:01.394 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:42:11.835 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/GroupProfiles/DeleteProfile?groupId=1&userId=1&profileId=179989046 0 +2017-08-01 17:42:11.836 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/DeleteProfile"'. +2017-08-01 17:42:11.838 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" +2017-08-01 17:42:14.889 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" with arguments (["1", "1", "179989046"]) - ModelState is Valid +2017-08-01 17:42:15.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:15.159 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:42:15.160 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-01 17:42:15.161 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:15.163 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.DeleteProfile (Api.Socioboard)" in 3324.7647ms +2017-08-01 17:42:15.170 +05:30 [Information] Request finished in 3335.3966ms 200 text/plain; charset=utf-8 +2017-08-01 17:42:15.171 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:42:15.212 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:42:15.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:42:15.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:42:18.249 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:42:18.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:18.252 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:18.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:18.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3039.2668ms +2017-08-01 17:42:18.259 +05:30 [Information] Request finished in 3045.5263ms 200 application/json; charset=utf-8 +2017-08-01 17:42:18.259 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" completed keep alive response. +2017-08-01 17:42:18.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-01 17:42:18.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-01 17:42:18.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-01 17:42:21.341 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:42:21.348 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:21.349 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:21.351 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:21.354 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3068.4567ms +2017-08-01 17:42:21.359 +05:30 [Information] Request finished in 3078.3814ms 200 application/json; charset=utf-8 +2017-08-01 17:42:21.360 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" completed keep alive response. +2017-08-01 17:42:21.375 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-01 17:42:21.376 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-01 17:42:21.377 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-01 17:42:24.440 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-01 17:42:24.448 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:24.449 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:24.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:24.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3073.81ms +2017-08-01 17:42:24.458 +05:30 [Information] Request finished in 3083.2222ms 200 application/json; charset=utf-8 +2017-08-01 17:42:24.459 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:42:25.758 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-01 17:42:25.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-01 17:42:25.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-01 17:42:25.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-01 17:42:25.762 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-01 17:42:25.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-01 17:42:26.177 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-01 17:42:26.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-01 17:42:26.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-01 17:42:26.985 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-01 17:42:26.986 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-01 17:42:26.986 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-01 17:42:28.873 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:42:28.924 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:42:28.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:28.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:28.977 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:42:28.978 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:28.977 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:42:28.980 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:28.981 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:28.989 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3221.2904ms +2017-08-01 17:42:28.991 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:29.015 +05:30 [Information] Request finished in 3238.6896ms 200 application/json; charset=utf-8 +2017-08-01 17:42:29.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3224.8673ms +2017-08-01 17:42:29.017 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:42:29.022 +05:30 [Information] Request finished in 3266.6376ms 200 application/json; charset=utf-8 +2017-08-01 17:42:29.023 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" completed keep alive response. +2017-08-01 17:42:29.265 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:42:29.444 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:29.444 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-01 17:42:29.445 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:29.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:29.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3268.0241ms +2017-08-01 17:42:29.455 +05:30 [Information] Request finished in 3276.5789ms 200 application/json; charset=utf-8 +2017-08-01 17:42:29.455 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" completed keep alive response. +2017-08-01 17:42:30.026 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-01 17:42:30.030 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:30.031 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:30.033 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:30.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.464ms +2017-08-01 17:42:30.040 +05:30 [Information] Request finished in 3056.8988ms 200 application/json; charset=utf-8 +2017-08-01 17:42:30.041 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" completed keep alive response. +2017-08-01 17:42:30.053 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-01 17:42:30.054 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-01 17:42:30.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-01 17:42:33.121 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-01 17:42:33.158 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:42:33.159 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:42:33.160 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:42:33.164 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3106.3466ms +2017-08-01 17:42:33.176 +05:30 [Information] Request finished in 3123.3714ms 200 application/json; charset=utf-8 +2017-08-01 17:42:33.177 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" completed keep alive response. +2017-08-01 17:43:09.771 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-08-01 17:43:09.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-08-01 17:43:09.773 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-08-01 17:43:12.819 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:43:12.887 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:43:12.887 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:43:12.888 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:43:12.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3115.2586ms +2017-08-01 17:43:12.893 +05:30 [Information] Request finished in 3121.6707ms 200 application/json; charset=utf-8 +2017-08-01 17:43:12.894 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" completed keep alive response. +2017-08-01 17:43:12.907 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-08-01 17:43:12.907 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-08-01 17:43:12.908 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-08-01 17:43:15.945 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-01 17:43:16.008 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-01 17:43:16.009 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-01 17:43:16.010 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-01 17:43:16.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3102.4433ms +2017-08-01 17:43:16.014 +05:30 [Information] Request finished in 3113.4447ms 200 application/json; charset=utf-8 +2017-08-01 17:43:16.014 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" completed keep alive response. +2017-08-01 17:45:07.535 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" received FIN. +2017-08-01 17:45:07.535 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" received FIN. +2017-08-01 17:45:07.538 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" received FIN. +2017-08-01 17:45:07.537 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" received FIN. +2017-08-01 17:45:07.539 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" disconnecting. +2017-08-01 17:45:07.545 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" disconnecting. +2017-08-01 17:45:07.545 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" disconnecting. +2017-08-01 17:45:07.547 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" sending FIN. +2017-08-01 17:45:07.546 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" sending FIN. +2017-08-01 17:45:07.546 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" disconnecting. +2017-08-01 17:45:07.552 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" sending FIN. +2017-08-01 17:45:07.563 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" sent FIN with status "0". +2017-08-01 17:45:07.563 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" sent FIN with status "0". +2017-08-01 17:45:07.567 +05:30 [Debug] Connection id ""0HL6OQPHT6O68"" stopped. +2017-08-01 17:45:07.567 +05:30 [Debug] Connection id ""0HL6OQPHT6O66"" stopped. +2017-08-01 17:45:07.568 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" sent FIN with status "0". +2017-08-01 17:45:07.570 +05:30 [Debug] Connection id ""0HL6OQPHT6O67"" stopped. +2017-08-01 17:45:07.570 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" sending FIN. +2017-08-01 17:45:07.572 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" sent FIN with status "0". +2017-08-01 17:45:07.573 +05:30 [Debug] Connection id ""0HL6OQPHT6O69"" stopped. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170805.txt b/src/Api.Socioboard/wwwroot/log/log-20170805.txt new file mode 100644 index 000000000..e8103b335 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170805.txt @@ -0,0 +1,770 @@ +2017-08-05 10:25:35.363 +05:30 [Debug] Hosting starting +2017-08-05 10:25:37.519 +05:30 [Debug] Hosting started +2017-08-05 10:25:37.701 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" started. +2017-08-05 10:25:37.730 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" started. +2017-08-05 10:25:38.955 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-05 10:25:39.326 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-05 10:25:39.680 +05:30 [Information] Request finished in 1285.5494ms 200 +2017-08-05 10:25:39.828 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" completed keep alive response. +2017-08-05 10:25:43.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-05 10:25:43.798 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ed5a4da2-4c39-4ead-8c52-ad8df77fdc70"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-05 10:25:45.784 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-05 10:25:46.111 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-05 10:25:46.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-05 10:25:46.213 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:25:46.270 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:25:46.589 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:25:47.954 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1840.6866ms +2017-08-05 10:25:49.095 +05:30 [Information] Request finished in 10816.4433ms 200 application/json; charset=utf-8 +2017-08-05 10:25:49.097 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" completed keep alive response. +2017-08-05 10:25:49.556 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-05 10:25:49.563 +05:30 [Debug] Request did not match any routes. +2017-08-05 10:25:49.591 +05:30 [Debug] The request path "" does not match the path filter +2017-08-05 10:25:50.182 +05:30 [Information] Request finished in 566.7757ms 404 +2017-08-05 10:25:50.186 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" completed keep alive response. +2017-08-05 10:27:01.076 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" received FIN. +2017-08-05 10:27:01.084 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" started. +2017-08-05 10:27:01.086 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" disconnecting. +2017-08-05 10:27:01.090 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" sending FIN. +2017-08-05 10:27:01.097 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" sent FIN with status "0". +2017-08-05 10:27:01.107 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" received FIN. +2017-08-05 10:27:01.241 +05:30 [Debug] Connection id ""0HL6RNORDQSU2"" stopped. +2017-08-05 10:27:01.854 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" disconnecting. +2017-08-05 10:27:02.007 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:27:02.008 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:27:02.012 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:27:02.008 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" sending FIN. +2017-08-05 10:27:02.014 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" sent FIN with status "0". +2017-08-05 10:27:02.014 +05:30 [Debug] Connection id ""0HL6RNORDQSU3"" stopped. +2017-08-05 10:27:24.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:28:07.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:07.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:07.315 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:08.516 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 65586.0378ms +2017-08-05 10:28:09.116 +05:30 [Information] Request finished in 67830.4229ms 200 application/json; charset=utf-8 +2017-08-05 10:28:09.118 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:28:25.275 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-05 10:28:25.276 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-05 10:28:25.278 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-05 10:28:28.799 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 10:28:28.905 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:28.909 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:28.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:29.063 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3711.859ms +2017-08-05 10:28:29.148 +05:30 [Information] Request finished in 3823.5917ms 200 application/json; charset=utf-8 +2017-08-05 10:28:29.149 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:28:35.854 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-05 10:28:35.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-05 10:28:35.866 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-05 10:28:39.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 10:28:39.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:39.860 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:39.910 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:39.985 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4043.581ms +2017-08-05 10:28:40.046 +05:30 [Information] Request finished in 4193.9553ms 200 application/json; charset=utf-8 +2017-08-05 10:28:40.046 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:28:40.182 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:28:40.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:28:40.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:28:42.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:28:42.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:42.870 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:42.878 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:42.885 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2691.2174ms +2017-08-05 10:28:42.892 +05:30 [Information] Request finished in 2714.5369ms 200 application/json; charset=utf-8 +2017-08-05 10:28:42.893 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:28:42.950 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-05 10:28:42.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-05 10:28:42.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-05 10:28:46.167 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:28:46.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:46.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:46.182 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:46.187 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3226.0017ms +2017-08-05 10:28:46.192 +05:30 [Information] Request finished in 3242.6261ms 200 application/json; charset=utf-8 +2017-08-05 10:28:46.193 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:28:46.208 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-05 10:28:46.210 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-05 10:28:46.212 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-05 10:28:49.510 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-05 10:28:50.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:28:50.129 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:28:50.283 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:28:50.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 4231.209ms +2017-08-05 10:28:50.495 +05:30 [Information] Request finished in 4287.0663ms 200 application/json; charset=utf-8 +2017-08-05 10:28:50.497 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:29:06.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-05 10:29:06.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-05 10:29:06.080 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-05 10:29:06.103 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" started. +2017-08-05 10:29:06.197 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-05 10:29:06.198 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-05 10:29:06.199 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-05 10:29:06.456 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" started. +2017-08-05 10:29:06.473 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-05 10:29:06.473 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-05 10:29:06.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-05 10:29:07.760 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" started. +2017-08-05 10:29:07.763 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:29:07.764 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:29:07.769 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:29:13.535 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:29:13.569 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:29:13.627 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:29:13.771 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:13.800 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:29:13.801 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:13.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:13.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7753.6427ms +2017-08-05 10:29:13.906 +05:30 [Information] Request finished in 7818.689ms 200 application/json; charset=utf-8 +2017-08-05 10:29:13.907 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:29:13.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:13.939 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:29:13.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:13.942 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:14.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7773.6181ms +2017-08-05 10:29:14.088 +05:30 [Information] Request finished in 7897.3897ms 200 application/json; charset=utf-8 +2017-08-05 10:29:14.089 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" completed keep alive response. +2017-08-05 10:29:14.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:14.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:29:14.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:14.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:14.486 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 8009.5359ms +2017-08-05 10:29:14.489 +05:30 [Information] Request finished in 8027.2661ms 200 application/json; charset=utf-8 +2017-08-05 10:29:14.490 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" completed keep alive response. +2017-08-05 10:29:14.663 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:29:14.667 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:14.668 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:14.679 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:14.683 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 6911.1438ms +2017-08-05 10:29:14.691 +05:30 [Information] Request finished in 6928.5164ms 200 application/json; charset=utf-8 +2017-08-05 10:29:14.693 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" completed keep alive response. +2017-08-05 10:29:14.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-05 10:29:14.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-05 10:29:14.721 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-05 10:29:18.056 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-05 10:29:18.091 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:18.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:18.097 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:18.106 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3375.9662ms +2017-08-05 10:29:18.116 +05:30 [Information] Request finished in 3401.2549ms 200 application/json; charset=utf-8 +2017-08-05 10:29:18.117 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" completed keep alive response. +2017-08-05 10:29:29.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroups?userId=1 +2017-08-05 10:29:29.563 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroups"'. +2017-08-05 10:29:29.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" +2017-08-05 10:29:32.989 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:29:33.521 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:33.522 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:33.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:33.541 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroups (Api.Socioboard)" in 3962.9783ms +2017-08-05 10:29:33.701 +05:30 [Information] Request finished in 4205.9422ms 200 application/json; charset=utf-8 +2017-08-05 10:29:33.702 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" completed keep alive response. +2017-08-05 10:29:34.239 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetGroupProfiles?groupId=1 +2017-08-05 10:29:34.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetGroupProfiles"'. +2017-08-05 10:29:34.246 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" +2017-08-05 10:29:36.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:29:36.857 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:29:36.928 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:29:37.458 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:29:37.474 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetGroupProfiles (Api.Socioboard)" in 3211.0303ms +2017-08-05 10:29:37.505 +05:30 [Information] Request finished in 3724.6636ms 200 application/json; charset=utf-8 +2017-08-05 10:29:37.506 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" completed keep alive response. +2017-08-05 10:31:37.666 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" received FIN. +2017-08-05 10:31:37.667 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" received FIN. +2017-08-05 10:31:37.667 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" disconnecting. +2017-08-05 10:31:37.666 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" received FIN. +2017-08-05 10:31:37.675 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" received FIN. +2017-08-05 10:31:37.674 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" sending FIN. +2017-08-05 10:31:37.676 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" sent FIN with status "0". +2017-08-05 10:31:37.676 +05:30 [Debug] Connection id ""0HL6RNORDQSU7"" stopped. +2017-08-05 10:31:37.676 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" disconnecting. +2017-08-05 10:31:37.678 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" sending FIN. +2017-08-05 10:31:37.678 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" disconnecting. +2017-08-05 10:31:37.679 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" disconnecting. +2017-08-05 10:31:37.680 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" sending FIN. +2017-08-05 10:31:37.678 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" sent FIN with status "0". +2017-08-05 10:31:37.680 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" sent FIN with status "0". +2017-08-05 10:31:37.682 +05:30 [Debug] Connection id ""0HL6RNORDQSU5"" stopped. +2017-08-05 10:31:37.681 +05:30 [Debug] Connection id ""0HL6RNORDQSU4"" stopped. +2017-08-05 10:31:37.683 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" sending FIN. +2017-08-05 10:31:37.683 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" sent FIN with status "0". +2017-08-05 10:31:37.683 +05:30 [Debug] Connection id ""0HL6RNORDQSU6"" stopped. +2017-08-05 10:41:12.149 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" started. +2017-08-05 10:41:12.185 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/LinkedIn/AddLinkedInAccount application/x-www-form-urlencoded 139 +2017-08-05 10:41:12.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/LinkedIn/AddLinkedInAccount"'. +2017-08-05 10:41:12.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" +2017-08-05 10:41:13.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" with arguments (["AQS-7fUacGF5syktriey2hudVbq9isq5zlQ-Afr6qCxkCmksIfR7qfJD2SRDL3nID786ckxglKjWmwusq_Zogi05byeQZEhbqwgWXGN_yKljhvoEqaE", "1", "1"]) - ModelState is Valid +2017-08-05 10:41:19.862 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:19.864 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:19.867 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:19.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.LinkedInController.AddLinkedInAccount (Api.Socioboard)" in 7679.9076ms +2017-08-05 10:41:19.884 +05:30 [Information] Request finished in 7726.8731ms 200 application/json; charset=utf-8 +2017-08-05 10:41:19.884 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:41:20.426 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:41:20.427 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:41:20.428 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:41:22.723 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:41:22.729 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:22.729 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:22.732 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:22.738 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2304.0787ms +2017-08-05 10:41:22.746 +05:30 [Information] Request finished in 2319.1803ms 200 application/json; charset=utf-8 +2017-08-05 10:41:22.747 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:41:22.812 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-05 10:41:22.814 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-05 10:41:22.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-05 10:41:26.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:41:26.128 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:26.128 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:26.131 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:26.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3313.4469ms +2017-08-05 10:41:26.147 +05:30 [Information] Request finished in 3332.5348ms 200 application/json; charset=utf-8 +2017-08-05 10:41:26.148 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:41:26.154 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-05 10:41:26.155 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-05 10:41:26.155 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-05 10:41:29.325 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-05 10:41:29.335 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:29.337 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:29.340 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:29.346 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3185.4698ms +2017-08-05 10:41:29.354 +05:30 [Information] Request finished in 3199.9559ms 200 application/json; charset=utf-8 +2017-08-05 10:41:29.355 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:41:31.606 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" started. +2017-08-05 10:41:31.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-05 10:41:31.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-05 10:41:31.633 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-05 10:41:31.646 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-05 10:41:31.687 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-05 10:41:31.706 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-05 10:41:32.549 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" started. +2017-08-05 10:41:32.612 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-05 10:41:32.612 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-05 10:41:32.613 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-05 10:41:33.349 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" started. +2017-08-05 10:41:33.358 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:41:33.359 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:41:33.369 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:41:34.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:41:35.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:41:35.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:35.039 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:41:35.040 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:35.090 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:35.090 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:41:35.091 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:35.089 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:35.093 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:35.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3386.7678ms +2017-08-05 10:41:35.104 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3460.4089ms +2017-08-05 10:41:35.107 +05:30 [Information] Request finished in 3482.1079ms 200 application/json; charset=utf-8 +2017-08-05 10:41:35.108 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:41:35.114 +05:30 [Information] Request finished in 3492.4547ms 200 application/json; charset=utf-8 +2017-08-05 10:41:35.115 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" completed keep alive response. +2017-08-05 10:41:35.806 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:41:35.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:41:35.818 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:35.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:35.843 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:35.891 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2472.8513ms +2017-08-05 10:41:35.962 +05:30 [Information] Request finished in 2580.9202ms 200 application/json; charset=utf-8 +2017-08-05 10:41:35.962 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" completed keep alive response. +2017-08-05 10:41:36.057 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-05 10:41:36.059 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-05 10:41:36.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-05 10:41:36.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:36.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:41:36.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:36.155 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:36.161 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3543.09ms +2017-08-05 10:41:36.163 +05:30 [Information] Request finished in 3609.054ms 200 application/json; charset=utf-8 +2017-08-05 10:41:36.164 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" completed keep alive response. +2017-08-05 10:41:39.279 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-05 10:41:39.331 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:41:39.332 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:41:39.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:41:39.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3235.8526ms +2017-08-05 10:41:39.339 +05:30 [Information] Request finished in 3308.8841ms 200 application/json; charset=utf-8 +2017-08-05 10:41:39.339 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" completed keep alive response. +2017-08-05 10:43:37.682 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" received FIN. +2017-08-05 10:43:37.682 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" received FIN. +2017-08-05 10:43:37.682 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" disconnecting. +2017-08-05 10:43:37.686 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" sending FIN. +2017-08-05 10:43:37.687 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" sent FIN with status "0". +2017-08-05 10:43:37.687 +05:30 [Debug] Connection id ""0HL6RNORDQSU9"" stopped. +2017-08-05 10:43:37.688 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" received FIN. +2017-08-05 10:43:37.695 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" disconnecting. +2017-08-05 10:43:37.699 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" received FIN. +2017-08-05 10:43:37.712 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" sending FIN. +2017-08-05 10:43:37.714 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" sent FIN with status "0". +2017-08-05 10:43:37.711 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" disconnecting. +2017-08-05 10:43:37.716 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" sending FIN. +2017-08-05 10:43:37.716 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" sent FIN with status "0". +2017-08-05 10:43:37.716 +05:30 [Debug] Connection id ""0HL6RNORDQSUA"" stopped. +2017-08-05 10:43:37.713 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" disconnecting. +2017-08-05 10:43:37.717 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" sending FIN. +2017-08-05 10:43:37.717 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" sent FIN with status "0". +2017-08-05 10:43:37.718 +05:30 [Debug] Connection id ""0HL6RNORDQSU8"" stopped. +2017-08-05 10:43:37.714 +05:30 [Debug] Connection id ""0HL6RNORDQSUB"" stopped. +2017-08-05 10:43:42.092 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" started. +2017-08-05 10:43:42.113 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:43:42.114 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:43:42.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:43:44.378 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:43:44.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:43:44.382 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:43:44.383 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:43:44.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2269.104ms +2017-08-05 10:43:44.388 +05:30 [Information] Request finished in 2290.8163ms 200 application/json; charset=utf-8 +2017-08-05 10:43:44.389 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:43:44.400 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-08-05 10:43:44.401 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-08-05 10:43:44.403 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-08-05 10:43:47.610 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["83", "8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:43:47.664 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-08-05 10:43:47.671 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-08-05 10:43:47.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3268.9869ms +2017-08-05 10:43:47.675 +05:30 [Information] Request finished in 3274.6262ms 200 +2017-08-05 10:43:47.676 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:43:50.943 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:43:50.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:43:50.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:43:53.252 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:43:53.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:43:53.256 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:43:53.258 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:43:53.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2314.1371ms +2017-08-05 10:43:53.283 +05:30 [Information] Request finished in 2343.2642ms 200 application/json; charset=utf-8 +2017-08-05 10:43:53.286 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:43:59.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-05 10:43:59.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-05 10:43:59.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-05 10:44:02.361 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 10:44:02.510 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:02.511 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:02.512 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:02.519 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3298.1047ms +2017-08-05 10:44:02.527 +05:30 [Information] Request finished in 3335.6713ms 200 application/json; charset=utf-8 +2017-08-05 10:44:02.528 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:02.766 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=avinashverma@globussoft.in +2017-08-05 10:44:02.769 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-05 10:44:02.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-05 10:44:05.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["avinashverma@globussoft.in"]) - ModelState is Valid +2017-08-05 10:44:05.944 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:05.946 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:05.952 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:05.956 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3181.7503ms +2017-08-05 10:44:05.974 +05:30 [Information] Request finished in 3205.8018ms 200 application/json; charset=utf-8 +2017-08-05 10:44:05.977 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:06.000 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 17 +2017-08-05 10:44:06.001 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-05 10:44:06.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-05 10:44:09.218 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Topaz"]) - ModelState is Valid +2017-08-05 10:44:09.229 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:09.231 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:09.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:09.261 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3253.2795ms +2017-08-05 10:44:09.268 +05:30 [Information] Request finished in 3268.3376ms 200 application/json; charset=utf-8 +2017-08-05 10:44:09.269 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:28.042 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:44:28.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:44:28.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:44:31.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4d59dfca6f3bd"]) - ModelState is Valid +2017-08-05 10:44:31.797 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:31.798 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:31.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:31.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3688.3818ms +2017-08-05 10:44:31.812 +05:30 [Information] Request finished in 3835.8835ms 200 application/json; charset=utf-8 +2017-08-05 10:44:31.813 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:33.744 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-05 10:44:33.746 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-05 10:44:33.747 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-05 10:44:36.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 10:44:36.578 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:36.579 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:36.602 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:36.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2855.2177ms +2017-08-05 10:44:36.713 +05:30 [Information] Request finished in 2907.4438ms 200 application/json; charset=utf-8 +2017-08-05 10:44:36.714 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:36.862 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-05 10:44:36.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-05 10:44:36.863 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-05 10:44:40.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-05 10:44:40.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:40.047 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:40.049 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:40.051 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3185.726ms +2017-08-05 10:44:40.054 +05:30 [Information] Request finished in 3198.3916ms 200 application/json; charset=utf-8 +2017-08-05 10:44:40.055 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:41.865 +05:30 [Debug] Connection id ""0HL6RNORDQSUD"" started. +2017-08-05 10:44:41.897 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-05 10:44:41.906 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-05 10:44:41.907 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-05 10:44:41.942 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-05 10:44:41.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-05 10:44:41.946 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-05 10:44:42.627 +05:30 [Debug] Connection id ""0HL6RNORDQSUE"" started. +2017-08-05 10:44:43.264 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-05 10:44:43.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-05 10:44:43.376 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-05 10:44:43.535 +05:30 [Debug] Connection id ""0HL6RNORDQSUF"" started. +2017-08-05 10:44:43.537 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-05 10:44:43.538 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-05 10:44:43.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-05 10:44:48.760 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:44:48.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:44:48.789 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:48.790 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:44:48.790 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:48.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:48.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 6872.5042ms +2017-08-05 10:44:48.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:48.871 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:44:48.871 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:48.874 +05:30 [Information] Request finished in 7001.1752ms 200 application/json; charset=utf-8 +2017-08-05 10:44:48.874 +05:30 [Debug] Connection id ""0HL6RNORDQSUD"" completed keep alive response. +2017-08-05 10:44:48.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:48.884 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 6971.8207ms +2017-08-05 10:44:48.888 +05:30 [Information] Request finished in 7017.9897ms 200 application/json; charset=utf-8 +2017-08-05 10:44:48.889 +05:30 [Debug] Connection id ""0HL6RNORDQSUC"" completed keep alive response. +2017-08-05 10:44:49.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:44:50.085 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:50.085 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:44:50.086 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:50.088 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:50.092 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 6704.7891ms +2017-08-05 10:44:50.095 +05:30 [Information] Request finished in 7236.6011ms 200 application/json; charset=utf-8 +2017-08-05 10:44:50.096 +05:30 [Debug] Connection id ""0HL6RNORDQSUE"" completed keep alive response. +2017-08-05 10:44:50.739 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-05 10:44:50.838 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:44:50.838 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:44:50.840 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:44:50.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7300.4589ms +2017-08-05 10:44:50.845 +05:30 [Information] Request finished in 7307.8804ms 200 application/json; charset=utf-8 +2017-08-05 10:44:50.845 +05:30 [Debug] Connection id ""0HL6RNORDQSUF"" completed keep alive response. +2017-08-05 10:45:00.419 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=lin_SJ8otT3IU6&userId=1&message=test%20linkedin%20compose&shortnerstatus=0 multipart/form-data; boundary=----WebKitFormBoundary8mWNxwGu1xHzWKr2 145 +2017-08-05 10:45:00.420 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-08-05 10:45:00.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-08-05 10:45:03.658 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["test linkedin compose", "lin_SJ8otT3IU6", "1", "", "", "defaultUri", ""]) - ModelState is Valid +2017-08-05 10:45:19.430 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:45:19.442 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:45:21.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-05 10:45:21.970 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:45:21.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 21551.2091ms +2017-08-05 10:45:25.664 +05:30 [Information] Request finished in 24193.7977ms 200 text/plain; charset=utf-8 +2017-08-05 10:45:25.671 +05:30 [Debug] Connection id ""0HL6RNORDQSUD"" completed keep alive response. +2017-08-05 10:48:04.869 +05:30 [Debug] Hosting starting +2017-08-05 10:48:05.341 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" started. +2017-08-05 10:48:05.366 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" started. +2017-08-05 10:48:05.531 +05:30 [Debug] Hosting started +2017-08-05 10:48:05.835 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-05 10:48:05.844 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-05 10:48:06.074 +05:30 [Information] Request finished in 316.8724ms 200 +2017-08-05 10:48:06.383 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" completed keep alive response. +2017-08-05 10:48:08.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-05 10:48:08.135 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"cdd976d1-f358-4022-821f-db7236b7b653"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-05 10:48:08.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-05 10:48:08.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-05 10:48:08.711 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-05 10:48:08.786 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:48:08.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:08.809 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:09.841 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1166.566ms +2017-08-05 10:48:10.183 +05:30 [Information] Request finished in 4552.3559ms 200 application/json; charset=utf-8 +2017-08-05 10:48:10.185 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" completed keep alive response. +2017-08-05 10:48:32.221 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:48:32.223 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:48:32.226 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:48:36.061 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-05 10:48:43.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:48:43.490 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:43.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:43.882 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 11634.699ms +2017-08-05 10:48:43.892 +05:30 [Information] Request finished in 11683.9734ms 200 application/json; charset=utf-8 +2017-08-05 10:48:43.893 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" completed keep alive response. +2017-08-05 10:48:44.636 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-05 10:48:44.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-05 10:48:44.655 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-05 10:48:47.051 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 10:48:47.112 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:48:47.115 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:47.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:47.197 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2510.7688ms +2017-08-05 10:48:47.202 +05:30 [Information] Request finished in 2569.8738ms 200 application/json; charset=utf-8 +2017-08-05 10:48:47.203 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" completed keep alive response. +2017-08-05 10:48:47.523 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:48:47.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:48:47.528 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:48:50.839 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-05 10:48:50.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:48:50.850 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:50.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:50.854 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3321.2461ms +2017-08-05 10:48:50.860 +05:30 [Information] Request finished in 3339.9814ms 200 application/json; charset=utf-8 +2017-08-05 10:48:50.861 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" completed keep alive response. +2017-08-05 10:48:50.932 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-05 10:48:50.933 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-05 10:48:50.935 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-05 10:48:54.034 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-05 10:48:54.047 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:48:54.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:54.053 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:54.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3119.3978ms +2017-08-05 10:48:54.088 +05:30 [Information] Request finished in 3156.3788ms 200 application/json; charset=utf-8 +2017-08-05 10:48:54.089 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" completed keep alive response. +2017-08-05 10:48:54.112 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-05 10:48:54.113 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-05 10:48:54.115 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-05 10:48:57.350 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-05 10:48:57.545 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:48:57.547 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:48:57.695 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:48:57.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3645.9184ms +2017-08-05 10:48:57.801 +05:30 [Information] Request finished in 3695.2474ms 200 application/json; charset=utf-8 +2017-08-05 10:48:57.802 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" completed keep alive response. +2017-08-05 10:49:01.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-05 10:49:01.954 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-05 10:49:01.956 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-05 10:49:02.203 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-05 10:49:02.219 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-05 10:49:02.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-05 10:49:03.067 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" started. +2017-08-05 10:49:03.191 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-05 10:49:03.192 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-05 10:49:03.194 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-05 10:49:04.419 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:49:04.649 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" started. +2017-08-05 10:49:04.752 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:49:04.754 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 10:49:04.779 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 10:49:04.780 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 10:49:04.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:49:04.844 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:49:04.880 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:49:04.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:49:05.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2985.6443ms +2017-08-05 10:49:05.205 +05:30 [Information] Request finished in 3293.3016ms 200 application/json; charset=utf-8 +2017-08-05 10:49:05.206 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" completed keep alive response. +2017-08-05 10:49:05.240 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:49:05.242 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:49:05.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:49:05.450 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:49:05.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3267.8616ms +2017-08-05 10:49:06.283 +05:30 [Information] Request finished in 4146.123ms 200 application/json; charset=utf-8 +2017-08-05 10:49:06.285 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" completed keep alive response. +2017-08-05 10:49:06.696 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 10:49:07.532 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:49:07.541 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 10:49:07.543 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:49:07.560 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:49:07.965 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4552.2748ms +2017-08-05 10:49:08.157 +05:30 [Information] Request finished in 4893.5768ms 200 application/json; charset=utf-8 +2017-08-05 10:49:08.159 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" completed keep alive response. +2017-08-05 10:49:08.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-05 10:49:08.619 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:49:08.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:49:08.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:49:08.776 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3908.0212ms +2017-08-05 10:49:08.791 +05:30 [Information] Request finished in 4136.7599ms 200 application/json; charset=utf-8 +2017-08-05 10:49:08.792 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" completed keep alive response. +2017-08-05 10:49:08.925 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-05 10:49:08.926 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-05 10:49:08.928 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-05 10:49:12.179 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-05 10:49:12.417 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 10:49:12.420 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 10:49:12.446 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 10:49:12.498 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3521.8727ms +2017-08-05 10:49:12.519 +05:30 [Information] Request finished in 3666.9788ms 200 application/json; charset=utf-8 +2017-08-05 10:49:12.521 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" completed keep alive response. +2017-08-05 10:52:05.319 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" received FIN. +2017-08-05 10:52:05.319 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" received FIN. +2017-08-05 10:52:05.322 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" disconnecting. +2017-08-05 10:52:05.322 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" disconnecting. +2017-08-05 10:52:05.322 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" received FIN. +2017-08-05 10:52:05.327 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" sending FIN. +2017-08-05 10:52:05.331 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" received FIN. +2017-08-05 10:52:05.336 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" disconnecting. +2017-08-05 10:52:05.343 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" sending FIN. +2017-08-05 10:52:05.346 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" sent FIN with status "0". +2017-08-05 10:52:05.344 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" disconnecting. +2017-08-05 10:52:05.347 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" sending FIN. +2017-08-05 10:52:05.349 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" sending FIN. +2017-08-05 10:52:05.350 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" sent FIN with status "0". +2017-08-05 10:52:05.351 +05:30 [Debug] Connection id ""0HL6RO5D1UABQ"" stopped. +2017-08-05 10:52:05.351 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" sent FIN with status "0". +2017-08-05 10:52:05.350 +05:30 [Debug] Connection id ""0HL6RO5D1UABR"" stopped. +2017-08-05 10:52:05.353 +05:30 [Debug] Connection id ""0HL6RO5D1UABS"" stopped. +2017-08-05 10:52:05.354 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" sent FIN with status "0". +2017-08-05 10:52:05.355 +05:30 [Debug] Connection id ""0HL6RO5D1UABP"" stopped. +2017-08-05 11:20:15.336 +05:30 [Debug] Hosting starting +2017-08-05 11:20:15.508 +05:30 [Debug] Hosting started +2017-08-05 11:20:15.633 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" started. +2017-08-05 11:20:15.633 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" started. +2017-08-05 11:20:15.841 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-05 11:20:15.841 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-05 11:20:15.931 +05:30 [Information] Request finished in 141.8546ms 200 +2017-08-05 11:20:15.999 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" completed keep alive response. +2017-08-05 11:20:16.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-05 11:20:16.814 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0b47b0aa-41c4-46c6-a32d-140d06455683"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-05 11:20:17.138 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-05 11:20:17.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-05 11:20:17.267 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-05 11:20:17.316 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:20:17.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:17.325 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:17.763 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 600.5506ms +2017-08-05 11:20:17.950 +05:30 [Information] Request finished in 2174.5506ms 200 application/json; charset=utf-8 +2017-08-05 11:20:17.953 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" completed keep alive response. +2017-08-05 11:20:30.424 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-05 11:20:30.426 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-05 11:20:30.429 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-05 11:20:34.007 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-05 11:20:40.213 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-05 11:20:40.213 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-05 11:20:40.215 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-05 11:20:40.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:40.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:40.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:40.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10260.9718ms +2017-08-05 11:20:40.712 +05:30 [Information] Request finished in 10287.6182ms 200 application/json; charset=utf-8 +2017-08-05 11:20:40.712 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" completed keep alive response. +2017-08-05 11:20:41.423 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-05 11:20:41.423 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-05 11:20:41.425 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-05 11:20:42.493 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 11:20:42.975 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:42.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:42.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:43.029 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2812.8516ms +2017-08-05 11:20:43.032 +05:30 [Information] Request finished in 2826.7375ms 200 application/json; charset=utf-8 +2017-08-05 11:20:43.032 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" completed keep alive response. +2017-08-05 11:20:43.296 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-05 11:20:43.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-05 11:20:43.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-05 11:20:43.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-05 11:20:43.525 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:43.525 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:43.527 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:43.529 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2102.1407ms +2017-08-05 11:20:43.533 +05:30 [Information] Request finished in 2109.5444ms 200 application/json; charset=utf-8 +2017-08-05 11:20:43.533 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" completed keep alive response. +2017-08-05 11:20:46.337 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-05 11:20:46.433 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:46.433 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:46.434 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:46.485 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3176.9399ms +2017-08-05 11:20:46.487 +05:30 [Information] Request finished in 3191.6481ms 200 application/json; charset=utf-8 +2017-08-05 11:20:46.488 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" completed keep alive response. +2017-08-05 11:20:48.677 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-05 11:20:48.676 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-05 11:20:48.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-05 11:20:48.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-05 11:20:48.680 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-05 11:20:48.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-05 11:20:49.209 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" started. +2017-08-05 11:20:49.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-05 11:20:49.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-05 11:20:49.213 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-05 11:20:49.763 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" started. +2017-08-05 11:20:49.764 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-05 11:20:49.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-05 11:20:49.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-05 11:20:50.897 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 11:20:50.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:50.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:20:50.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:50.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:50.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2303.3302ms +2017-08-05 11:20:50.987 +05:30 [Information] Request finished in 2310.6775ms 200 application/json; charset=utf-8 +2017-08-05 11:20:50.988 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" completed keep alive response. +2017-08-05 11:20:51.764 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 11:20:51.831 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:51.832 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:20:51.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:51.833 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:51.845 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3150.4385ms +2017-08-05 11:20:51.854 +05:30 [Information] Request finished in 3173.7087ms 200 application/json; charset=utf-8 +2017-08-05 11:20:51.854 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" completed keep alive response. +2017-08-05 11:20:52.759 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-05 11:20:52.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-05 11:20:53.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:53.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:53.016 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:53.018 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3249.61ms +2017-08-05 11:20:53.020 +05:30 [Information] Request finished in 3255.1477ms 200 application/json; charset=utf-8 +2017-08-05 11:20:53.021 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" completed keep alive response. +2017-08-05 11:20:53.070 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:20:53.070 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:20:53.071 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-05 11:20:53.072 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:20:53.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3926.4403ms +2017-08-05 11:20:53.144 +05:30 [Information] Request finished in 3933.1285ms 200 application/json; charset=utf-8 +2017-08-05 11:20:53.145 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" completed keep alive response. +2017-08-05 11:21:30.542 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=lin_SJ8otT3IU6&userId=1&message=rrtretrtrtr&shortnerstatus=0 multipart/form-data; boundary=----WebKitFormBoundarycADzWFBaRmnfQGqJ 145 +2017-08-05 11:21:30.544 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-08-05 11:21:30.547 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-08-05 11:21:33.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["rrtretrtrtr", "lin_SJ8otT3IU6", "1", "", "", "defaultUri", ""]) - ModelState is Valid +2017-08-05 11:21:35.807 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:21:35.808 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:21:35.808 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-05 11:21:35.812 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:21:37.497 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 6917.336ms +2017-08-05 11:21:37.508 +05:30 [Information] Request finished in 6967.3656ms 200 text/plain; charset=utf-8 +2017-08-05 11:21:37.509 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" completed keep alive response. +2017-08-05 11:21:55.157 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.ScheduledMessage#0][SQL: INSERT INTO ScheduledMessage (shareMessage, clientTime, scheduleTime, localscheduletime, createTime, userId, profileId, profileType, picUrl, status, socialprofileName, url, link, id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)] +2017-08-05 11:21:55.168 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-05 11:21:55.169 +05:30 [Error] Unknown column 'localscheduletime' in 'field list' +2017-08-05 11:21:55.171 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-05 11:22:15.612 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" received FIN. +2017-08-05 11:22:15.613 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" disconnecting. +2017-08-05 11:22:15.614 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" sending FIN. +2017-08-05 11:22:15.614 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" received FIN. +2017-08-05 11:22:15.615 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" received FIN. +2017-08-05 11:22:15.615 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" disconnecting. +2017-08-05 11:22:15.616 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" sending FIN. +2017-08-05 11:22:15.617 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" disconnecting. +2017-08-05 11:22:15.619 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" sent FIN with status "0". +2017-08-05 11:22:15.621 +05:30 [Debug] Connection id ""0HL6RONCAM16T"" stopped. +2017-08-05 11:22:15.622 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" sending FIN. +2017-08-05 11:22:15.622 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" sent FIN with status "0". +2017-08-05 11:22:15.622 +05:30 [Debug] Connection id ""0HL6RONCAM16S"" stopped. +2017-08-05 11:22:15.623 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" sent FIN with status "0". +2017-08-05 11:22:15.623 +05:30 [Debug] Connection id ""0HL6RONCAM16U"" stopped. +2017-08-05 11:24:15.611 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" received FIN. +2017-08-05 11:24:15.611 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" disconnecting. +2017-08-05 11:24:15.612 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" sending FIN. +2017-08-05 11:24:15.612 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" sent FIN with status "0". +2017-08-05 11:24:15.613 +05:30 [Debug] Connection id ""0HL6RONCAM16R"" stopped. +2017-08-05 11:46:11.477 +05:30 [Debug] Connection id ""0HL6RONCAM16V"" started. +2017-08-05 11:46:11.480 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/SocialMessages/ComposeMessage?profileId=lin_SJ8otT3IU6&userId=1&message=rrtretrtrtr&shortnerstatus=0 multipart/form-data; boundary=----WebKitFormBoundaryslBgdpywMxApAJmy 145 +2017-08-05 11:46:11.480 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/SocialMessages/ComposeMessage"'. +2017-08-05 11:46:11.482 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" +2017-08-05 11:46:14.565 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" with arguments (["rrtretrtrtr", "lin_SJ8otT3IU6", "1", "", "", "defaultUri", ""]) - ModelState is Valid +2017-08-05 11:46:16.723 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-05 11:46:16.725 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-05 11:46:16.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-05 11:46:16.733 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-05 11:46:16.740 +05:30 [Information] Executed action "Api.Socioboard.Controllers.SocialMessagesController.ComposeMessage (Api.Socioboard)" in 5251.8513ms +2017-08-05 11:46:22.144 +05:30 [Information] Request finished in 10377.793ms 200 text/plain; charset=utf-8 +2017-08-05 11:46:22.146 +05:30 [Debug] Connection id ""0HL6RONCAM16V"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170809.txt b/src/Api.Socioboard/wwwroot/log/log-20170809.txt new file mode 100644 index 000000000..aa7b7193d --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170809.txt @@ -0,0 +1,3184 @@ +2017-08-09 10:47:20.277 +05:30 [Debug] Hosting starting +2017-08-09 10:47:20.621 +05:30 [Debug] Hosting started +2017-08-09 10:47:20.862 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" started. +2017-08-09 10:47:20.862 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" started. +2017-08-09 10:47:21.313 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 10:47:21.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 10:47:21.479 +05:30 [Information] Request finished in 307.2645ms 200 +2017-08-09 10:47:21.631 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:47:23.519 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 10:47:23.654 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"32fcd69a-94c9-4f60-9c6c-abdc90e0a73e"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 10:47:24.019 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 10:47:24.321 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 10:47:24.324 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 10:47:24.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:47:24.395 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:47:24.603 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:47:25.046 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 985.8202ms +2017-08-09 10:47:25.392 +05:30 [Information] Request finished in 4225.6414ms 200 application/json; charset=utf-8 +2017-08-09 10:47:25.401 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:47:25.442 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-09 10:47:25.452 +05:30 [Debug] Request did not match any routes. +2017-08-09 10:47:25.494 +05:30 [Debug] The request path "" does not match the path filter +2017-08-09 10:47:25.560 +05:30 [Information] Request finished in 118.1702ms 404 +2017-08-09 10:47:25.565 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:47:45.925 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 10:47:45.928 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 10:47:45.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 10:47:49.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-09 10:47:51.668 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 10:47:51.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 10:47:51.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 10:47:54.072 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 10:47:56.233 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:47:56.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:47:56.296 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:47:56.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10557.7398ms +2017-08-09 10:47:56.494 +05:30 [Information] Request finished in 10568.2627ms 200 application/json; charset=utf-8 +2017-08-09 10:47:56.496 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:47:56.663 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:47:56.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:47:56.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:47:56.730 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5046.815ms +2017-08-09 10:47:56.786 +05:30 [Information] Request finished in 5091.2756ms 200 application/json; charset=utf-8 +2017-08-09 10:47:56.787 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:47:57.540 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 10:47:57.542 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 10:47:57.544 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 10:47:57.731 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 10:47:57.732 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 10:47:57.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 10:47:59.936 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 10:48:00.260 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:00.262 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:00.264 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:00.306 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2571.1419ms +2017-08-09 10:48:00.309 +05:30 [Information] Request finished in 2577.591ms 200 application/json; charset=utf-8 +2017-08-09 10:48:00.309 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:48:00.698 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 10:48:00.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:00.706 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:00.708 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:00.711 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3164.4979ms +2017-08-09 10:48:00.716 +05:30 [Information] Request finished in 3187.1996ms 200 application/json; charset=utf-8 +2017-08-09 10:48:00.719 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:48:06.258 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 10:48:06.274 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 10:48:06.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 10:48:06.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 10:48:06.278 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 10:48:06.315 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 10:48:06.901 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" started. +2017-08-09 10:48:06.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 10:48:06.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 10:48:06.912 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 10:48:07.895 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" started. +2017-08-09 10:48:07.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 10:48:07.930 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 10:48:07.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 10:48:09.880 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:48:09.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:48:09.950 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:09.951 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:48:09.951 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:09.953 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:09.975 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3673.9899ms +2017-08-09 10:48:09.978 +05:30 [Information] Request finished in 3792.4213ms 200 application/json; charset=utf-8 +2017-08-09 10:48:09.980 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:48:10.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:10.057 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:48:10.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:10.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:10.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3743.7748ms +2017-08-09 10:48:10.062 +05:30 [Information] Request finished in 3877.5342ms 200 application/json; charset=utf-8 +2017-08-09 10:48:10.063 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:48:10.831 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:48:11.205 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 10:48:11.397 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:11.398 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:11.418 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:11.419 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:11.420 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:48:11.421 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:11.433 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3485.4941ms +2017-08-09 10:48:11.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:11.470 +05:30 [Information] Request finished in 3566.4646ms 200 application/json; charset=utf-8 +2017-08-09 10:48:11.471 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" completed keep alive response. +2017-08-09 10:48:11.552 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4637.314ms +2017-08-09 10:48:11.556 +05:30 [Information] Request finished in 4652.093ms 200 application/json; charset=utf-8 +2017-08-09 10:48:11.557 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" completed keep alive response. +2017-08-09 10:48:27.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 10:48:27.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 10:48:27.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 10:48:29.795 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-09 10:48:29.799 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:29.799 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:29.800 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:29.802 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2122.0224ms +2017-08-09 10:48:29.804 +05:30 [Information] Request finished in 2132.5652ms 200 application/json; charset=utf-8 +2017-08-09 10:48:29.805 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:48:29.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/RevokeSession application/x-www-form-urlencoded 37 +2017-08-09 10:48:29.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/RevokeSession"'. +2017-08-09 10:48:29.818 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" +2017-08-09 10:48:32.877 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" with arguments (["84", "8d4dbc0e624701a"]) - ModelState is Valid +2017-08-09 10:48:32.989 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkResult". +2017-08-09 10:48:32.998 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 200 +2017-08-09 10:48:33.000 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.RevokeSession (Api.Socioboard)" in 3179.3104ms +2017-08-09 10:48:33.003 +05:30 [Information] Request finished in 3189.1453ms 200 +2017-08-09 10:48:33.004 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:48:33.779 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 10:48:33.781 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 10:48:33.782 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 10:48:37.036 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dbc0e624701a"]) - ModelState is Valid +2017-08-09 10:48:37.040 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:48:37.041 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:48:37.042 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:48:37.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3261.3291ms +2017-08-09 10:48:37.053 +05:30 [Information] Request finished in 3273.5338ms 200 application/json; charset=utf-8 +2017-08-09 10:48:37.055 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" completed keep alive response. +2017-08-09 10:49:15.313 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" received FIN. +2017-08-09 10:49:15.315 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" disconnecting. +2017-08-09 10:49:15.317 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 10:49:15.321 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 10:49:15.321 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" sending FIN. +2017-08-09 10:49:15.321 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 10:49:15.334 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" sent FIN with status "0". +2017-08-09 10:49:15.338 +05:30 [Debug] Connection id ""0HL6USNKK4I4N"" stopped. +2017-08-09 10:49:18.424 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 10:49:18.540 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:18.541 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:18.544 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:18.548 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3223.2379ms +2017-08-09 10:49:18.553 +05:30 [Information] Request finished in 3240.5247ms 200 application/json; charset=utf-8 +2017-08-09 10:49:18.553 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:49:18.651 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 10:49:18.652 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 10:49:18.654 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 10:49:21.708 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 10:49:21.722 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:21.722 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:21.724 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:21.727 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3070.8224ms +2017-08-09 10:49:21.731 +05:30 [Information] Request finished in 3081.484ms 200 application/json; charset=utf-8 +2017-08-09 10:49:21.732 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:49:23.071 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 10:49:23.072 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 10:49:23.073 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 10:49:23.074 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 10:49:23.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 10:49:23.078 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 10:49:23.592 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 10:49:23.593 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 10:49:23.594 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 10:49:24.227 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" started. +2017-08-09 10:49:24.237 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 10:49:24.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 10:49:24.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 10:49:26.165 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:49:26.174 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:26.175 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:49:26.175 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:26.177 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:26.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3100.496ms +2017-08-09 10:49:26.188 +05:30 [Information] Request finished in 3119.3117ms 200 application/json; charset=utf-8 +2017-08-09 10:49:26.190 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" completed keep alive response. +2017-08-09 10:49:26.331 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:49:26.402 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:26.403 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:49:26.403 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:26.405 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:26.407 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3331.215ms +2017-08-09 10:49:26.409 +05:30 [Information] Request finished in 3343.7994ms 200 application/json; charset=utf-8 +2017-08-09 10:49:26.410 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" completed keep alive response. +2017-08-09 10:49:26.662 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:49:26.847 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:26.848 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:49:26.849 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:26.851 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:26.859 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3258.5164ms +2017-08-09 10:49:26.862 +05:30 [Information] Request finished in 3269.9371ms 200 application/json; charset=utf-8 +2017-08-09 10:49:26.863 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" completed keep alive response. +2017-08-09 10:49:27.295 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 10:49:27.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:27.394 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:27.397 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:27.400 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3153.0779ms +2017-08-09 10:49:27.413 +05:30 [Information] Request finished in 3178.8469ms 200 application/json; charset=utf-8 +2017-08-09 10:49:27.413 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:49:38.625 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 10:49:38.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 10:49:38.628 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 10:49:41.683 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:49:41.715 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:49:41.716 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:49:41.716 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:49:41.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:49:41.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3099.4081ms +2017-08-09 10:49:41.731 +05:30 [Information] Request finished in 3106.7869ms 200 application/json; charset=utf-8 +2017-08-09 10:49:41.732 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" completed keep alive response. +2017-08-09 10:49:47.498 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:49:47.500 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-08-09 10:49:47.502 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-08-09 10:49:47.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:49:47.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 10:49:47.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 10:49:47.523 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:49:47.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 10:49:47.527 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 10:49:49.645 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:49:49.650 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:49:50.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:50:32.221 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:50:32.222 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:50:32.222 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:50:32.227 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:50:32.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 44725.6527ms +2017-08-09 10:50:32.264 +05:30 [Information] Request finished in 44762.4246ms 200 application/json; charset=utf-8 +2017-08-09 10:50:32.264 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:50:53.112 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" received FIN. +2017-08-09 10:50:53.114 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" disconnecting. +2017-08-09 10:50:53.115 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 10:50:53.117 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" sending FIN. +2017-08-09 10:50:53.118 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 10:50:53.119 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 10:50:53.118 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" sent FIN with status "0". +2017-08-09 10:50:53.122 +05:30 [Debug] Connection id ""0HL6USNKK4I4O"" stopped. +2017-08-09 10:50:56.158 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 10:50:56.172 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:50:56.172 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:50:56.173 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:50:56.175 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.9694ms +2017-08-09 10:50:56.178 +05:30 [Information] Request finished in 3064.9861ms 200 application/json; charset=utf-8 +2017-08-09 10:50:56.179 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:50:56.187 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 10:50:56.188 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 10:50:56.189 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 10:50:59.228 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 10:50:59.235 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:50:59.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:50:59.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:50:59.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3049.9426ms +2017-08-09 10:50:59.244 +05:30 [Information] Request finished in 3057.2998ms 200 application/json; charset=utf-8 +2017-08-09 10:50:59.245 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:50:59.252 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 10:50:59.253 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 10:50:59.254 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 10:51:01.347 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 10:51:01.382 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:51:01.383 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:51:01.384 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:51:01.386 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2129.8753ms +2017-08-09 10:51:01.389 +05:30 [Information] Request finished in 2136.0327ms 200 application/json; charset=utf-8 +2017-08-09 10:51:01.390 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:51:02.719 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" started. +2017-08-09 10:51:02.725 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 10:51:02.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 10:51:02.727 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 10:51:02.727 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 10:51:02.728 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 10:51:02.734 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 10:51:03.153 +05:30 [Debug] Connection id ""0HL6USNKK4I4R"" started. +2017-08-09 10:51:03.153 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" started. +2017-08-09 10:51:03.155 +05:30 [Debug] Connection id ""0HL6USNKK4I4T"" started. +2017-08-09 10:51:03.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:51:03.179 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 10:51:03.180 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 10:51:03.186 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:51:03.187 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 10:51:03.188 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 10:51:03.200 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:51:03.201 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-08-09 10:51:03.202 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-08-09 10:51:05.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:51:05.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:51:05.869 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:51:05.873 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:51:05.875 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:51:05.875 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:51:05.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:51:05.946 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3198.1426ms +2017-08-09 10:51:05.965 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:51:05.969 +05:30 [Information] Request finished in 3245.6532ms 200 application/json; charset=utf-8 +2017-08-09 10:51:05.970 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" completed keep alive response. +2017-08-09 10:51:05.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:51:05.975 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:51:05.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:51:05.979 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3242.6383ms +2017-08-09 10:51:05.981 +05:30 [Information] Request finished in 3257.3021ms 200 application/json; charset=utf-8 +2017-08-09 10:51:05.981 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" completed keep alive response. +2017-08-09 10:51:06.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:51:06.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:51:42.091 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:51:42.092 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:51:42.092 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:51:42.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:51:42.101 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 38913.6188ms +2017-08-09 10:51:42.104 +05:30 [Information] Request finished in 38946.4398ms 200 application/json; charset=utf-8 +2017-08-09 10:51:42.104 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" completed keep alive response. +2017-08-09 10:51:47.761 +05:30 [Debug] Connection id ""0HL6USNKK4I4L"" received FIN. +2017-08-09 10:51:47.761 +05:30 [Debug] Connection id ""0HL6USNKK4I4M"" received FIN. +2017-08-09 10:52:31.801 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" received FIN. +2017-08-09 10:52:31.801 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" received FIN. +2017-08-09 10:52:31.801 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" disconnecting. +2017-08-09 10:52:31.802 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 10:52:31.802 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" disconnecting. +2017-08-09 10:52:31.803 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" sending FIN. +2017-08-09 10:52:31.804 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 10:52:31.805 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" sent FIN with status "0". +2017-08-09 10:52:31.806 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 10:52:31.804 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" sending FIN. +2017-08-09 10:52:31.807 +05:30 [Debug] Connection id ""0HL6USNKK4I4Q"" stopped. +2017-08-09 10:52:31.811 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" sent FIN with status "0". +2017-08-09 10:52:31.812 +05:30 [Debug] Connection id ""0HL6USNKK4I4P"" stopped. +2017-08-09 10:52:34.862 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 10:52:34.865 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:52:34.867 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:52:34.869 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:52:34.878 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.3482ms +2017-08-09 10:52:34.881 +05:30 [Information] Request finished in 3077.8728ms 200 application/json; charset=utf-8 +2017-08-09 10:52:34.881 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" completed keep alive response. +2017-08-09 10:52:34.887 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 10:52:34.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 10:52:34.890 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 10:52:36.974 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 10:52:36.979 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:52:36.980 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:52:36.981 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:52:36.983 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2091.9953ms +2017-08-09 10:52:36.986 +05:30 [Information] Request finished in 2098.9791ms 200 application/json; charset=utf-8 +2017-08-09 10:52:36.987 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" completed keep alive response. +2017-08-09 10:52:36.993 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 10:52:36.994 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 10:52:36.994 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 10:52:39.093 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 10:52:39.106 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:52:39.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:52:39.109 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:52:39.111 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2114.9423ms +2017-08-09 10:52:39.114 +05:30 [Information] Request finished in 2121.0067ms 200 application/json; charset=utf-8 +2017-08-09 10:52:39.115 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" completed keep alive response. +2017-08-09 10:52:40.358 +05:30 [Debug] Connection id ""0HL6USNKK4I4U"" started. +2017-08-09 10:52:40.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 10:52:40.383 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 10:52:40.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 10:52:40.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 10:52:40.385 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 10:52:40.386 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 10:52:40.676 +05:30 [Debug] Connection id ""0HL6USNKK4I4V"" started. +2017-08-09 10:52:40.679 +05:30 [Debug] Connection id ""0HL6USNKK4I50"" started. +2017-08-09 10:52:40.682 +05:30 [Debug] Connection id ""0HL6USNKK4I51"" started. +2017-08-09 10:52:40.690 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:52:40.692 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:52:40.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 10:52:40.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 10:52:40.693 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 10:52:40.694 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 10:52:40.696 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-08-09 10:52:40.698 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-08-09 10:52:40.695 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 10:52:43.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:52:43.583 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 10:52:43.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:52:43.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:52:43.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:52:43.614 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:52:43.616 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3228.0863ms +2017-08-09 10:52:43.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:52:43.618 +05:30 [Information] Request finished in 3258.134ms 200 application/json; charset=utf-8 +2017-08-09 10:52:43.620 +05:30 [Debug] Connection id ""0HL6USNKK4I4U"" completed keep alive response. +2017-08-09 10:52:43.619 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:52:43.621 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:52:43.624 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:52:43.627 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3240.0824ms +2017-08-09 10:52:43.630 +05:30 [Information] Request finished in 3269.9851ms 200 application/json; charset=utf-8 +2017-08-09 10:52:43.631 +05:30 [Debug] Connection id ""0HL6USNKK4I4S"" completed keep alive response. +2017-08-09 10:52:43.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:52:48.887 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:52:48.909 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 10:53:03.761 +05:30 [Debug] Connection id ""0HL6USNKK4I4R"" received FIN. +2017-08-09 10:53:03.766 +05:30 [Debug] Connection id ""0HL6USNKK4I4T"" received FIN. +2017-08-09 10:53:53.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 10:53:53.298 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 10:53:53.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 10:53:53.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 10:53:53.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 72597.636ms +2017-08-09 10:53:53.310 +05:30 [Information] Request finished in 72623.7983ms 200 application/json; charset=utf-8 +2017-08-09 10:53:53.311 +05:30 [Debug] Connection id ""0HL6USNKK4I50"" completed keep alive response. +2017-08-09 10:54:40.761 +05:30 [Debug] Connection id ""0HL6USNKK4I4V"" received FIN. +2017-08-09 10:54:40.768 +05:30 [Debug] Connection id ""0HL6USNKK4I51"" received FIN. +2017-08-09 11:03:45.294 +05:30 [Debug] Hosting starting +2017-08-09 11:03:45.707 +05:30 [Debug] Hosting started +2017-08-09 11:03:45.876 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" started. +2017-08-09 11:03:45.879 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" started. +2017-08-09 11:03:46.196 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 11:03:46.196 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 11:03:46.331 +05:30 [Information] Request finished in 151.3358ms 200 +2017-08-09 11:03:46.457 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" completed keep alive response. +2017-08-09 11:03:47.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 11:03:47.792 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"7e0ccd06-ee9c-497f-b11d-8807635b6b72"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 11:03:47.971 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 11:03:48.099 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 11:03:48.103 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 11:03:48.151 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:03:48.158 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:03:48.166 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:03:48.508 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 514.3178ms +2017-08-09 11:03:48.907 +05:30 [Information] Request finished in 2740.0225ms 200 application/json; charset=utf-8 +2017-08-09 11:03:48.910 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" completed keep alive response. +2017-08-09 11:03:58.837 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:03:58.839 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:03:58.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:04:01.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:04:02.808 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 11:04:02.809 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 11:04:02.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 11:04:06.116 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:04:07.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:07.331 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:07.353 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:07.593 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8747.0391ms +2017-08-09 11:04:07.618 +05:30 [Information] Request finished in 8766.8943ms 200 application/json; charset=utf-8 +2017-08-09 11:04:07.618 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" completed keep alive response. +2017-08-09 11:04:07.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:07.837 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:07.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:07.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5047.9982ms +2017-08-09 11:04:07.879 +05:30 [Information] Request finished in 5077.2298ms 200 application/json; charset=utf-8 +2017-08-09 11:04:07.881 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" completed keep alive response. +2017-08-09 11:04:08.229 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 11:04:08.231 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 11:04:08.247 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 11:04:08.443 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 11:04:08.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:04:08.446 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:04:11.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:04:11.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:11.323 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:11.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:11.327 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3077.1613ms +2017-08-09 11:04:11.333 +05:30 [Information] Request finished in 3160.9814ms 200 application/json; charset=utf-8 +2017-08-09 11:04:11.336 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" completed keep alive response. +2017-08-09 11:04:11.516 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 11:04:11.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:11.613 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:11.615 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:11.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3200.0293ms +2017-08-09 11:04:11.650 +05:30 [Information] Request finished in 3207.7617ms 200 application/json; charset=utf-8 +2017-08-09 11:04:11.650 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" completed keep alive response. +2017-08-09 11:04:13.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 11:04:13.854 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 11:04:13.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 11:04:13.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 11:04:13.856 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 11:04:13.859 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 11:04:14.426 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" started. +2017-08-09 11:04:14.428 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 11:04:14.428 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 11:04:14.430 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 11:04:15.157 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" started. +2017-08-09 11:04:15.161 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 11:04:15.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 11:04:15.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 11:04:16.075 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:04:16.180 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:16.182 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:04:16.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:16.184 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:16.202 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2341.1834ms +2017-08-09 11:04:16.205 +05:30 [Information] Request finished in 2359.4624ms 200 application/json; charset=utf-8 +2017-08-09 11:04:16.205 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" completed keep alive response. +2017-08-09 11:04:16.938 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:04:17.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:17.006 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:04:17.006 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:17.008 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:17.013 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3151.1849ms +2017-08-09 11:04:17.018 +05:30 [Information] Request finished in 3170.2644ms 200 application/json; charset=utf-8 +2017-08-09 11:04:17.018 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" completed keep alive response. +2017-08-09 11:04:17.807 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:04:18.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:18.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:04:18.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:18.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:18.113 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3680.3691ms +2017-08-09 11:04:18.118 +05:30 [Information] Request finished in 3689.1854ms 200 application/json; charset=utf-8 +2017-08-09 11:04:18.119 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" completed keep alive response. +2017-08-09 11:04:18.244 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 11:04:18.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:04:18.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:04:18.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:04:18.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3136.5532ms +2017-08-09 11:04:18.310 +05:30 [Information] Request finished in 3148.2182ms 200 application/json; charset=utf-8 +2017-08-09 11:04:18.310 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" completed keep alive response. +2017-08-09 11:05:45.857 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" received FIN. +2017-08-09 11:05:45.858 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" received FIN. +2017-08-09 11:05:45.859 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" disconnecting. +2017-08-09 11:05:45.861 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" sending FIN. +2017-08-09 11:05:45.866 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" received FIN. +2017-08-09 11:05:45.866 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" received FIN. +2017-08-09 11:05:45.867 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" disconnecting. +2017-08-09 11:05:45.867 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" disconnecting. +2017-08-09 11:05:45.868 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" sending FIN. +2017-08-09 11:05:45.868 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" sending FIN. +2017-08-09 11:05:45.868 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" disconnecting. +2017-08-09 11:05:45.869 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" sent FIN with status "0". +2017-08-09 11:05:45.868 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" sent FIN with status "0". +2017-08-09 11:05:45.872 +05:30 [Debug] Connection id ""0HL6UT0Q60JKE"" stopped. +2017-08-09 11:05:45.872 +05:30 [Debug] Connection id ""0HL6UT0Q60JKC"" stopped. +2017-08-09 11:05:45.873 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" sent FIN with status "0". +2017-08-09 11:05:45.873 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" sending FIN. +2017-08-09 11:05:45.873 +05:30 [Debug] Connection id ""0HL6UT0Q60JKD"" stopped. +2017-08-09 11:05:45.874 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" sent FIN with status "0". +2017-08-09 11:05:45.874 +05:30 [Debug] Connection id ""0HL6UT0Q60JKF"" stopped. +2017-08-09 11:17:30.868 +05:30 [Debug] Connection id ""0HL6UT0Q60JKG"" started. +2017-08-09 11:17:30.937 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 11:17:30.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 11:17:30.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 11:17:33.987 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:17:34.034 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:17:34.035 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:17:34.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:17:34.037 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:17:34.047 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3100.2739ms +2017-08-09 11:17:34.050 +05:30 [Information] Request finished in 3159.8872ms 200 application/json; charset=utf-8 +2017-08-09 11:17:34.051 +05:30 [Debug] Connection id ""0HL6UT0Q60JKG"" completed keep alive response. +2017-08-09 11:17:35.475 +05:30 [Debug] Connection id ""0HL6UT0Q60JKH"" started. +2017-08-09 11:17:35.477 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" started. +2017-08-09 11:17:35.492 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:17:35.494 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 11:17:35.495 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 11:17:35.501 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:17:35.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-08-09 11:17:35.507 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-08-09 11:17:35.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:17:35.536 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 11:17:35.538 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 11:17:38.609 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:17:38.634 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:17:38.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:18:52.210 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:18:52.211 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:18:52.211 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:18:52.212 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:18:52.237 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 76690.8619ms +2017-08-09 11:18:52.240 +05:30 [Information] Request finished in 76747.2543ms 200 application/json; charset=utf-8 +2017-08-09 11:18:52.240 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" completed keep alive response. +2017-08-09 11:19:35.556 +05:30 [Debug] Connection id ""0HL6UT0Q60JKG"" received FIN. +2017-08-09 11:19:35.558 +05:30 [Debug] Connection id ""0HL6UT0Q60JKH"" received FIN. +2017-08-09 11:21:45.849 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" received FIN. +2017-08-09 11:21:45.850 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" disconnecting. +2017-08-09 11:21:45.850 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" sending FIN. +2017-08-09 11:21:45.851 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" sent FIN with status "0". +2017-08-09 11:21:45.852 +05:30 [Debug] Connection id ""0HL6UT0Q60JKI"" stopped. +2017-08-09 11:22:24.280 +05:30 [Debug] Connection id ""0HL6UT0Q60JKJ"" started. +2017-08-09 11:22:24.293 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 11:22:24.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 11:22:24.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 11:22:27.376 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:22:27.775 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:27.776 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:27.778 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:27.780 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3478.4007ms +2017-08-09 11:22:27.787 +05:30 [Information] Request finished in 3500.967ms 200 application/json; charset=utf-8 +2017-08-09 11:22:27.788 +05:30 [Debug] Connection id ""0HL6UT0Q60JKJ"" completed keep alive response. +2017-08-09 11:22:27.837 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 11:22:27.838 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:22:27.839 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:22:29.929 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 11:22:29.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:29.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:29.940 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:29.943 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2102.013ms +2017-08-09 11:22:29.946 +05:30 [Information] Request finished in 2114.2524ms 200 application/json; charset=utf-8 +2017-08-09 11:22:29.947 +05:30 [Debug] Connection id ""0HL6UT0Q60JKJ"" completed keep alive response. +2017-08-09 11:22:32.885 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 11:22:32.886 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:22:32.886 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:22:32.941 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" started. +2017-08-09 11:22:32.946 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" started. +2017-08-09 11:22:32.950 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 11:22:32.951 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 11:22:32.952 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 11:22:33.551 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 11:22:33.553 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 11:22:33.555 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 11:22:33.574 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" started. +2017-08-09 11:22:34.296 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" started. +2017-08-09 11:22:34.618 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 11:22:34.619 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 11:22:34.619 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 11:22:35.150 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 11:22:35.151 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 11:22:35.151 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 11:22:37.048 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" started. +2017-08-09 11:22:37.050 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 11:22:37.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 11:22:37.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 11:22:37.901 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:22:37.905 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:22:37.907 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:37.910 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:22:37.911 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:37.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:22:37.937 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 11:22:37.970 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:37.971 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:37.988 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:37.995 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:38.044 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:38.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5058.1745ms +2017-08-09 11:22:38.079 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5125.4675ms +2017-08-09 11:22:38.045 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:22:38.082 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:38.121 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:38.147 +05:30 [Information] Request finished in 5231.9419ms 200 application/json; charset=utf-8 +2017-08-09 11:22:38.148 +05:30 [Debug] Connection id ""0HL6UT0Q60JKJ"" completed keep alive response. +2017-08-09 11:22:38.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4567.8422ms +2017-08-09 11:22:38.199 +05:30 [Information] Request finished in 5176.9747ms 200 application/json; charset=utf-8 +2017-08-09 11:22:38.230 +05:30 [Information] Request finished in 4650.526ms 200 application/json; charset=utf-8 +2017-08-09 11:22:38.235 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" completed keep alive response. +2017-08-09 11:22:38.237 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" completed keep alive response. +2017-08-09 11:22:38.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:38.329 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:22:38.330 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:38.333 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:38.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3714.4876ms +2017-08-09 11:22:38.343 +05:30 [Information] Request finished in 3724.1728ms 200 application/json; charset=utf-8 +2017-08-09 11:22:38.346 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" completed keep alive response. +2017-08-09 11:22:38.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 11:22:39.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:39.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:39.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:39.281 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4128.8804ms +2017-08-09 11:22:39.284 +05:30 [Information] Request finished in 4135.1511ms 200 application/json; charset=utf-8 +2017-08-09 11:22:39.285 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" completed keep alive response. +2017-08-09 11:22:40.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:22:40.304 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:22:40.304 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:22:40.306 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:22:40.308 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:22:40.309 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3253.6415ms +2017-08-09 11:22:40.312 +05:30 [Information] Request finished in 3262.1088ms 200 application/json; charset=utf-8 +2017-08-09 11:22:40.313 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" completed keep alive response. +2017-08-09 11:22:43.042 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:22:43.045 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 11:22:43.048 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 11:22:46.088 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:23:45.849 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" received FIN. +2017-08-09 11:23:45.849 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" received FIN. +2017-08-09 11:23:45.849 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" received FIN. +2017-08-09 11:23:45.851 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" received FIN. +2017-08-09 11:23:45.852 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" disconnecting. +2017-08-09 11:23:45.852 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" disconnecting. +2017-08-09 11:23:45.851 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" disconnecting. +2017-08-09 11:23:45.850 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" disconnecting. +2017-08-09 11:23:45.857 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" sending FIN. +2017-08-09 11:23:45.852 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" received FIN. +2017-08-09 11:23:45.862 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" sending FIN. +2017-08-09 11:23:45.864 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" sending FIN. +2017-08-09 11:23:45.865 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" sent FIN with status "0". +2017-08-09 11:23:45.867 +05:30 [Debug] Connection id ""0HL6UT0Q60JKL"" stopped. +2017-08-09 11:23:45.866 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" sending FIN. +2017-08-09 11:23:45.867 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" sent FIN with status "0". +2017-08-09 11:23:45.864 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" disconnecting. +2017-08-09 11:23:45.869 +05:30 [Debug] Connection id ""0HL6UT0Q60JKN"" stopped. +2017-08-09 11:23:45.867 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" sent FIN with status "0". +2017-08-09 11:23:45.875 +05:30 [Debug] Connection id ""0HL6UT0Q60JKK"" stopped. +2017-08-09 11:23:45.875 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" sent FIN with status "0". +2017-08-09 11:23:45.876 +05:30 [Debug] Connection id ""0HL6UT0Q60JKM"" stopped. +2017-08-09 11:23:45.876 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" sending FIN. +2017-08-09 11:23:45.877 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" sent FIN with status "0". +2017-08-09 11:23:45.877 +05:30 [Debug] Connection id ""0HL6UT0Q60JKO"" stopped. +2017-08-09 11:23:49.339 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:23:49.339 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:23:49.340 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-09 11:23:49.341 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:23:49.347 +05:30 [Debug] Connection id ""0HL6UT0Q60JKG"" disconnecting. +2017-08-09 11:23:49.347 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 373826.0475ms +2017-08-09 11:23:49.349 +05:30 [Information] Connection id ""0HL6UT0Q60JKG"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:23:49.382 +05:30 [Debug] Connection id ""0HL6UT0Q60JKG"" stopped. +2017-08-09 11:23:49.399 +05:30 [Information] Request finished in 373898.0131ms 200 text/plain; charset=utf-8 +2017-08-09 11:24:43.555 +05:30 [Debug] Connection id ""0HL6UT0Q60JKJ"" received FIN. +2017-08-09 11:28:38.514 +05:30 [Debug] Hosting starting +2017-08-09 11:28:39.089 +05:30 [Debug] Hosting started +2017-08-09 11:28:39.152 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" started. +2017-08-09 11:28:39.152 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" started. +2017-08-09 11:28:39.365 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 11:28:39.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 11:28:39.480 +05:30 [Information] Request finished in 133.6838ms 200 +2017-08-09 11:28:39.565 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:28:40.541 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 11:28:40.598 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ee523258-6bd5-4ad4-a0e5-3076334a33ca"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 11:28:41.110 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 11:28:41.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 11:28:41.330 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 11:28:41.382 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:28:41.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:28:41.392 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:28:41.730 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 602.4556ms +2017-08-09 11:28:41.822 +05:30 [Information] Request finished in 2516.5475ms 200 application/json; charset=utf-8 +2017-08-09 11:28:41.825 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:28:53.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:28:53.186 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:28:53.191 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:28:56.475 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:29:03.358 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:03.440 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:03.786 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:04.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10799.2339ms +2017-08-09 11:29:04.280 +05:30 [Information] Request finished in 11116.0352ms 200 application/json; charset=utf-8 +2017-08-09 11:29:04.281 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:29:04.814 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 11:29:04.815 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 11:29:04.817 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 11:29:07.635 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 11:29:07.635 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 11:29:07.658 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 11:29:07.951 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:29:07.998 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:07.999 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:08.000 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:08.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3244.2707ms +2017-08-09 11:29:08.075 +05:30 [Information] Request finished in 3272.9445ms 200 application/json; charset=utf-8 +2017-08-09 11:29:08.075 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:29:09.762 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:29:10.238 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:10.240 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:10.250 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:10.263 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 2592.0085ms +2017-08-09 11:29:10.267 +05:30 [Information] Request finished in 2631.1068ms 200 application/json; charset=utf-8 +2017-08-09 11:29:10.267 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:29:10.374 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:29:10.375 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:29:10.379 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:29:13.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:29:13.462 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:13.462 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:13.463 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:13.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3082.9066ms +2017-08-09 11:29:13.473 +05:30 [Information] Request finished in 3099.4919ms 200 application/json; charset=utf-8 +2017-08-09 11:29:13.474 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:29:13.526 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 11:29:13.529 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 11:29:13.531 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 11:29:16.575 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:29:16.585 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:16.586 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:16.587 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:16.590 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3046.0486ms +2017-08-09 11:29:16.599 +05:30 [Information] Request finished in 3072.7102ms 200 application/json; charset=utf-8 +2017-08-09 11:29:16.601 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:29:16.620 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 11:29:16.626 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:29:16.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:29:19.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 11:29:19.810 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:19.811 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:19.814 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:19.853 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3222.5533ms +2017-08-09 11:29:19.856 +05:30 [Information] Request finished in 3236.5275ms 200 application/json; charset=utf-8 +2017-08-09 11:29:19.856 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:29:21.946 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 11:29:21.947 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 11:29:21.949 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 11:29:21.978 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 11:29:21.979 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 11:29:21.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 11:29:22.697 +05:30 [Debug] Connection id ""0HL6UTEN703A6"" started. +2017-08-09 11:29:22.701 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 11:29:22.702 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 11:29:22.704 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 11:29:23.267 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" started. +2017-08-09 11:29:23.268 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:29:23.268 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:29:23.269 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:29:24.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:29:24.448 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:24.449 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:29:24.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:24.451 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:24.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2516.48ms +2017-08-09 11:29:24.470 +05:30 [Information] Request finished in 2531.8172ms 200 application/json; charset=utf-8 +2017-08-09 11:29:24.470 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:29:25.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:29:25.121 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:25.122 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:29:25.122 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:25.123 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:25.127 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3142.1193ms +2017-08-09 11:29:25.131 +05:30 [Information] Request finished in 3190.7311ms 200 application/json; charset=utf-8 +2017-08-09 11:29:25.132 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:29:25.781 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:29:26.052 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:26.053 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:29:26.054 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:26.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:26.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3410.7505ms +2017-08-09 11:29:26.125 +05:30 [Information] Request finished in 3420.7446ms 200 application/json; charset=utf-8 +2017-08-09 11:29:26.126 +05:30 [Debug] Connection id ""0HL6UTEN703A6"" completed keep alive response. +2017-08-09 11:29:26.397 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:29:26.400 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:26.401 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:26.402 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:26.403 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3133.2316ms +2017-08-09 11:29:26.406 +05:30 [Information] Request finished in 3137.8536ms 200 application/json; charset=utf-8 +2017-08-09 11:29:26.406 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" completed keep alive response. +2017-08-09 11:29:26.413 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 11:29:26.414 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 11:29:26.416 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 11:29:28.364 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 11:29:28.365 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 11:29:28.366 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 11:29:29.459 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 11:29:29.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:29.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:29.540 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:29.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3123.9525ms +2017-08-09 11:29:29.545 +05:30 [Information] Request finished in 3130.3891ms 200 application/json; charset=utf-8 +2017-08-09 11:29:29.545 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" completed keep alive response. +2017-08-09 11:29:30.455 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:29:30.469 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:29:30.469 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:29:30.470 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:29:30.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:29:30.482 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 2110.2763ms +2017-08-09 11:29:30.488 +05:30 [Information] Request finished in 2125.057ms 200 application/json; charset=utf-8 +2017-08-09 11:29:30.489 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" completed keep alive response. +2017-08-09 11:29:38.583 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:29:38.585 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 11:29:38.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 11:29:41.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:30:39.124 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" received FIN. +2017-08-09 11:30:39.124 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" received FIN. +2017-08-09 11:30:39.125 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" received FIN. +2017-08-09 11:30:39.126 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" disconnecting. +2017-08-09 11:30:39.126 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" disconnecting. +2017-08-09 11:30:39.129 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" disconnecting. +2017-08-09 11:30:39.129 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" sending FIN. +2017-08-09 11:30:39.130 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" sending FIN. +2017-08-09 11:30:39.132 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" sending FIN. +2017-08-09 11:30:39.136 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" sent FIN with status "0". +2017-08-09 11:30:39.136 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" sent FIN with status "0". +2017-08-09 11:30:39.144 +05:30 [Debug] Connection id ""0HL6UTEN703A7"" stopped. +2017-08-09 11:30:39.145 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" sent FIN with status "0". +2017-08-09 11:30:39.146 +05:30 [Debug] Connection id ""0HL6UTEN703A4"" stopped. +2017-08-09 11:30:39.144 +05:30 [Debug] Connection id ""0HL6UTEN703A5"" stopped. +2017-08-09 11:31:38.197 +05:30 [Debug] Connection id ""0HL6UTEN703A6"" received FIN. +2017-08-09 11:32:23.713 +05:30 [Debug] Hosting starting +2017-08-09 11:32:24.166 +05:30 [Debug] Hosting started +2017-08-09 11:32:24.347 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" started. +2017-08-09 11:32:24.361 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" started. +2017-08-09 11:32:24.536 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 11:32:24.536 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 11:32:24.635 +05:30 [Information] Request finished in 129.0466ms 200 +2017-08-09 11:32:24.728 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:32:25.678 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 11:32:25.734 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bff7a473-649c-4989-b6fc-cb51670baefb"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 11:32:25.909 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 11:32:26.059 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 11:32:26.063 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 11:32:26.127 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:32:26.136 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:32:26.236 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:32:26.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 707.713ms +2017-08-09 11:32:26.737 +05:30 [Information] Request finished in 2263.5181ms 200 application/json; charset=utf-8 +2017-08-09 11:32:26.741 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:32:39.205 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:32:39.207 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:32:39.210 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:32:42.702 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:32:48.287 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:32:48.297 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:32:48.309 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:32:48.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9215.7545ms +2017-08-09 11:32:48.441 +05:30 [Information] Request finished in 9236.8175ms 200 application/json; charset=utf-8 +2017-08-09 11:32:48.442 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:32:48.844 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 11:32:48.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 11:32:48.846 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 11:32:51.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:32:52.025 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:32:52.026 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:32:52.027 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:32:52.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3238.2338ms +2017-08-09 11:32:52.089 +05:30 [Information] Request finished in 3244.9113ms 200 application/json; charset=utf-8 +2017-08-09 11:32:52.089 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:32:56.564 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 11:32:56.566 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 11:32:56.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 11:32:59.628 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:33:00.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:00.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:00.312 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:00.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3744.1274ms +2017-08-09 11:33:00.321 +05:30 [Information] Request finished in 3756.1122ms 200 application/json; charset=utf-8 +2017-08-09 11:33:00.323 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:33:00.435 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:33:00.436 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:33:00.442 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:33:03.534 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:33:03.539 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:03.540 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:03.541 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:03.557 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3095.9866ms +2017-08-09 11:33:03.561 +05:30 [Information] Request finished in 3128.4596ms 200 application/json; charset=utf-8 +2017-08-09 11:33:03.562 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:33:03.607 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 11:33:03.609 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 11:33:03.610 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 11:33:06.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:33:06.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:06.680 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:06.683 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:06.686 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3073.5256ms +2017-08-09 11:33:06.694 +05:30 [Information] Request finished in 3090.2019ms 200 application/json; charset=utf-8 +2017-08-09 11:33:06.696 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:33:06.734 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 11:33:06.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:33:06.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:33:09.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 11:33:09.937 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:09.938 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:09.939 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:09.991 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3232.9272ms +2017-08-09 11:33:09.995 +05:30 [Information] Request finished in 3282.4801ms 200 application/json; charset=utf-8 +2017-08-09 11:33:09.995 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:33:11.791 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 11:33:11.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 11:33:11.793 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 11:33:11.793 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 11:33:11.794 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 11:33:11.795 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 11:33:12.436 +05:30 [Debug] Connection id ""0HL6UTGQAKDQR"" started. +2017-08-09 11:33:12.438 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 11:33:12.439 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 11:33:12.440 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 11:33:12.917 +05:30 [Debug] Connection id ""0HL6UTGQAKDQS"" started. +2017-08-09 11:33:12.918 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:33:12.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:33:12.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:33:13.950 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:33:14.021 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:14.021 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:33:14.021 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:14.032 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:14.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2244.8309ms +2017-08-09 11:33:14.046 +05:30 [Information] Request finished in 2253.9802ms 200 application/json; charset=utf-8 +2017-08-09 11:33:14.047 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:33:14.846 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:33:14.902 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:14.903 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:33:14.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:14.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:14.907 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3112.016ms +2017-08-09 11:33:14.911 +05:30 [Information] Request finished in 3118.9161ms 200 application/json; charset=utf-8 +2017-08-09 11:33:14.912 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:33:15.554 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:33:15.957 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:15.957 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:33:15.958 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:15.959 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:16.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:33:16.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:16.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:16.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:16.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3136.2029ms +2017-08-09 11:33:16.065 +05:30 [Information] Request finished in 3144.9095ms 200 application/json; charset=utf-8 +2017-08-09 11:33:16.070 +05:30 [Debug] Connection id ""0HL6UTGQAKDQS"" completed keep alive response. +2017-08-09 11:33:16.088 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 11:33:16.089 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 11:33:16.091 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 11:33:16.119 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3676.1977ms +2017-08-09 11:33:16.123 +05:30 [Information] Request finished in 3683.0296ms 200 application/json; charset=utf-8 +2017-08-09 11:33:16.124 +05:30 [Debug] Connection id ""0HL6UTGQAKDQR"" completed keep alive response. +2017-08-09 11:33:19.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 11:33:19.375 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:19.376 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:19.378 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:19.383 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3288.8524ms +2017-08-09 11:33:19.390 +05:30 [Information] Request finished in 3305.7566ms 200 application/json; charset=utf-8 +2017-08-09 11:33:19.391 +05:30 [Debug] Connection id ""0HL6UTGQAKDQQ"" completed keep alive response. +2017-08-09 11:33:20.892 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 11:33:20.894 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 11:33:20.897 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 11:33:23.954 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:33:23.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:33:23.970 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:33:23.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:33:23.972 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:33:23.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3082.902ms +2017-08-09 11:33:23.989 +05:30 [Information] Request finished in 3098.2335ms 200 application/json; charset=utf-8 +2017-08-09 11:33:23.990 +05:30 [Debug] Connection id ""0HL6UTGQAKDQP"" completed keep alive response. +2017-08-09 11:33:27.273 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:33:27.275 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 11:33:27.277 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 11:33:30.304 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:34:57.293 +05:30 [Debug] Hosting starting +2017-08-09 11:34:57.794 +05:30 [Debug] Hosting started +2017-08-09 11:34:57.847 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" started. +2017-08-09 11:34:57.847 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" started. +2017-08-09 11:34:58.309 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 11:34:58.339 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 11:34:58.413 +05:30 [Information] Request finished in 346.833ms 200 +2017-08-09 11:34:58.530 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" completed keep alive response. +2017-08-09 11:34:59.452 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 11:34:59.506 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"30162c4f-ab66-41d6-ad2f-df3b91b77a73"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 11:34:59.813 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 11:34:59.933 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 11:34:59.936 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 11:34:59.980 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:34:59.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:34:59.989 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:00.325 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 487.7367ms +2017-08-09 11:35:00.600 +05:30 [Information] Request finished in 2425.3702ms 200 application/json; charset=utf-8 +2017-08-09 11:35:00.604 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" completed keep alive response. +2017-08-09 11:35:11.680 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 11:35:11.681 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 11:35:11.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 11:35:15.981 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 11:35:17.409 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 11:35:17.410 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 11:35:17.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 11:35:19.670 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:35:20.864 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:20.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:20.912 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:21.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9473.826ms +2017-08-09 11:35:21.183 +05:30 [Information] Request finished in 9511.7401ms 200 application/json; charset=utf-8 +2017-08-09 11:35:21.184 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" completed keep alive response. +2017-08-09 11:35:21.321 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:21.322 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:21.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:21.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3950.0305ms +2017-08-09 11:35:21.370 +05:30 [Information] Request finished in 3963.6981ms 200 application/json; charset=utf-8 +2017-08-09 11:35:21.371 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" completed keep alive response. +2017-08-09 11:35:21.657 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 11:35:21.658 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 11:35:21.660 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 11:35:21.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 11:35:21.818 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 11:35:21.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 11:35:24.717 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 11:35:24.724 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:24.725 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:24.726 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:24.729 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3065.048ms +2017-08-09 11:35:24.732 +05:30 [Information] Request finished in 3075.016ms 200 application/json; charset=utf-8 +2017-08-09 11:35:24.732 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" completed keep alive response. +2017-08-09 11:35:24.865 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 11:35:24.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:24.977 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:24.978 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:25.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3195.2518ms +2017-08-09 11:35:25.020 +05:30 [Information] Request finished in 3201.1957ms 200 application/json; charset=utf-8 +2017-08-09 11:35:25.022 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" completed keep alive response. +2017-08-09 11:35:27.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 11:35:27.139 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 11:35:27.140 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 11:35:27.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 11:35:27.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 11:35:27.144 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 11:35:27.743 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" started. +2017-08-09 11:35:27.752 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 11:35:27.753 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 11:35:27.755 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 11:35:28.280 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" started. +2017-08-09 11:35:28.282 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 11:35:28.285 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 11:35:28.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 11:35:30.261 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:35:30.312 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:35:30.404 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:30.407 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:35:30.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:30.413 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:30.440 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3281.3797ms +2017-08-09 11:35:30.448 +05:30 [Information] Request finished in 3307.5946ms 200 application/json; charset=utf-8 +2017-08-09 11:35:30.450 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:30.452 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:35:30.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:30.451 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" completed keep alive response. +2017-08-09 11:35:30.460 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:30.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3316.9574ms +2017-08-09 11:35:30.470 +05:30 [Information] Request finished in 3333.2372ms 200 application/json; charset=utf-8 +2017-08-09 11:35:30.470 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" completed keep alive response. +2017-08-09 11:35:30.923 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:35:31.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:31.180 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:35:31.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:31.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:31.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3502.187ms +2017-08-09 11:35:31.260 +05:30 [Information] Request finished in 3510.5592ms 200 application/json; charset=utf-8 +2017-08-09 11:35:31.261 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" completed keep alive response. +2017-08-09 11:35:31.451 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 11:35:31.513 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:31.514 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:31.516 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:31.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3220.4368ms +2017-08-09 11:35:31.523 +05:30 [Information] Request finished in 3241.163ms 200 application/json; charset=utf-8 +2017-08-09 11:35:31.524 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" completed keep alive response. +2017-08-09 11:35:33.101 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 11:35:33.102 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 11:35:33.103 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 11:35:36.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 11:35:36.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:35:36.204 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:35:36.205 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:35:36.209 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:35:36.221 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3092.8375ms +2017-08-09 11:35:36.224 +05:30 [Information] Request finished in 3140.6418ms 200 application/json; charset=utf-8 +2017-08-09 11:35:36.225 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" completed keep alive response. +2017-08-09 11:35:37.606 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 11:35:37.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 11:35:37.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 11:35:40.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 11:36:57.822 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" received FIN. +2017-08-09 11:36:57.822 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" received FIN. +2017-08-09 11:36:57.827 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" disconnecting. +2017-08-09 11:36:57.826 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" received FIN. +2017-08-09 11:36:57.829 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" disconnecting. +2017-08-09 11:36:57.833 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" sending FIN. +2017-08-09 11:36:57.833 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" disconnecting. +2017-08-09 11:36:57.837 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" sending FIN. +2017-08-09 11:36:57.840 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" sending FIN. +2017-08-09 11:36:57.845 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" sent FIN with status "0". +2017-08-09 11:36:57.848 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" sent FIN with status "0". +2017-08-09 11:36:57.851 +05:30 [Debug] Connection id ""0HL6UTI82H4SE"" stopped. +2017-08-09 11:36:57.852 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" sent FIN with status "0". +2017-08-09 11:36:57.851 +05:30 [Debug] Connection id ""0HL6UTI82H4SG"" stopped. +2017-08-09 11:36:57.853 +05:30 [Debug] Connection id ""0HL6UTI82H4SH"" stopped. +2017-08-09 11:37:37.400 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" received FIN. +2017-08-09 11:38:15.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 11:38:15.687 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 11:38:15.688 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 11:38:15.690 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 11:38:15.709 +05:30 [Information] Connection id ""0HL6UTI82H4SF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.709 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" disconnecting. +2017-08-09 11:38:15.715 +05:30 [Information] Connection id ""0HL6UTI82H4SF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.716 +05:30 [Information] Connection id ""0HL6UTI82H4SF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.717 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.718 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" stopped. +2017-08-09 11:38:15.718 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.741 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.741 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.742 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.742 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.743 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.743 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1036" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.744 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.745 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.745 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.746 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.746 +05:30 [Debug] Connection id ""0HL6UTI82H4SF"" write of "1152" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 11:38:15.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 158132.5516ms +2017-08-09 11:38:15.750 +05:30 [Information] Request finished in 158140.6312ms 200 application/json; charset=utf-8 +2017-08-09 12:18:30.923 +05:30 [Debug] Hosting starting +2017-08-09 12:18:31.255 +05:30 [Debug] Hosting started +2017-08-09 12:18:31.464 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" started. +2017-08-09 12:18:31.464 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" started. +2017-08-09 12:18:31.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 12:18:32.020 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 12:18:32.121 +05:30 [Information] Request finished in 268.6436ms 200 +2017-08-09 12:18:32.230 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" completed keep alive response. +2017-08-09 12:18:33.858 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 12:18:34.040 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"ed9f6f0c-0d74-471b-a59b-cb9d8b0c8bcd"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 12:18:34.284 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 12:18:34.454 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 12:18:34.457 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 12:18:34.513 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:18:34.520 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:18:34.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:18:34.895 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 575.6593ms +2017-08-09 12:18:35.034 +05:30 [Information] Request finished in 3254.0702ms 200 application/json; charset=utf-8 +2017-08-09 12:18:35.037 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" completed keep alive response. +2017-08-09 12:18:55.839 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 12:18:55.841 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 12:18:55.843 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 12:19:01.299 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 12:19:25.071 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:25.107 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:25.119 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:25.449 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 29592.7945ms +2017-08-09 12:19:25.454 +05:30 [Information] Request finished in 29618.4844ms 200 application/json; charset=utf-8 +2017-08-09 12:19:25.455 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" completed keep alive response. +2017-08-09 12:19:33.344 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 12:19:33.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 12:19:33.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 12:19:35.533 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 12:19:35.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:35.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:35.904 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:36.070 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2711.7331ms +2017-08-09 12:19:36.073 +05:30 [Information] Request finished in 2741.891ms 200 application/json; charset=utf-8 +2017-08-09 12:19:36.076 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" completed keep alive response. +2017-08-09 12:19:43.211 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 12:19:43.212 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 12:19:43.214 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 12:19:43.318 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" started. +2017-08-09 12:19:43.328 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 12:19:43.329 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 12:19:43.332 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 12:19:43.347 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 12:19:43.347 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 12:19:43.358 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 12:19:44.252 +05:30 [Debug] Connection id ""0HL6UUAIVS2J6"" started. +2017-08-09 12:19:44.292 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 12:19:44.295 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 12:19:44.298 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 12:19:45.102 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" started. +2017-08-09 12:19:45.796 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 12:19:45.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 12:19:45.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 12:19:47.918 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:48.210 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 12:19:48.345 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:48.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:48.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:48.354 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:48.388 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 5139.8694ms +2017-08-09 12:19:48.391 +05:30 [Information] Request finished in 5182.1509ms 200 application/json; charset=utf-8 +2017-08-09 12:19:48.392 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" completed keep alive response. +2017-08-09 12:19:48.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:48.441 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:48.441 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:48.442 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:48.505 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 5124.4376ms +2017-08-09 12:19:48.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:48.565 +05:30 [Information] Request finished in 5211.4448ms 200 application/json; charset=utf-8 +2017-08-09 12:19:48.565 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:48.566 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" completed keep alive response. +2017-08-09 12:19:48.566 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:48.641 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:48.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 5287.2782ms +2017-08-09 12:19:48.670 +05:30 [Information] Request finished in 5338.7272ms 200 application/json; charset=utf-8 +2017-08-09 12:19:48.671 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" completed keep alive response. +2017-08-09 12:19:48.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:49.465 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:49.467 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:49.468 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:49.471 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 12:19:49.473 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:49.549 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:49.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:49.571 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:49.608 +05:30 [Debug] Connection id ""0HL6UUAIVS2J6"" received FIN. +2017-08-09 12:19:49.618 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3782.3507ms +2017-08-09 12:19:49.637 +05:30 [Debug] Connection id ""0HL6UUAIVS2J6"" disconnecting. +2017-08-09 12:19:49.645 +05:30 [Information] Connection id ""0HL6UUAIVS2J6"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:19:49.662 +05:30 [Information] Request finished in 3849.7311ms 200 application/json; charset=utf-8 +2017-08-09 12:19:49.665 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" completed keep alive response. +2017-08-09 12:19:49.664 +05:30 [Debug] Connection id ""0HL6UUAIVS2J6"" stopped. +2017-08-09 12:19:49.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 5327.3115ms +2017-08-09 12:19:49.711 +05:30 [Information] Request finished in 5438.0321ms 200 application/json; charset=utf-8 +2017-08-09 12:19:49.846 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 12:19:49.848 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 12:19:49.850 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 12:19:49.849 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 12:19:49.851 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 12:19:49.852 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 12:19:50.555 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 12:19:50.557 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 12:19:50.557 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 12:19:51.359 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 12:19:51.361 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 12:19:51.362 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 12:19:52.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:52.032 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:52.033 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:52.033 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:52.035 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:52.037 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2181.7891ms +2017-08-09 12:19:52.040 +05:30 [Information] Request finished in 2214.4952ms 200 application/json; charset=utf-8 +2017-08-09 12:19:52.042 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" completed keep alive response. +2017-08-09 12:19:52.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:53.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:19:53.029 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:53.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:53.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:53.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:53.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2499.2792ms +2017-08-09 12:19:53.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:53.089 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:19:53.090 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:53.179 +05:30 [Information] Request finished in 2536.0061ms 200 application/json; charset=utf-8 +2017-08-09 12:19:53.181 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" completed keep alive response. +2017-08-09 12:19:53.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:53.241 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3377.074ms +2017-08-09 12:19:53.265 +05:30 [Information] Request finished in 3439.073ms 200 application/json; charset=utf-8 +2017-08-09 12:19:53.267 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" completed keep alive response. +2017-08-09 12:19:53.500 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 12:19:53.505 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:53.506 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:53.507 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:53.509 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2144.5033ms +2017-08-09 12:19:53.511 +05:30 [Information] Request finished in 2160.9956ms 200 application/json; charset=utf-8 +2017-08-09 12:19:53.512 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" completed keep alive response. +2017-08-09 12:19:53.643 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 12:19:53.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 12:19:53.644 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 12:19:56.679 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 12:19:57.215 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:19:57.215 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:19:57.216 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:19:57.219 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3572.6363ms +2017-08-09 12:19:57.222 +05:30 [Information] Request finished in 3578.6193ms 200 application/json; charset=utf-8 +2017-08-09 12:19:57.223 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" completed keep alive response. +2017-08-09 12:21:29.597 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" received FIN. +2017-08-09 12:21:29.598 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" received FIN. +2017-08-09 12:21:29.598 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" disconnecting. +2017-08-09 12:21:29.599 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" received FIN. +2017-08-09 12:21:29.597 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" received FIN. +2017-08-09 12:21:29.609 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" started. +2017-08-09 12:21:29.611 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" disconnecting. +2017-08-09 12:21:29.612 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" sending FIN. +2017-08-09 12:21:29.622 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" disconnecting. +2017-08-09 12:21:29.622 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" disconnecting. +2017-08-09 12:21:29.629 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" sending FIN. +2017-08-09 12:21:29.630 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" sending FIN. +2017-08-09 12:21:29.639 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 12:21:29.644 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" sending FIN. +2017-08-09 12:21:29.647 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 12:21:29.651 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" sent FIN with status "0". +2017-08-09 12:21:29.655 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" sent FIN with status "0". +2017-08-09 12:21:29.660 +05:30 [Debug] Connection id ""0HL6UUAIVS2J3"" stopped. +2017-08-09 12:21:29.661 +05:30 [Debug] Connection id ""0HL6UUAIVS2J4"" stopped. +2017-08-09 12:21:29.666 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" sent FIN with status "0". +2017-08-09 12:21:29.667 +05:30 [Debug] Connection id ""0HL6UUAIVS2J7"" stopped. +2017-08-09 12:21:29.667 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" sent FIN with status "0". +2017-08-09 12:21:29.668 +05:30 [Debug] Connection id ""0HL6UUAIVS2J5"" stopped. +2017-08-09 12:21:29.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 12:21:32.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:21:32.727 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:21:32.728 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:21:32.728 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:21:32.730 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:21:32.740 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3067.8495ms +2017-08-09 12:21:32.747 +05:30 [Information] Request finished in 3115.0102ms 200 application/json; charset=utf-8 +2017-08-09 12:21:32.748 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:21:35.870 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 12:21:35.872 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 12:21:35.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 12:21:38.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 12:22:43.977 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:22:43.985 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:22:43.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:22:43.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:22:44.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 68132.3622ms +2017-08-09 12:22:44.022 +05:30 [Information] Request finished in 68159.1804ms 200 application/json; charset=utf-8 +2017-08-09 12:22:44.023 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:23:20.834 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 12:23:20.835 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 12:23:20.836 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 12:23:23.896 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 12:23:23.899 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:23:23.900 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:23:23.901 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:23:23.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3064.3753ms +2017-08-09 12:23:23.906 +05:30 [Information] Request finished in 3075.3345ms 200 application/json; charset=utf-8 +2017-08-09 12:23:23.906 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:23:23.917 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 12:23:23.918 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 12:23:23.920 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 12:23:26.966 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 12:23:26.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:23:26.976 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:23:26.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:23:26.980 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3057.6746ms +2017-08-09 12:23:26.999 +05:30 [Information] Request finished in 3082.6321ms 200 application/json; charset=utf-8 +2017-08-09 12:23:26.999 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:23:27.013 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 12:23:27.014 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 12:23:27.015 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 12:23:30.045 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 12:23:30.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:23:30.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:23:30.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:23:30.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3043.1121ms +2017-08-09 12:23:30.063 +05:30 [Information] Request finished in 3055.1095ms 200 application/json; charset=utf-8 +2017-08-09 12:23:30.064 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:23:31.529 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" started. +2017-08-09 12:23:31.535 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 12:23:31.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 12:23:31.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 12:23:31.549 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 12:23:31.550 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 12:23:31.552 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 12:23:31.952 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" started. +2017-08-09 12:23:31.997 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 12:23:31.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 12:23:32.002 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 12:23:34.727 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:23:34.760 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:23:34.761 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:23:34.761 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:23:34.772 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:23:34.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:23:34.811 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3257.9761ms +2017-08-09 12:23:34.827 +05:30 [Information] Request finished in 3277.7787ms 200 application/json; charset=utf-8 +2017-08-09 12:23:34.843 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" completed keep alive response. +2017-08-09 12:23:34.843 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:23:34.847 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:23:34.847 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:23:34.849 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:23:34.850 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3297.8696ms +2017-08-09 12:23:34.853 +05:30 [Information] Request finished in 3324.6202ms 200 application/json; charset=utf-8 +2017-08-09 12:23:34.854 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" completed keep alive response. +2017-08-09 12:23:35.189 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 12:25:32.437 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" received FIN. +2017-08-09 12:26:12.650 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:26:12.650 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:26:12.669 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:26:12.689 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:26:12.700 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" disconnecting. +2017-08-09 12:26:12.721 +05:30 [Information] Connection id ""0HL6UUAIVS2JA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.742 +05:30 [Information] Connection id ""0HL6UUAIVS2JA"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.748 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" stopped. +2017-08-09 12:26:12.749 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.750 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.751 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.752 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.753 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.754 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.755 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.756 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1036" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.757 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.758 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.759 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.761 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.762 +05:30 [Debug] Connection id ""0HL6UUAIVS2JA"" write of "1152" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 12:26:12.765 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 160754.8565ms +2017-08-09 12:26:12.769 +05:30 [Information] Request finished in 160792.8868ms 200 application/json; charset=utf-8 +2017-08-09 12:26:31.429 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" received FIN. +2017-08-09 12:26:31.429 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" received FIN. +2017-08-09 12:26:31.430 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" disconnecting. +2017-08-09 12:26:31.431 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" disconnecting. +2017-08-09 12:26:31.431 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" sending FIN. +2017-08-09 12:26:31.436 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" sent FIN with status "0". +2017-08-09 12:26:31.436 +05:30 [Debug] Connection id ""0HL6UUAIVS2J8"" stopped. +2017-08-09 12:26:31.435 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" sending FIN. +2017-08-09 12:26:31.438 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" sent FIN with status "0". +2017-08-09 12:26:31.438 +05:30 [Debug] Connection id ""0HL6UUAIVS2J9"" stopped. +2017-08-09 12:30:59.974 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" started. +2017-08-09 12:30:59.976 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 12:30:59.977 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 12:30:59.978 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 12:31:03.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 12:31:03.190 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:31:03.190 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:31:03.192 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:31:03.194 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3214.4363ms +2017-08-09 12:31:03.197 +05:30 [Information] Request finished in 3221.1833ms 200 application/json; charset=utf-8 +2017-08-09 12:31:03.198 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" completed keep alive response. +2017-08-09 12:31:03.225 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 12:31:03.229 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 12:31:03.230 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 12:31:06.290 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 12:31:06.297 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:31:06.298 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:31:06.300 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:31:06.302 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3070.0613ms +2017-08-09 12:31:06.304 +05:30 [Information] Request finished in 3087.2439ms 200 application/json; charset=utf-8 +2017-08-09 12:31:06.305 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" completed keep alive response. +2017-08-09 12:31:06.309 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 12:31:06.310 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 12:31:06.310 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 12:31:09.364 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 12:31:09.374 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:31:09.374 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:31:09.375 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:31:09.377 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3065.7803ms +2017-08-09 12:31:09.381 +05:30 [Information] Request finished in 3071.9477ms 200 application/json; charset=utf-8 +2017-08-09 12:31:09.381 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" completed keep alive response. +2017-08-09 12:31:11.719 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" started. +2017-08-09 12:31:11.732 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 12:31:11.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 12:31:11.735 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 12:31:11.759 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 12:31:11.760 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 12:31:11.761 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 12:31:12.433 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" started. +2017-08-09 12:31:12.614 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 12:31:12.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 12:31:12.616 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 12:31:14.787 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:31:14.794 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:31:14.795 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:31:14.795 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:31:14.797 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:31:14.799 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3035.9568ms +2017-08-09 12:31:14.804 +05:30 [Information] Request finished in 3080.909ms 200 application/json; charset=utf-8 +2017-08-09 12:31:14.805 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" completed keep alive response. +2017-08-09 12:31:15.072 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 12:31:15.139 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:31:15.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:31:15.140 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:31:15.141 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:31:15.142 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3378.5949ms +2017-08-09 12:31:15.145 +05:30 [Information] Request finished in 3422.2327ms 200 application/json; charset=utf-8 +2017-08-09 12:31:15.146 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" completed keep alive response. +2017-08-09 12:31:15.922 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 12:32:31.429 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" received FIN. +2017-08-09 12:32:31.429 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" received FIN. +2017-08-09 12:32:31.431 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" disconnecting. +2017-08-09 12:32:31.432 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" disconnecting. +2017-08-09 12:32:31.437 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" sending FIN. +2017-08-09 12:32:31.435 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" sending FIN. +2017-08-09 12:32:31.439 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" sent FIN with status "0". +2017-08-09 12:32:31.438 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" sent FIN with status "0". +2017-08-09 12:32:31.443 +05:30 [Debug] Connection id ""0HL6UUAIVS2JC"" stopped. +2017-08-09 12:32:31.440 +05:30 [Debug] Connection id ""0HL6UUAIVS2JB"" stopped. +2017-08-09 12:32:52.702 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 12:32:52.703 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 12:32:52.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 12:32:52.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 12:32:52.709 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 100087.6882ms +2017-08-09 12:32:52.716 +05:30 [Information] Request finished in 100238.1921ms 200 application/json; charset=utf-8 +2017-08-09 12:32:52.717 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" completed keep alive response. +2017-08-09 12:34:31.430 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" received FIN. +2017-08-09 12:34:31.431 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" disconnecting. +2017-08-09 12:34:31.432 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" sending FIN. +2017-08-09 12:34:31.433 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" sent FIN with status "0". +2017-08-09 12:34:31.433 +05:30 [Debug] Connection id ""0HL6UUAIVS2JD"" stopped. +2017-08-09 15:24:01.548 +05:30 [Debug] Hosting starting +2017-08-09 15:24:02.166 +05:30 [Debug] Hosting started +2017-08-09 15:24:02.345 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" started. +2017-08-09 15:24:02.356 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" started. +2017-08-09 15:24:02.588 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 15:24:02.609 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 15:24:02.670 +05:30 [Information] Request finished in 163.9219ms 200 +2017-08-09 15:24:02.740 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" completed keep alive response. +2017-08-09 15:24:03.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 15:24:04.058 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"31ee86b3-78e1-4ea0-998f-24b155d4e553"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 15:24:04.565 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 15:24:04.716 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 15:24:04.720 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 15:24:04.769 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:04.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:04.777 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:05.402 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 821.3331ms +2017-08-09 15:24:05.577 +05:30 [Information] Request finished in 3086.1739ms 200 application/json; charset=utf-8 +2017-08-09 15:24:05.579 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" completed keep alive response. +2017-08-09 15:24:05.607 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-09 15:24:05.611 +05:30 [Debug] Request did not match any routes. +2017-08-09 15:24:05.637 +05:30 [Debug] The request path "" does not match the path filter +2017-08-09 15:24:05.642 +05:30 [Information] Request finished in 35.0669ms 404 +2017-08-09 15:24:05.643 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" completed keep alive response. +2017-08-09 15:24:26.534 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 15:24:26.535 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 15:24:26.539 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 15:24:30.559 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 15:24:38.492 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:38.555 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:38.561 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:38.788 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 12245.2454ms +2017-08-09 15:24:38.793 +05:30 [Information] Request finished in 12260.0933ms 200 application/json; charset=utf-8 +2017-08-09 15:24:38.793 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" completed keep alive response. +2017-08-09 15:24:39.405 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 15:24:39.405 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 15:24:39.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 15:24:42.498 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 15:24:42.836 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:42.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:42.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:42.963 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3548.225ms +2017-08-09 15:24:42.966 +05:30 [Information] Request finished in 3562.038ms 200 application/json; charset=utf-8 +2017-08-09 15:24:42.967 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" completed keep alive response. +2017-08-09 15:24:47.128 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 15:24:47.129 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 15:24:47.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 15:24:47.135 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" started. +2017-08-09 15:24:47.156 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 15:24:47.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 15:24:47.161 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 15:24:47.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 15:24:47.176 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 15:24:47.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 15:24:47.713 +05:30 [Debug] Connection id ""0HL6V1I888JBT"" started. +2017-08-09 15:24:47.716 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 15:24:47.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 15:24:47.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 15:24:48.540 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" started. +2017-08-09 15:24:49.133 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 15:24:49.134 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 15:24:49.135 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 15:24:50.810 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:50.811 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 15:24:50.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:50.878 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:50.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:50.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:50.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:50.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:50.883 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:50.886 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:50.893 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3752.6208ms +2017-08-09 15:24:50.897 +05:30 [Information] Request finished in 3769.415ms 200 application/json; charset=utf-8 +2017-08-09 15:24:50.898 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" completed keep alive response. +2017-08-09 15:24:50.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3718.1707ms +2017-08-09 15:24:50.914 +05:30 [Information] Request finished in 3756.1367ms 200 application/json; charset=utf-8 +2017-08-09 15:24:50.916 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" completed keep alive response. +2017-08-09 15:24:51.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:51.066 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:51.066 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:51.078 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:51.093 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3917.9663ms +2017-08-09 15:24:51.108 +05:30 [Information] Request finished in 3970.8104ms 200 application/json; charset=utf-8 +2017-08-09 15:24:51.110 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" completed keep alive response. +2017-08-09 15:24:51.738 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:52.065 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 15:24:52.066 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 15:24:52.067 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 15:24:52.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 15:24:52.093 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 15:24:52.094 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 15:24:52.200 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:52.201 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:52.203 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:52.213 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:52.363 +05:30 [Debug] Connection id ""0HL6V1I888JBT"" received FIN. +2017-08-09 15:24:52.363 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 15:24:52.376 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4650.6091ms +2017-08-09 15:24:52.378 +05:30 [Information] Connection id ""0HL6V1I888JBT"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:24:52.376 +05:30 [Debug] Connection id ""0HL6V1I888JBT"" disconnecting. +2017-08-09 15:24:52.380 +05:30 [Information] Request finished in 4663.1664ms 200 application/json; charset=utf-8 +2017-08-09 15:24:52.385 +05:30 [Debug] Connection id ""0HL6V1I888JBT"" stopped. +2017-08-09 15:24:52.436 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:52.437 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:52.438 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:52.450 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3311.7571ms +2017-08-09 15:24:52.453 +05:30 [Information] Request finished in 3321.1974ms 200 application/json; charset=utf-8 +2017-08-09 15:24:52.455 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" completed keep alive response. +2017-08-09 15:24:52.602 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 15:24:52.602 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 15:24:52.603 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 15:24:53.124 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 15:24:53.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 15:24:53.127 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 15:24:55.176 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:55.235 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:55.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:55.272 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:55.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:55.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:55.274 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:55.275 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:55.276 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:55.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3205.3631ms +2017-08-09 15:24:55.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:55.303 +05:30 [Information] Request finished in 3249.3125ms 200 application/json; charset=utf-8 +2017-08-09 15:24:55.304 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" completed keep alive response. +2017-08-09 15:24:55.303 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3155.2579ms +2017-08-09 15:24:55.307 +05:30 [Information] Request finished in 3275.4453ms 200 application/json; charset=utf-8 +2017-08-09 15:24:55.308 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" completed keep alive response. +2017-08-09 15:24:55.665 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:24:55.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:55.910 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:24:55.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:55.911 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:55.915 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3308.9848ms +2017-08-09 15:24:55.919 +05:30 [Information] Request finished in 3319.0123ms 200 application/json; charset=utf-8 +2017-08-09 15:24:55.920 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" completed keep alive response. +2017-08-09 15:24:56.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 15:24:56.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:56.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:56.272 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:56.274 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3144.8827ms +2017-08-09 15:24:56.284 +05:30 [Information] Request finished in 3160.9099ms 200 application/json; charset=utf-8 +2017-08-09 15:24:56.284 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" completed keep alive response. +2017-08-09 15:24:56.292 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 15:24:56.292 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 15:24:56.294 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 15:24:58.395 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 15:24:58.441 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:24:58.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:24:58.443 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:24:58.444 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2148.7098ms +2017-08-09 15:24:58.447 +05:30 [Information] Request finished in 2156.0856ms 200 application/json; charset=utf-8 +2017-08-09 15:24:58.448 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" completed keep alive response. +2017-08-09 15:25:00.143 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 15:25:00.144 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 15:25:00.157 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 15:25:02.326 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:25:02.369 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:25:02.370 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:25:02.371 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:25:02.372 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:25:02.389 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 2229.2845ms +2017-08-09 15:25:02.393 +05:30 [Information] Request finished in 2249.6455ms 200 application/json; charset=utf-8 +2017-08-09 15:25:02.394 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" completed keep alive response. +2017-08-09 15:25:05.126 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 15:25:05.126 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 15:25:05.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 15:25:08.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 15:26:02.317 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" received FIN. +2017-08-09 15:26:02.318 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" disconnecting. +2017-08-09 15:26:02.318 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" sending FIN. +2017-08-09 15:26:02.325 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" sent FIN with status "0". +2017-08-09 15:26:02.326 +05:30 [Debug] Connection id ""0HL6V1I888JBU"" stopped. +2017-08-09 15:26:02.327 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" received FIN. +2017-08-09 15:26:02.329 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" disconnecting. +2017-08-09 15:26:02.329 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" sending FIN. +2017-08-09 15:26:02.330 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" sent FIN with status "0". +2017-08-09 15:26:02.330 +05:30 [Debug] Connection id ""0HL6V1I888JBS"" stopped. +2017-08-09 15:27:05.698 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" received FIN. +2017-08-09 15:27:17.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:27:17.288 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:27:17.289 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:27:17.322 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:27:17.353 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" disconnecting. +2017-08-09 15:27:17.355 +05:30 [Information] Connection id ""0HL6V1I888JBR"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.367 +05:30 [Information] Connection id ""0HL6V1I888JBR"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.377 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" stopped. +2017-08-09 15:27:17.384 +05:30 [Information] Connection id ""0HL6V1I888JBR"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.389 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.391 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.394 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.395 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.396 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.400 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.402 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1036" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.404 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.406 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.408 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.408 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.409 +05:30 [Debug] Connection id ""0HL6V1I888JBR"" write of "1152" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 15:27:17.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 132276.6868ms +2017-08-09 15:27:17.429 +05:30 [Information] Request finished in 132298.6936ms 200 application/json; charset=utf-8 +2017-08-09 15:28:02.317 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" received FIN. +2017-08-09 15:28:02.318 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" disconnecting. +2017-08-09 15:28:02.318 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" sending FIN. +2017-08-09 15:28:02.319 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" sent FIN with status "0". +2017-08-09 15:28:02.320 +05:30 [Debug] Connection id ""0HL6V1I888JBQ"" stopped. +2017-08-09 15:34:04.697 +05:30 [Debug] Hosting starting +2017-08-09 15:34:04.955 +05:30 [Debug] Hosting started +2017-08-09 15:34:05.121 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" started. +2017-08-09 15:34:05.121 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" started. +2017-08-09 15:34:05.316 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 15:34:05.338 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 15:34:05.436 +05:30 [Information] Request finished in 171.5185ms 200 +2017-08-09 15:34:05.499 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" completed keep alive response. +2017-08-09 15:34:06.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 15:34:06.145 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b0a7e0c1-39ae-4b86-96fb-07ba81ca3576"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 15:34:06.232 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 15:34:06.334 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 15:34:06.338 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 15:34:06.381 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:34:06.389 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:06.395 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:06.654 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 414.6808ms +2017-08-09 15:34:06.735 +05:30 [Information] Request finished in 1490.5474ms 200 application/json; charset=utf-8 +2017-08-09 15:34:06.738 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" completed keep alive response. +2017-08-09 15:34:17.016 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 15:34:17.018 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 15:34:17.026 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 15:34:20.707 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 15:34:24.344 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 15:34:24.345 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 15:34:24.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 15:34:27.176 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:27.186 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:27.187 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:27.323 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 10294.8619ms +2017-08-09 15:34:27.326 +05:30 [Information] Request finished in 10310.7566ms 200 application/json; charset=utf-8 +2017-08-09 15:34:27.326 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" completed keep alive response. +2017-08-09 15:34:27.660 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 15:34:27.939 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 15:34:27.940 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 15:34:27.941 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 15:34:28.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:28.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:28.271 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:28.341 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3957.8373ms +2017-08-09 15:34:28.346 +05:30 [Information] Request finished in 4033.5549ms 200 application/json; charset=utf-8 +2017-08-09 15:34:28.347 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" completed keep alive response. +2017-08-09 15:34:28.688 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 15:34:28.690 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 15:34:28.692 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 15:34:31.048 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 15:34:31.056 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:31.057 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:31.058 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:31.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3116.5993ms +2017-08-09 15:34:31.063 +05:30 [Information] Request finished in 3123.6192ms 200 application/json; charset=utf-8 +2017-08-09 15:34:31.064 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" completed keep alive response. +2017-08-09 15:34:31.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 15:34:31.921 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:31.922 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:31.926 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:31.970 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3275.7857ms +2017-08-09 15:34:31.974 +05:30 [Information] Request finished in 3292.2276ms 200 application/json; charset=utf-8 +2017-08-09 15:34:31.974 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" completed keep alive response. +2017-08-09 15:34:34.214 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 15:34:34.215 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 15:34:34.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 15:34:34.216 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 15:34:34.217 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 15:34:34.218 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 15:34:34.753 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" started. +2017-08-09 15:34:34.757 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 15:34:34.758 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 15:34:34.760 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 15:34:35.543 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" started. +2017-08-09 15:34:35.545 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 15:34:35.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 15:34:35.548 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 15:34:37.427 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:34:37.428 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:34:37.522 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:37.523 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:34:37.523 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:37.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:37.551 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3316.5045ms +2017-08-09 15:34:37.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:37.588 +05:30 [Information] Request finished in 3370.2809ms 200 application/json; charset=utf-8 +2017-08-09 15:34:37.591 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:34:37.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:37.591 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" completed keep alive response. +2017-08-09 15:34:37.599 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:37.612 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3389.7034ms +2017-08-09 15:34:37.617 +05:30 [Information] Request finished in 3401.8909ms 200 application/json; charset=utf-8 +2017-08-09 15:34:37.618 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" completed keep alive response. +2017-08-09 15:34:37.849 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:34:38.147 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:38.147 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:34:38.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:38.149 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:38.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3487.1656ms +2017-08-09 15:34:38.263 +05:30 [Information] Request finished in 3506.7474ms 200 application/json; charset=utf-8 +2017-08-09 15:34:38.264 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" completed keep alive response. +2017-08-09 15:34:38.666 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 15:34:38.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:38.704 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:38.705 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:38.707 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3157.7883ms +2017-08-09 15:34:38.710 +05:30 [Information] Request finished in 3165.561ms 200 application/json; charset=utf-8 +2017-08-09 15:34:38.711 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" completed keep alive response. +2017-08-09 15:34:45.137 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 15:34:45.138 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 15:34:45.140 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 15:34:46.302 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 15:34:46.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 15:34:46.316 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 15:34:46.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 15:34:46.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 15:34:46.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 1185.5195ms +2017-08-09 15:34:46.332 +05:30 [Information] Request finished in 1193.4263ms 200 application/json; charset=utf-8 +2017-08-09 15:34:46.332 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" completed keep alive response. +2017-08-09 15:34:48.188 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 15:34:48.189 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 15:34:48.192 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 15:34:51.301 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 15:36:05.100 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" received FIN. +2017-08-09 15:36:05.101 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" received FIN. +2017-08-09 15:36:05.102 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" disconnecting. +2017-08-09 15:36:05.104 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" disconnecting. +2017-08-09 15:36:05.101 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" received FIN. +2017-08-09 15:36:05.107 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" disconnecting. +2017-08-09 15:36:05.107 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" sending FIN. +2017-08-09 15:36:05.106 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" sending FIN. +2017-08-09 15:36:05.112 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" sending FIN. +2017-08-09 15:36:05.116 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" sent FIN with status "0". +2017-08-09 15:36:05.116 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" sent FIN with status "0". +2017-08-09 15:36:05.120 +05:30 [Debug] Connection id ""0HL6V1NRSPVTU"" stopped. +2017-08-09 15:36:05.120 +05:30 [Debug] Connection id ""0HL6V1NRSPVTS"" stopped. +2017-08-09 15:36:05.121 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" sent FIN with status "0". +2017-08-09 15:36:05.123 +05:30 [Debug] Connection id ""0HL6V1NRSPVTV"" stopped. +2017-08-09 15:36:48.474 +05:30 [Debug] Connection id ""0HL6V1NRSPVTT"" received FIN. +2017-08-09 16:03:58.831 +05:30 [Debug] Hosting starting +2017-08-09 16:03:59.619 +05:30 [Debug] Hosting started +2017-08-09 16:03:59.724 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" started. +2017-08-09 16:03:59.724 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" started. +2017-08-09 16:03:59.938 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 16:03:59.938 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 16:04:00.033 +05:30 [Information] Request finished in 114.2557ms 200 +2017-08-09 16:04:00.121 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:04:01.087 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 16:04:01.160 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"b78cbbfd-ff9a-4cbc-bf15-eda5c66f0e3a"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 16:04:01.378 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 16:04:01.527 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 16:04:01.531 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 16:04:01.581 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:04:01.588 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:01.591 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:02.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 883.2963ms +2017-08-09 16:04:02.455 +05:30 [Information] Request finished in 2564.2336ms 200 application/json; charset=utf-8 +2017-08-09 16:04:02.457 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" completed keep alive response. +2017-08-09 16:04:14.815 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:04:14.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:04:14.819 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:04:18.171 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:04:22.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:22.450 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:22.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:22.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7791.5539ms +2017-08-09 16:04:22.616 +05:30 [Information] Request finished in 7811.5356ms 200 application/json; charset=utf-8 +2017-08-09 16:04:22.617 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:04:23.244 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 16:04:23.246 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 16:04:23.248 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 16:04:25.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:04:25.506 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:25.507 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:25.508 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:25.569 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2313.0062ms +2017-08-09 16:04:25.573 +05:30 [Information] Request finished in 2327.9084ms 200 application/json; charset=utf-8 +2017-08-09 16:04:25.574 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" completed keep alive response. +2017-08-09 16:04:25.742 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:04:25.742 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:04:25.745 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:04:28.875 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:04:28.880 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:28.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:28.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:28.886 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3137.2265ms +2017-08-09 16:04:28.888 +05:30 [Information] Request finished in 3145.6435ms 200 application/json; charset=utf-8 +2017-08-09 16:04:28.889 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:04:28.929 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 16:04:28.930 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 16:04:28.931 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 16:04:31.096 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:04:31.104 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:31.105 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:31.106 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:31.108 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2175.1317ms +2017-08-09 16:04:31.112 +05:30 [Information] Request finished in 2186.3932ms 200 application/json; charset=utf-8 +2017-08-09 16:04:31.113 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" completed keep alive response. +2017-08-09 16:04:31.124 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 16:04:31.125 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:04:31.128 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:04:34.178 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 16:04:34.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:34.315 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:34.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:34.366 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3236.7943ms +2017-08-09 16:04:34.368 +05:30 [Information] Request finished in 3244.9835ms 200 application/json; charset=utf-8 +2017-08-09 16:04:34.368 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:04:37.815 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:04:37.816 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:04:37.818 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:04:37.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:04:37.828 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:04:37.848 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:04:38.380 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" started. +2017-08-09 16:04:38.381 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 16:04:38.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 16:04:38.384 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 16:04:39.356 +05:30 [Debug] Connection id ""0HL6V28INEJHU"" started. +2017-08-09 16:04:39.359 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:04:39.360 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:04:39.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:04:41.094 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:04:41.101 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:04:41.217 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:41.218 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:04:41.219 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:41.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:41.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3404.0083ms +2017-08-09 16:04:41.244 +05:30 [Information] Request finished in 3457.543ms 200 application/json; charset=utf-8 +2017-08-09 16:04:41.245 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" completed keep alive response. +2017-08-09 16:04:41.252 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:41.253 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:04:41.253 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:41.255 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:41.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3407.1154ms +2017-08-09 16:04:41.261 +05:30 [Information] Request finished in 3445.6946ms 200 application/json; charset=utf-8 +2017-08-09 16:04:41.262 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:04:42.191 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:04:42.458 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:04:42.463 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:42.481 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:42.559 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:42.630 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3210.4204ms +2017-08-09 16:04:42.655 +05:30 [Information] Request finished in 3296.1683ms 200 application/json; charset=utf-8 +2017-08-09 16:04:42.656 +05:30 [Debug] Connection id ""0HL6V28INEJHU"" completed keep alive response. +2017-08-09 16:04:42.717 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 16:04:42.717 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:42.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 16:04:42.718 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:04:42.719 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:42.720 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 16:04:42.720 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:42.800 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4411.5122ms +2017-08-09 16:04:42.812 +05:30 [Information] Request finished in 4427.5701ms 200 application/json; charset=utf-8 +2017-08-09 16:04:42.814 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" completed keep alive response. +2017-08-09 16:04:45.743 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 16:04:45.910 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:04:45.910 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:04:45.917 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:04:45.920 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3195.9824ms +2017-08-09 16:04:45.922 +05:30 [Information] Request finished in 3219.8319ms 200 application/json; charset=utf-8 +2017-08-09 16:04:45.922 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" completed keep alive response. +2017-08-09 16:05:09.356 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 16:05:09.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 16:05:09.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 16:05:12.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:05:12.561 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:05:12.562 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:05:12.562 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:05:12.564 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:05:12.576 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3212.9114ms +2017-08-09 16:05:12.579 +05:30 [Information] Request finished in 3230.1614ms 200 application/json; charset=utf-8 +2017-08-09 16:05:12.580 +05:30 [Debug] Connection id ""0HL6V28INEJHS"" completed keep alive response. +2017-08-09 16:05:14.569 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:05:14.569 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:05:14.572 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:05:17.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:06:39.605 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" received FIN. +2017-08-09 16:06:39.623 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" received FIN. +2017-08-09 16:06:40.293 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" disconnecting. +2017-08-09 16:06:40.294 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" disconnecting. +2017-08-09 16:06:40.298 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" sending FIN. +2017-08-09 16:06:40.303 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" sending FIN. +2017-08-09 16:06:40.305 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" sent FIN with status "0". +2017-08-09 16:06:40.306 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" sent FIN with status "0". +2017-08-09 16:06:40.336 +05:30 [Debug] Connection id ""0HL6V28INEJHT"" stopped. +2017-08-09 16:06:40.337 +05:30 [Debug] Connection id ""0HL6V28INEJHR"" stopped. +2017-08-09 16:08:38.222 +05:30 [Debug] Hosting starting +2017-08-09 16:08:38.668 +05:30 [Debug] Hosting started +2017-08-09 16:08:38.795 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" started. +2017-08-09 16:08:38.795 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" started. +2017-08-09 16:08:39.171 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 16:08:39.169 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 16:08:39.265 +05:30 [Information] Request finished in 280.7467ms 200 +2017-08-09 16:08:39.332 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:08:40.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 16:08:40.171 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"a12db533-7f2e-493f-90fe-b650e90151e8"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 16:08:40.520 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 16:08:40.711 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 16:08:40.714 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 16:08:40.777 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:08:40.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:08:40.789 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:08:41.078 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 537.9329ms +2017-08-09 16:08:41.167 +05:30 [Information] Request finished in 2210.7601ms 200 application/json; charset=utf-8 +2017-08-09 16:08:41.174 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:08:50.498 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:08:50.506 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:08:50.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:08:54.236 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:08:58.005 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:08:58.015 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:08:58.018 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:08:58.132 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7606.3707ms +2017-08-09 16:08:58.135 +05:30 [Information] Request finished in 7644.3649ms 200 application/json; charset=utf-8 +2017-08-09 16:08:58.136 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:08:58.858 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 16:08:58.859 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 16:08:58.861 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 16:09:02.126 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:09:02.228 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:02.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:02.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:02.530 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3620.6489ms +2017-08-09 16:09:02.755 +05:30 [Information] Request finished in 3865.1282ms 200 application/json; charset=utf-8 +2017-08-09 16:09:02.757 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:09:04.730 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 16:09:04.731 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 16:09:04.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 16:09:07.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:09:08.201 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:08.206 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:08.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:08.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3478.5258ms +2017-08-09 16:09:08.226 +05:30 [Information] Request finished in 3501.3335ms 200 application/json; charset=utf-8 +2017-08-09 16:09:08.226 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:09:08.354 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:09:08.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:09:08.361 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:09:11.402 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:09:11.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:11.406 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:11.408 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:11.409 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3046.4412ms +2017-08-09 16:09:11.412 +05:30 [Information] Request finished in 3070.2911ms 200 application/json; charset=utf-8 +2017-08-09 16:09:11.412 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:09:11.442 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 16:09:11.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 16:09:11.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 16:09:14.480 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:09:14.487 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:14.488 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:14.489 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:14.491 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3043.6534ms +2017-08-09 16:09:14.497 +05:30 [Information] Request finished in 3053.619ms 200 application/json; charset=utf-8 +2017-08-09 16:09:14.498 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:09:14.507 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 16:09:14.508 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:09:14.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:09:17.581 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 16:09:17.674 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:17.675 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:17.676 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:17.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3199.889ms +2017-08-09 16:09:17.718 +05:30 [Information] Request finished in 3208.9595ms 200 application/json; charset=utf-8 +2017-08-09 16:09:17.720 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:09:19.630 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:09:19.631 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:09:19.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:09:19.632 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:09:19.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:09:19.643 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:09:20.288 +05:30 [Debug] Connection id ""0HL6V2B5SSJM1"" started. +2017-08-09 16:09:20.290 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 16:09:20.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 16:09:20.293 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 16:09:20.960 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" started. +2017-08-09 16:09:20.967 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:09:20.968 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:09:20.969 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:09:22.710 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:09:22.769 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:22.770 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:09:22.771 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:22.772 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:22.774 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3130.0054ms +2017-08-09 16:09:22.777 +05:30 [Information] Request finished in 3146.9393ms 200 application/json; charset=utf-8 +2017-08-09 16:09:22.777 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:09:22.835 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:09:22.903 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:22.904 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:09:22.904 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:22.905 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:22.913 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3268.2868ms +2017-08-09 16:09:22.916 +05:30 [Information] Request finished in 3285.7937ms 200 application/json; charset=utf-8 +2017-08-09 16:09:22.917 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:09:23.447 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:09:23.783 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:23.784 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:09:23.784 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:23.785 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:23.864 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3569.9507ms +2017-08-09 16:09:23.867 +05:30 [Information] Request finished in 3576.5763ms 200 application/json; charset=utf-8 +2017-08-09 16:09:23.868 +05:30 [Debug] Connection id ""0HL6V2B5SSJM1"" completed keep alive response. +2017-08-09 16:09:24.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:09:24.036 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:24.036 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:24.038 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:24.040 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3067.67ms +2017-08-09 16:09:24.043 +05:30 [Information] Request finished in 3080.2571ms 200 application/json; charset=utf-8 +2017-08-09 16:09:24.044 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" completed keep alive response. +2017-08-09 16:09:24.051 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 16:09:24.052 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 16:09:24.054 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 16:09:25.853 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 16:09:25.854 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 16:09:25.856 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 16:09:26.159 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 16:09:26.365 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:26.366 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:26.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:26.368 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2312.4924ms +2017-08-09 16:09:26.371 +05:30 [Information] Request finished in 2318.8412ms 200 application/json; charset=utf-8 +2017-08-09 16:09:26.373 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" completed keep alive response. +2017-08-09 16:09:28.932 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:09:28.942 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:09:28.943 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:09:28.944 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:09:28.945 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:09:28.957 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3099.6634ms +2017-08-09 16:09:28.960 +05:30 [Information] Request finished in 3107.6242ms 200 application/json; charset=utf-8 +2017-08-09 16:09:28.960 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" completed keep alive response. +2017-08-09 16:09:38.098 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:09:38.099 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:09:38.101 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:09:39.344 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:10:38.772 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" received FIN. +2017-08-09 16:10:38.776 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" received FIN. +2017-08-09 16:10:38.773 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" received FIN. +2017-08-09 16:10:38.778 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" disconnecting. +2017-08-09 16:10:38.778 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" disconnecting. +2017-08-09 16:10:38.784 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" disconnecting. +2017-08-09 16:10:38.882 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" sending FIN. +2017-08-09 16:10:38.805 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" sending FIN. +2017-08-09 16:10:38.900 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" sent FIN with status "0". +2017-08-09 16:10:38.903 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" sending FIN. +2017-08-09 16:10:38.912 +05:30 [Debug] Connection id ""0HL6V2B5SSJM0"" stopped. +2017-08-09 16:10:38.913 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" sent FIN with status "0". +2017-08-09 16:10:38.946 +05:30 [Debug] Connection id ""0HL6V2B5SSJM2"" stopped. +2017-08-09 16:10:38.954 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" sent FIN with status "0". +2017-08-09 16:10:38.955 +05:30 [Debug] Connection id ""0HL6V2B5SSJLV"" stopped. +2017-08-09 16:11:38.169 +05:30 [Debug] Connection id ""0HL6V2B5SSJM1"" received FIN. +2017-08-09 16:14:30.979 +05:30 [Debug] Connection id ""0HL6V2B5SSJM3"" started. +2017-08-09 16:14:30.981 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:14:30.982 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:14:30.982 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:14:34.042 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:14:34.045 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:14:34.046 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:14:34.047 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:14:34.049 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.5767ms +2017-08-09 16:14:34.052 +05:30 [Information] Request finished in 3070.7979ms 200 application/json; charset=utf-8 +2017-08-09 16:14:34.052 +05:30 [Debug] Connection id ""0HL6V2B5SSJM3"" completed keep alive response. +2017-08-09 16:14:34.102 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 16:14:34.103 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 16:14:34.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 16:14:37.138 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:14:37.143 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:14:37.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:14:37.145 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:14:37.149 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3041.9848ms +2017-08-09 16:14:37.152 +05:30 [Information] Request finished in 3058.2768ms 200 application/json; charset=utf-8 +2017-08-09 16:14:37.153 +05:30 [Debug] Connection id ""0HL6V2B5SSJM3"" completed keep alive response. +2017-08-09 16:14:37.157 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 16:14:37.158 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:14:37.159 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:14:39.280 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 16:14:39.288 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:14:39.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:14:39.289 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:14:39.291 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2130.9953ms +2017-08-09 16:14:39.293 +05:30 [Information] Request finished in 2136.0321ms 200 application/json; charset=utf-8 +2017-08-09 16:14:39.294 +05:30 [Debug] Connection id ""0HL6V2B5SSJM3"" completed keep alive response. +2017-08-09 16:14:41.136 +05:30 [Debug] Connection id ""0HL6V2B5SSJM4"" started. +2017-08-09 16:14:41.146 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:14:41.148 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:14:41.149 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:14:41.152 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:14:41.153 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:14:41.153 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:14:43.834 +05:30 [Debug] Connection id ""0HL6V2B5SSJM5"" started. +2017-08-09 16:14:43.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:14:43.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:14:43.917 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:14:44.211 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:14:44.220 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:14:44.220 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:14:44.221 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:14:44.222 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:14:44.223 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3068.7526ms +2017-08-09 16:14:44.226 +05:30 [Information] Request finished in 3079.4457ms 200 application/json; charset=utf-8 +2017-08-09 16:14:44.227 +05:30 [Debug] Connection id ""0HL6V2B5SSJM4"" completed keep alive response. +2017-08-09 16:14:44.373 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:14:44.464 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:14:44.465 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:14:44.466 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:14:44.467 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:14:44.469 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3318.1764ms +2017-08-09 16:14:44.471 +05:30 [Information] Request finished in 3332.9832ms 200 application/json; charset=utf-8 +2017-08-09 16:14:44.472 +05:30 [Debug] Connection id ""0HL6V2B5SSJM3"" completed keep alive response. +2017-08-09 16:14:46.084 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:16:08.295 +05:30 [Debug] Hosting starting +2017-08-09 16:16:08.585 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" started. +2017-08-09 16:16:08.607 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" started. +2017-08-09 16:16:08.623 +05:30 [Debug] Hosting started +2017-08-09 16:16:09.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 16:16:09.123 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 16:16:09.527 +05:30 [Information] Request finished in 226.1652ms 200 +2017-08-09 16:16:09.603 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:16:11.083 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 16:16:11.213 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"520c1505-62da-49f1-9f67-e4a8d493b5c0"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 16:16:11.932 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 16:16:12.080 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 16:16:12.083 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 16:16:12.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:16:12.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:12.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:13.039 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1076.9749ms +2017-08-09 16:16:13.164 +05:30 [Information] Request finished in 4156.0187ms 200 application/json; charset=utf-8 +2017-08-09 16:16:13.168 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" completed keep alive response. +2017-08-09 16:16:26.710 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:16:26.718 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:16:26.723 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:16:29.592 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:16:35.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:35.986 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:36.248 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:36.635 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9782.3394ms +2017-08-09 16:16:36.965 +05:30 [Information] Request finished in 10153.99ms 200 application/json; charset=utf-8 +2017-08-09 16:16:36.971 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:16:37.039 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 16:16:37.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 16:16:37.045 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 16:16:37.681 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 16:16:37.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 16:16:37.684 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 16:16:40.322 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:16:40.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:40.830 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:40.839 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:40.851 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:16:40.861 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:40.862 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:40.865 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:40.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3203.2804ms +2017-08-09 16:16:40.906 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3812.6301ms +2017-08-09 16:16:40.915 +05:30 [Information] Request finished in 3241.2173ms 200 application/json; charset=utf-8 +2017-08-09 16:16:40.916 +05:30 [Information] Request finished in 3885.0589ms 200 application/json; charset=utf-8 +2017-08-09 16:16:40.917 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:16:40.917 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" completed keep alive response. +2017-08-09 16:16:41.162 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 16:16:41.162 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:16:41.164 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:16:44.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 16:16:44.347 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:44.348 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:44.360 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:44.410 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3243.9552ms +2017-08-09 16:16:44.412 +05:30 [Information] Request finished in 3249.7217ms 200 application/json; charset=utf-8 +2017-08-09 16:16:44.413 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:16:47.444 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:16:47.445 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:16:47.445 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:16:47.461 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:16:47.462 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:16:47.465 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:16:48.761 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" started. +2017-08-09 16:16:49.086 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 16:16:49.091 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 16:16:49.093 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 16:16:49.934 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" started. +2017-08-09 16:16:49.937 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 16:16:49.938 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 16:16:49.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 16:16:50.902 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:16:50.908 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:16:50.991 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:50.992 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:16:50.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:50.994 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:51.009 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3542.192ms +2017-08-09 16:16:51.012 +05:30 [Information] Request finished in 3589.2653ms 200 application/json; charset=utf-8 +2017-08-09 16:16:51.013 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" completed keep alive response. +2017-08-09 16:16:51.064 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:51.065 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:16:51.065 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:51.068 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:51.073 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3608.8795ms +2017-08-09 16:16:51.076 +05:30 [Information] Request finished in 3652.7021ms 200 application/json; charset=utf-8 +2017-08-09 16:16:51.077 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:16:51.971 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:16:52.360 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:52.362 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:16:52.362 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:52.364 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:52.443 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3348.4241ms +2017-08-09 16:16:52.445 +05:30 [Information] Request finished in 3602.6761ms 200 application/json; charset=utf-8 +2017-08-09 16:16:52.445 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" completed keep alive response. +2017-08-09 16:16:53.129 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 16:16:53.181 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:53.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:53.186 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:53.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3245.8661ms +2017-08-09 16:16:53.199 +05:30 [Information] Request finished in 3261.4149ms 200 application/json; charset=utf-8 +2017-08-09 16:16:53.200 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" completed keep alive response. +2017-08-09 16:16:56.304 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 16:16:56.306 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 16:16:56.326 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 16:16:59.404 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:16:59.421 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:16:59.422 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:16:59.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:16:59.423 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:16:59.437 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3103.4892ms +2017-08-09 16:16:59.440 +05:30 [Information] Request finished in 3175.8888ms 200 application/json; charset=utf-8 +2017-08-09 16:16:59.441 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" completed keep alive response. +2017-08-09 16:17:01.129 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:17:01.130 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:17:01.131 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:17:04.277 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:17:17.952 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:17:17.955 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:17:17.955 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:17:17.958 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:17:17.981 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 16846.8912ms +2017-08-09 16:17:17.984 +05:30 [Information] Request finished in 16854.7616ms 200 application/json; charset=utf-8 +2017-08-09 16:17:17.985 +05:30 [Debug] Connection id ""0HL6V2FBUCADF"" completed keep alive response. +2017-08-09 16:18:08.598 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" received FIN. +2017-08-09 16:18:08.600 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" received FIN. +2017-08-09 16:18:08.601 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" received FIN. +2017-08-09 16:18:08.601 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" disconnecting. +2017-08-09 16:18:08.602 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" disconnecting. +2017-08-09 16:18:08.602 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" disconnecting. +2017-08-09 16:18:08.758 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" sending FIN. +2017-08-09 16:18:08.762 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" sending FIN. +2017-08-09 16:18:08.764 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" sending FIN. +2017-08-09 16:18:08.805 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" sent FIN with status "0". +2017-08-09 16:18:08.806 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" sent FIN with status "0". +2017-08-09 16:18:08.811 +05:30 [Debug] Connection id ""0HL6V2FBUCADG"" stopped. +2017-08-09 16:18:08.813 +05:30 [Debug] Connection id ""0HL6V2FBUCADE"" stopped. +2017-08-09 16:18:08.814 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" sent FIN with status "0". +2017-08-09 16:18:08.816 +05:30 [Debug] Connection id ""0HL6V2FBUCADH"" stopped. +2017-08-09 16:19:00.350 +05:30 [Debug] Hosting starting +2017-08-09 16:19:00.902 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" started. +2017-08-09 16:19:00.906 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" started. +2017-08-09 16:19:00.927 +05:30 [Debug] Hosting started +2017-08-09 16:19:01.178 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 16:19:01.178 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 16:19:01.302 +05:30 [Information] Request finished in 169.2384ms 200 +2017-08-09 16:19:01.703 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" completed keep alive response. +2017-08-09 16:19:02.521 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 16:19:02.571 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"d39d3340-2294-49c7-8a27-dd8ec18ead75"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 16:19:03.145 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 16:19:03.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 16:19:03.306 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 16:19:03.357 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:19:03.364 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:03.367 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:03.690 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 529.5689ms +2017-08-09 16:19:03.798 +05:30 [Information] Request finished in 2710.7919ms 200 application/json; charset=utf-8 +2017-08-09 16:19:03.801 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" completed keep alive response. +2017-08-09 16:19:09.995 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:19:09.997 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:19:10.003 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:19:13.623 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:19:14.118 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 16:19:14.119 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 16:19:14.120 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 16:19:17.272 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:19:18.439 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:18.447 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:18.469 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:18.642 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8630.9992ms +2017-08-09 16:19:18.666 +05:30 [Information] Request finished in 8681.2157ms 200 application/json; charset=utf-8 +2017-08-09 16:19:18.666 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" completed keep alive response. +2017-08-09 16:19:18.816 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:18.816 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:18.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:18.868 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4743.7473ms +2017-08-09 16:19:18.876 +05:30 [Information] Request finished in 4757.7596ms 200 application/json; charset=utf-8 +2017-08-09 16:19:18.877 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" completed keep alive response. +2017-08-09 16:19:19.165 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 16:19:19.166 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 16:19:19.168 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 16:19:19.335 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 16:19:19.336 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:19:19.352 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:19:22.222 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 16:19:22.232 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:22.233 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:22.234 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:22.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3066.4243ms +2017-08-09 16:19:22.249 +05:30 [Information] Request finished in 3078.4525ms 200 application/json; charset=utf-8 +2017-08-09 16:19:22.264 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" completed keep alive response. +2017-08-09 16:19:22.467 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 16:19:22.624 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:22.625 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:22.627 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:22.675 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3320.2446ms +2017-08-09 16:19:22.677 +05:30 [Information] Request finished in 3341.1479ms 200 application/json; charset=utf-8 +2017-08-09 16:19:22.678 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" completed keep alive response. +2017-08-09 16:19:24.531 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:19:24.532 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:19:24.533 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:19:24.534 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:19:24.535 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:19:24.536 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:19:25.059 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" started. +2017-08-09 16:19:25.063 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 16:19:25.064 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 16:19:25.065 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 16:19:25.678 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" started. +2017-08-09 16:19:25.682 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 16:19:25.684 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 16:19:25.687 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 16:19:27.600 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:19:27.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:27.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:19:27.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:27.706 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:19:27.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:27.739 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3200.6001ms +2017-08-09 16:19:27.742 +05:30 [Information] Request finished in 3210.8194ms 200 application/json; charset=utf-8 +2017-08-09 16:19:27.743 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" completed keep alive response. +2017-08-09 16:19:27.785 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:27.786 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:19:27.786 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:27.787 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:27.790 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3253.4485ms +2017-08-09 16:19:27.793 +05:30 [Information] Request finished in 3261.5844ms 200 application/json; charset=utf-8 +2017-08-09 16:19:27.794 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" completed keep alive response. +2017-08-09 16:19:28.421 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:19:28.685 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:28.686 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:19:28.686 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:28.688 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:28.748 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 16:19:28.806 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:28.806 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:28.815 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:28.821 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3128.3994ms +2017-08-09 16:19:28.824 +05:30 [Information] Request finished in 3143.9306ms 200 application/json; charset=utf-8 +2017-08-09 16:19:28.825 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" completed keep alive response. +2017-08-09 16:19:28.872 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3781.2181ms +2017-08-09 16:19:28.905 +05:30 [Information] Request finished in 3835.589ms 200 application/json; charset=utf-8 +2017-08-09 16:19:28.908 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" completed keep alive response. +2017-08-09 16:19:30.548 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 16:19:30.549 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 16:19:30.550 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 16:19:33.596 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:19:33.607 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:19:33.607 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:19:33.607 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:19:33.611 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:19:33.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3069.13ms +2017-08-09 16:19:33.624 +05:30 [Information] Request finished in 3076.5376ms 200 application/json; charset=utf-8 +2017-08-09 16:19:33.627 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" completed keep alive response. +2017-08-09 16:19:36.417 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:19:36.422 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:19:36.424 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:19:39.464 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:21:00.869 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" received FIN. +2017-08-09 16:21:00.869 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" received FIN. +2017-08-09 16:21:00.870 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" received FIN. +2017-08-09 16:21:00.870 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" disconnecting. +2017-08-09 16:21:00.871 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" disconnecting. +2017-08-09 16:21:00.871 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" disconnecting. +2017-08-09 16:21:00.872 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" sending FIN. +2017-08-09 16:21:00.873 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" sending FIN. +2017-08-09 16:21:00.876 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" sending FIN. +2017-08-09 16:21:00.882 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" sent FIN with status "0". +2017-08-09 16:21:00.882 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" sent FIN with status "0". +2017-08-09 16:21:00.885 +05:30 [Debug] Connection id ""0HL6V2GV9NHVE"" stopped. +2017-08-09 16:21:00.885 +05:30 [Debug] Connection id ""0HL6V2GV9NHVG"" stopped. +2017-08-09 16:21:00.886 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" sent FIN with status "0". +2017-08-09 16:21:00.887 +05:30 [Debug] Connection id ""0HL6V2GV9NHVH"" stopped. +2017-08-09 16:21:38.307 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" received FIN. +2017-08-09 16:21:38.313 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:21:38.315 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:21:38.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:21:38.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:21:38.342 +05:30 [Information] Connection id ""0HL6V2GV9NHVF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.343 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" disconnecting. +2017-08-09 16:21:38.346 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" stopped. +2017-08-09 16:21:38.368 +05:30 [Information] Connection id ""0HL6V2GV9NHVF"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.370 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.371 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.372 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.373 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.373 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.374 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.375 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.376 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1036" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.376 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.377 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1028" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.378 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1026" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.379 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1024" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.379 +05:30 [Debug] Connection id ""0HL6V2GV9NHVF"" write of "1152" bytes to disconnected client. +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 16:21:38.381 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 121951.173ms +2017-08-09 16:21:38.383 +05:30 [Information] Request finished in 121983.4461ms 200 application/json; charset=utf-8 +2017-08-09 16:22:10.534 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" started. +2017-08-09 16:22:10.566 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 16:22:10.567 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 16:22:10.568 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 16:22:13.599 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:22:13.603 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:22:13.604 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:22:13.605 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:22:13.607 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3037.2565ms +2017-08-09 16:22:13.610 +05:30 [Information] Request finished in 3072.5102ms 200 application/json; charset=utf-8 +2017-08-09 16:22:13.610 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" completed keep alive response. +2017-08-09 16:22:13.619 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 16:22:13.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 16:22:13.622 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 16:22:16.735 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 16:22:16.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:22:16.750 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:22:16.766 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:22:16.772 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3144.218ms +2017-08-09 16:22:16.782 +05:30 [Information] Request finished in 3164.4069ms 200 application/json; charset=utf-8 +2017-08-09 16:22:16.783 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" completed keep alive response. +2017-08-09 16:22:16.789 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-09 16:22:16.791 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 16:22:16.792 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 16:22:18.976 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-09 16:22:18.988 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:22:18.989 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:22:18.990 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:22:18.992 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2198.8941ms +2017-08-09 16:22:18.996 +05:30 [Information] Request finished in 2206.79ms 200 application/json; charset=utf-8 +2017-08-09 16:22:18.997 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" completed keep alive response. +2017-08-09 16:22:20.830 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" started. +2017-08-09 16:22:20.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 16:22:20.964 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 16:22:20.965 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 16:22:20.972 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 16:22:20.973 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 16:22:20.973 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 16:22:23.149 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:22:23.153 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:22:23.154 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:22:23.154 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:22:23.156 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:22:23.157 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2191.1343ms +2017-08-09 16:22:23.160 +05:30 [Information] Request finished in 2266.1239ms 200 application/json; charset=utf-8 +2017-08-09 16:22:23.162 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" completed keep alive response. +2017-08-09 16:22:24.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 16:22:24.172 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:22:24.173 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:22:24.174 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:22:24.175 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:22:24.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3202.8229ms +2017-08-09 16:22:24.182 +05:30 [Information] Request finished in 3233.5416ms 200 application/json; charset=utf-8 +2017-08-09 16:22:24.183 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" completed keep alive response. +2017-08-09 16:22:24.402 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 16:22:24.411 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 16:22:24.412 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 16:22:27.674 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 16:24:10.406 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 16:24:10.408 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 16:24:10.409 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 16:24:10.412 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 16:24:10.426 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 105998.3867ms +2017-08-09 16:24:10.433 +05:30 [Information] Request finished in 106070.2166ms 200 application/json; charset=utf-8 +2017-08-09 16:24:10.434 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" completed keep alive response. +2017-08-09 16:25:00.868 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" received FIN. +2017-08-09 16:25:00.871 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" disconnecting. +2017-08-09 16:25:00.873 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" sending FIN. +2017-08-09 16:25:00.874 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" sent FIN with status "0". +2017-08-09 16:25:00.875 +05:30 [Debug] Connection id ""0HL6V2GV9NHVJ"" stopped. +2017-08-09 16:27:00.868 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" received FIN. +2017-08-09 16:27:00.868 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" disconnecting. +2017-08-09 16:27:00.869 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" sending FIN. +2017-08-09 16:27:00.870 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" sent FIN with status "0". +2017-08-09 16:27:00.870 +05:30 [Debug] Connection id ""0HL6V2GV9NHVI"" stopped. +2017-08-09 17:17:03.672 +05:30 [Debug] Hosting starting +2017-08-09 17:17:03.973 +05:30 [Debug] Hosting started +2017-08-09 17:17:04.209 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" started. +2017-08-09 17:17:04.209 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" started. +2017-08-09 17:17:04.452 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 17:17:04.446 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 17:17:04.543 +05:30 [Information] Request finished in 140.659ms 200 +2017-08-09 17:17:04.748 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" completed keep alive response. +2017-08-09 17:17:06.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 17:17:06.083 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"00859c12-44ba-4f3e-a62c-626b7d35a013"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 17:17:06.958 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 17:17:07.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 17:17:07.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 17:17:07.176 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:17:07.183 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:07.199 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:07.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 522.8718ms +2017-08-09 17:17:07.590 +05:30 [Information] Request finished in 3207.9153ms 200 application/json; charset=utf-8 +2017-08-09 17:17:07.592 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" completed keep alive response. +2017-08-09 17:17:23.581 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:17:23.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:17:23.588 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:17:27.319 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:17:29.339 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 17:17:29.340 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 17:17:29.343 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 17:17:32.520 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:17:32.851 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:32.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:32.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:33.054 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9465.0641ms +2017-08-09 17:17:33.059 +05:30 [Information] Request finished in 9482.7406ms 200 application/json; charset=utf-8 +2017-08-09 17:17:33.060 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" completed keep alive response. +2017-08-09 17:17:33.192 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:33.193 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:33.196 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:33.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3898.467ms +2017-08-09 17:17:33.255 +05:30 [Information] Request finished in 3918.7976ms 200 application/json; charset=utf-8 +2017-08-09 17:17:33.256 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" completed keep alive response. +2017-08-09 17:17:33.610 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 17:17:33.615 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 17:17:33.629 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 17:17:33.797 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 17:17:33.797 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 17:17:33.799 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 17:17:36.733 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:17:36.739 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:36.740 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:36.741 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:36.743 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3111.4857ms +2017-08-09 17:17:36.746 +05:30 [Information] Request finished in 3137.7553ms 200 application/json; charset=utf-8 +2017-08-09 17:17:36.746 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" completed keep alive response. +2017-08-09 17:17:36.857 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 17:17:37.015 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:37.016 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:37.017 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:37.072 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3269.6954ms +2017-08-09 17:17:37.077 +05:30 [Information] Request finished in 3277.9389ms 200 application/json; charset=utf-8 +2017-08-09 17:17:37.078 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" completed keep alive response. +2017-08-09 17:17:39.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 17:17:39.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 17:17:39.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 17:17:39.750 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 17:17:39.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 17:17:39.767 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 17:17:40.359 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" started. +2017-08-09 17:17:40.365 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 17:17:40.366 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 17:17:40.370 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 17:17:41.076 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" started. +2017-08-09 17:17:41.077 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 17:17:41.079 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 17:17:41.084 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 17:17:42.821 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:17:42.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:17:42.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:42.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:17:42.960 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:42.977 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:42.992 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:42.993 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:17:42.993 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:42.994 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3226.2784ms +2017-08-09 17:17:42.996 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:42.997 +05:30 [Information] Request finished in 3262.5968ms 200 application/json; charset=utf-8 +2017-08-09 17:17:42.998 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" completed keep alive response. +2017-08-09 17:17:43.012 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3258.8263ms +2017-08-09 17:17:43.015 +05:30 [Information] Request finished in 3278.4438ms 200 application/json; charset=utf-8 +2017-08-09 17:17:43.015 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" completed keep alive response. +2017-08-09 17:17:43.959 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:17:44.229 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 17:17:44.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:44.278 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:17:44.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:44.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:44.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:17:44.288 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:17:44.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:17:44.295 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3207.9964ms +2017-08-09 17:17:44.298 +05:30 [Information] Request finished in 3220.8248ms 200 application/json; charset=utf-8 +2017-08-09 17:17:44.300 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" completed keep alive response. +2017-08-09 17:17:44.360 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3989.344ms +2017-08-09 17:17:44.362 +05:30 [Information] Request finished in 3998.1582ms 200 application/json; charset=utf-8 +2017-08-09 17:17:44.362 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" completed keep alive response. +2017-08-09 17:18:25.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 17:18:25.808 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 17:18:25.810 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 17:18:28.952 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:18:28.969 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:18:28.969 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:18:28.970 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:18:28.971 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:18:28.984 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3169.3421ms +2017-08-09 17:18:28.987 +05:30 [Information] Request finished in 3186.227ms 200 application/json; charset=utf-8 +2017-08-09 17:18:28.987 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" completed keep alive response. +2017-08-09 17:18:33.294 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 17:18:33.294 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 17:18:33.296 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 17:18:36.327 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 17:19:04.196 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" received FIN. +2017-08-09 17:19:04.198 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" disconnecting. +2017-08-09 17:19:04.200 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" received FIN. +2017-08-09 17:19:04.200 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" disconnecting. +2017-08-09 17:19:04.201 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" sending FIN. +2017-08-09 17:19:04.201 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" sending FIN. +2017-08-09 17:19:04.210 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" sent FIN with status "0". +2017-08-09 17:19:04.211 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" sent FIN with status "0". +2017-08-09 17:19:04.213 +05:30 [Debug] Connection id ""0HL6V3HDD2NIV"" stopped. +2017-08-09 17:19:04.215 +05:30 [Debug] Connection id ""0HL6V3HDD2NIU"" stopped. +2017-08-09 17:19:51.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:19:51.815 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:19:51.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:19:51.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:19:51.849 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 78549.4708ms +2017-08-09 17:19:51.853 +05:30 [Information] Request finished in 78557.6951ms 200 application/json; charset=utf-8 +2017-08-09 17:19:51.854 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" completed keep alive response. +2017-08-09 17:21:04.171 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" received FIN. +2017-08-09 17:21:04.171 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" received FIN. +2017-08-09 17:21:04.174 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" disconnecting. +2017-08-09 17:21:04.174 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" disconnecting. +2017-08-09 17:21:04.175 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" sending FIN. +2017-08-09 17:21:04.176 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" sent FIN with status "0". +2017-08-09 17:21:04.178 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" sending FIN. +2017-08-09 17:21:04.179 +05:30 [Debug] Connection id ""0HL6V3HDD2NIT"" stopped. +2017-08-09 17:21:04.180 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" sent FIN with status "0". +2017-08-09 17:21:04.181 +05:30 [Debug] Connection id ""0HL6V3HDD2NIS"" stopped. +2017-08-09 17:24:28.207 +05:30 [Debug] Hosting starting +2017-08-09 17:24:28.454 +05:30 [Debug] Hosting started +2017-08-09 17:24:28.568 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" started. +2017-08-09 17:24:28.584 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" started. +2017-08-09 17:24:28.965 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 17:24:28.965 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 17:24:29.050 +05:30 [Information] Request finished in 94.2849ms 200 +2017-08-09 17:24:29.115 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:24:30.920 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 17:24:30.987 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"107227f5-4b8a-42d5-8dd9-9b85058026de"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 17:24:31.453 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 17:24:31.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 17:24:31.645 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 17:24:31.707 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:24:31.715 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:24:31.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:24:32.041 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 574.2562ms +2017-08-09 17:24:32.151 +05:30 [Information] Request finished in 3244.0873ms 200 application/json; charset=utf-8 +2017-08-09 17:24:32.155 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:24:39.277 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:24:39.279 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:24:39.283 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:24:42.725 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:24:47.058 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:24:47.063 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:24:47.067 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:24:47.191 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7904.3709ms +2017-08-09 17:24:47.193 +05:30 [Information] Request finished in 7920.2709ms 200 application/json; charset=utf-8 +2017-08-09 17:24:47.194 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:24:47.725 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 17:24:47.726 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 17:24:47.733 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 17:24:50.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:24:50.922 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:24:50.923 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:24:50.924 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:24:50.986 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3248.508ms +2017-08-09 17:24:50.989 +05:30 [Information] Request finished in 3263.4963ms 200 application/json; charset=utf-8 +2017-08-09 17:24:50.990 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:24:51.162 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:24:51.163 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:24:51.166 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:24:54.212 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:24:54.219 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:24:54.220 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:24:54.221 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:24:54.224 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3054.6129ms +2017-08-09 17:24:54.229 +05:30 [Information] Request finished in 3065.7565ms 200 application/json; charset=utf-8 +2017-08-09 17:24:54.230 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:24:54.280 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 17:24:54.281 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 17:24:54.282 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 17:24:57.340 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:24:57.353 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:24:57.354 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:24:57.356 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:24:57.359 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3074.8723ms +2017-08-09 17:24:57.362 +05:30 [Information] Request finished in 3089.8672ms 200 application/json; charset=utf-8 +2017-08-09 17:24:57.363 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:24:57.382 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 17:24:57.382 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 17:24:57.387 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 17:24:57.629 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:24:57.631 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:24:57.632 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:25:00.445 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 17:25:00.595 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:00.598 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:00.600 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:00.681 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:25:00.688 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:00.690 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:00.691 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3301.5755ms +2017-08-09 17:25:00.692 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:00.695 +05:30 [Information] Request finished in 3318.3145ms 200 application/json; charset=utf-8 +2017-08-09 17:25:00.697 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:25:00.700 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.8031ms +2017-08-09 17:25:00.705 +05:30 [Information] Request finished in 3076.0923ms 200 application/json; charset=utf-8 +2017-08-09 17:25:00.706 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:25:00.733 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-09 17:25:00.734 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-09 17:25:00.735 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-09 17:25:03.785 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:25:03.793 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:03.794 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:03.795 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:03.797 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3060.5932ms +2017-08-09 17:25:03.799 +05:30 [Information] Request finished in 3081.5578ms 200 application/json; charset=utf-8 +2017-08-09 17:25:03.800 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:25:03.807 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-09 17:25:03.810 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-09 17:25:03.811 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-09 17:25:05.944 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-09 17:25:05.953 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:05.954 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:05.956 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:05.958 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2145.1886ms +2017-08-09 17:25:05.961 +05:30 [Information] Request finished in 2155.9068ms 200 application/json; charset=utf-8 +2017-08-09 17:25:05.962 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:25:07.573 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-09 17:25:07.576 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-09 17:25:07.574 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-09 17:25:07.577 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-09 17:25:07.577 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-09 17:25:07.578 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-09 17:25:08.105 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" started. +2017-08-09 17:25:08.107 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-09 17:25:08.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-09 17:25:08.109 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-09 17:25:08.947 +05:30 [Debug] Connection id ""0HL6V3LHQST4J"" started. +2017-08-09 17:25:08.949 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:25:08.952 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:25:08.954 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:25:10.648 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:25:10.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:10.705 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:25:10.705 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:10.709 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:10.712 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3129.3102ms +2017-08-09 17:25:10.714 +05:30 [Information] Request finished in 3153.9343ms 200 application/json; charset=utf-8 +2017-08-09 17:25:10.715 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:25:10.792 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:25:10.856 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:10.858 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:25:10.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:10.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:10.875 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3291.9419ms +2017-08-09 17:25:10.877 +05:30 [Information] Request finished in 3318.5955ms 200 application/json; charset=utf-8 +2017-08-09 17:25:10.878 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:25:11.329 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:25:11.629 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:11.630 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:25:11.630 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:11.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:11.720 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3608.5094ms +2017-08-09 17:25:11.723 +05:30 [Information] Request finished in 3614.7116ms 200 application/json; charset=utf-8 +2017-08-09 17:25:11.725 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" completed keep alive response. +2017-08-09 17:25:12.035 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:25:12.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:12.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:12.041 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:12.044 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3086.5771ms +2017-08-09 17:25:12.047 +05:30 [Information] Request finished in 3098.5461ms 200 application/json; charset=utf-8 +2017-08-09 17:25:12.049 +05:30 [Debug] Connection id ""0HL6V3LHQST4J"" completed keep alive response. +2017-08-09 17:25:12.081 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-09 17:25:12.082 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-09 17:25:12.083 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-09 17:25:14.193 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getUserBoards?userId=1 +2017-08-09 17:25:14.199 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getUserBoards"'. +2017-08-09 17:25:14.200 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" +2017-08-09 17:25:15.120 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-09 17:25:15.264 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:15.266 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:15.267 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:15.269 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3183.594ms +2017-08-09 17:25:15.272 +05:30 [Information] Request finished in 3194.7098ms 200 application/json; charset=utf-8 +2017-08-09 17:25:15.272 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:25:17.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-09 17:25:17.278 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:25:17.279 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:25:17.279 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:25:17.280 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:25:17.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getUserBoards (Api.Socioboard)" in 3092.2009ms +2017-08-09 17:25:17.297 +05:30 [Information] Request finished in 3103.6454ms 200 application/json; charset=utf-8 +2017-08-09 17:25:17.297 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" completed keep alive response. +2017-08-09 17:25:18.749 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getGplusfeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 17:25:18.750 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getGplusfeeds"'. +2017-08-09 17:25:18.751 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" +2017-08-09 17:25:18.752 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getTwitterFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 17:25:18.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getTwitterFeeds"'. +2017-08-09 17:25:18.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" +2017-08-09 17:25:18.759 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/BoardMe/getInstagramFeeds?boardId=2&userId=1&skip=0&count=30 +2017-08-09 17:25:18.765 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/BoardMe/getInstagramFeeds"'. +2017-08-09 17:25:18.766 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" +2017-08-09 17:25:21.988 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 17:25:22.000 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 17:25:22.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" with arguments (["2", "0", "30"]) - ModelState is Valid +2017-08-09 17:26:06.712 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:26:06.713 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:26:06.713 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:26:06.714 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:26:06.747 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getInstagramFeeds (Api.Socioboard)" in 47976.5815ms +2017-08-09 17:26:06.750 +05:30 [Information] Request finished in 48000.0473ms 200 application/json; charset=utf-8 +2017-08-09 17:26:06.751 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" completed keep alive response. +2017-08-09 17:26:28.537 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" received FIN. +2017-08-09 17:26:28.539 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" disconnecting. +2017-08-09 17:26:28.541 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" sending FIN. +2017-08-09 17:26:28.550 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" sent FIN with status "0". +2017-08-09 17:26:28.553 +05:30 [Debug] Connection id ""0HL6V3LHQST4G"" stopped. +2017-08-09 17:26:30.478 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:26:30.479 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:26:30.479 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:26:30.480 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:26:30.492 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getTwitterFeeds (Api.Socioboard)" in 71729.5947ms +2017-08-09 17:26:30.497 +05:30 [Information] Request finished in 71746.9103ms 200 application/json; charset=utf-8 +2017-08-09 17:26:30.498 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" completed keep alive response. +2017-08-09 17:27:17.885 +05:30 [Debug] Connection id ""0HL6V3LHQST4J"" received FIN. +2017-08-09 17:28:28.536 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" received FIN. +2017-08-09 17:28:28.536 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" received FIN. +2017-08-09 17:28:28.536 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" disconnecting. +2017-08-09 17:28:28.537 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" disconnecting. +2017-08-09 17:28:28.540 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" sending FIN. +2017-08-09 17:28:28.539 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" sending FIN. +2017-08-09 17:28:28.541 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" sent FIN with status "0". +2017-08-09 17:28:28.543 +05:30 [Debug] Connection id ""0HL6V3LHQST4I"" stopped. +2017-08-09 17:28:28.542 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" sent FIN with status "0". +2017-08-09 17:28:28.544 +05:30 [Debug] Connection id ""0HL6V3LHQST4H"" stopped. +2017-08-09 17:31:08.612 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:31:08.613 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:31:08.614 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-09 17:31:08.631 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:31:08.646 +05:30 [Information] Executed action "Api.Socioboard.Controllers.BoardMeController.getGplusfeeds (Api.Socioboard)" in 349871.5018ms +2017-08-09 17:31:08.660 +05:30 [Information] Connection id ""0HL6V3LHQST4J"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-09 17:31:08.663 +05:30 [Information] Request finished in 349904.2053ms 200 text/plain; charset=utf-8 +2017-08-09 17:31:08.663 +05:30 [Debug] Connection id ""0HL6V3LHQST4J"" disconnecting. +2017-08-09 17:31:08.664 +05:30 [Debug] Connection id ""0HL6V3LHQST4J"" stopped. +2017-08-09 17:33:21.018 +05:30 [Debug] Hosting starting +2017-08-09 17:33:21.645 +05:30 [Debug] Hosting started +2017-08-09 17:33:21.727 +05:30 [Debug] Connection id ""0HL6V3QGNFBH4"" started. +2017-08-09 17:33:21.732 +05:30 [Debug] Connection id ""0HL6V3QGNFBH5"" started. +2017-08-09 17:33:21.953 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-09 17:33:21.953 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-09 17:33:22.065 +05:30 [Information] Request finished in 139.7658ms 200 +2017-08-09 17:33:22.153 +05:30 [Debug] Connection id ""0HL6V3QGNFBH4"" completed keep alive response. +2017-08-09 17:33:22.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-09 17:33:23.007 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c3ef982f-02ad-480d-8f37-48b355113f22"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-09 17:33:23.390 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-09 17:33:23.521 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-09 17:33:23.528 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-09 17:33:23.585 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-09 17:33:23.592 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:33:23.665 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:33:24.059 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 653.248ms +2017-08-09 17:33:24.204 +05:30 [Information] Request finished in 2319.405ms 200 application/json; charset=utf-8 +2017-08-09 17:33:24.206 +05:30 [Debug] Connection id ""0HL6V3QGNFBH5"" completed keep alive response. +2017-08-09 17:33:37.709 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-09 17:33:37.710 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-09 17:33:37.717 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-09 17:33:41.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-09 17:33:43.669 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 17:33:43.671 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 17:33:43.673 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 17:33:46.975 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:33:47.176 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-09 17:33:47.196 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-09 17:33:47.198 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-09 17:33:47.199 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:33:47.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:33:47.211 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:33:47.226 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3547.0921ms +2017-08-09 17:33:47.245 +05:30 [Information] Request finished in 3600.1183ms 200 application/json; charset=utf-8 +2017-08-09 17:33:47.246 +05:30 [Debug] Connection id ""0HL6V3QGNFBH5"" completed keep alive response. +2017-08-09 17:33:47.296 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:33:47.302 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:33:47.318 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:33:47.565 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9818.5009ms +2017-08-09 17:33:47.644 +05:30 [Information] Request finished in 9914.223ms 200 application/json; charset=utf-8 +2017-08-09 17:33:47.645 +05:30 [Debug] Connection id ""0HL6V3QGNFBH4"" completed keep alive response. +2017-08-09 17:33:48.144 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-09 17:33:48.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-09 17:33:48.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-09 17:33:50.239 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:33:50.297 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-09 17:33:50.300 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-09 17:33:50.301 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-09 17:33:50.303 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-09 17:33:50.314 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-09 17:33:50.316 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2168.9504ms +2017-08-09 17:33:50.319 +05:30 [Information] Request finished in 2175.1105ms 400 +2017-08-09 17:33:50.320 +05:30 [Debug] Connection id ""0HL6V3QGNFBH5"" completed keep alive response. +2017-08-09 17:33:51.018 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-09 17:33:51.019 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-09 17:33:51.025 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-09 17:33:54.105 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-09 17:33:54.193 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-09 17:33:54.196 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-09 17:33:54.198 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-09 17:33:54.198 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-09 17:33:54.199 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-09 17:33:54.200 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-09 17:33:54.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3174.2269ms +2017-08-09 17:33:54.205 +05:30 [Information] Request finished in 3186.2584ms 200 application/json; charset=utf-8 +2017-08-09 17:33:54.206 +05:30 [Debug] Connection id ""0HL6V3QGNFBH4"" completed keep alive response. diff --git a/src/Api.Socioboard/wwwroot/log/log-20170817.txt b/src/Api.Socioboard/wwwroot/log/log-20170817.txt new file mode 100644 index 000000000..00b574ba4 --- /dev/null +++ b/src/Api.Socioboard/wwwroot/log/log-20170817.txt @@ -0,0 +1,2185 @@ +2017-08-17 10:51:55.926 +05:30 [Debug] Hosting starting +2017-08-17 10:51:56.570 +05:30 [Debug] Hosting started +2017-08-17 10:51:56.651 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" started. +2017-08-17 10:51:56.657 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" started. +2017-08-17 10:51:57.120 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 10:51:57.125 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 10:51:57.209 +05:30 [Information] Request finished in 246.7927ms 200 +2017-08-17 10:51:57.371 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" completed keep alive response. +2017-08-17 10:51:59.137 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 10:51:59.223 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"58ea386d-78b1-4631-aaa0-81fb2fcf4672"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 10:51:59.754 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 10:52:00.145 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 10:52:00.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 10:52:00.227 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 10:52:00.236 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:52:00.253 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:52:00.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 840.9681ms +2017-08-17 10:52:00.880 +05:30 [Information] Request finished in 3825.1021ms 200 application/json; charset=utf-8 +2017-08-17 10:52:00.885 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" completed keep alive response. +2017-08-17 10:52:00.931 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-17 10:52:00.935 +05:30 [Debug] Request did not match any routes. +2017-08-17 10:52:00.961 +05:30 [Debug] The request path "" does not match the path filter +2017-08-17 10:52:00.966 +05:30 [Information] Request finished in 39.4124ms 404 +2017-08-17 10:52:00.967 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" completed keep alive response. +2017-08-17 10:52:19.502 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 10:52:19.503 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 10:52:19.505 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 10:52:23.125 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 10:52:28.168 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:52:28.229 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:52:28.243 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:52:28.413 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8903.6005ms +2017-08-17 10:52:28.417 +05:30 [Information] Request finished in 8915.1669ms 200 application/json; charset=utf-8 +2017-08-17 10:52:28.420 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" completed keep alive response. +2017-08-17 10:52:29.094 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 10:52:29.096 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 10:52:29.104 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 10:52:31.411 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 10:52:31.567 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-17 10:52:31.587 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-17 10:52:31.588 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-17 10:52:31.590 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 10:52:31.600 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 10:52:31.601 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2471.6034ms +2017-08-17 10:52:31.604 +05:30 [Information] Request finished in 2515.0509ms 400 +2017-08-17 10:52:31.604 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" completed keep alive response. +2017-08-17 10:53:29.061 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" received FIN. +2017-08-17 10:53:29.075 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-17 10:53:29.075 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-17 10:53:29.076 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" disconnecting. +2017-08-17 10:53:29.077 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-17 10:53:29.078 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" sending FIN. +2017-08-17 10:53:29.106 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" sent FIN with status "0". +2017-08-17 10:53:29.110 +05:30 [Debug] Connection id ""0HL755VGF6LC2"" stopped. +2017-08-17 10:53:32.208 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 10:53:32.345 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-17 10:53:32.347 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-17 10:53:32.349 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-17 10:53:32.349 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:53:32.350 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:53:32.352 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:53:32.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 3270.8483ms +2017-08-17 10:53:32.358 +05:30 [Information] Request finished in 3298.0027ms 200 application/json; charset=utf-8 +2017-08-17 10:53:32.359 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" completed keep alive response. +2017-08-17 10:54:42.724 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" received FIN. +2017-08-17 10:54:42.725 +05:30 [Debug] Connection id ""0HL755VGF6LC4"" started. +2017-08-17 10:54:42.726 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" disconnecting. +2017-08-17 10:54:42.733 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" sending FIN. +2017-08-17 10:54:42.733 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" sent FIN with status "0". +2017-08-17 10:54:42.734 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-17 10:54:42.734 +05:30 [Debug] Connection id ""0HL755VGF6LC3"" stopped. +2017-08-17 10:54:42.735 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-17 10:54:42.737 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-17 10:54:45.802 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 10:56:18.317 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-17 10:56:46.877 +05:30 [Debug] Connection id ""0HL755VGF6LC4"" received FIN. +2017-08-17 10:56:46.963 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-17 10:56:48.146 +05:30 [Error] Unknown column 'user0_.Country' in 'field list' +2017-08-17 10:57:00.559 +05:30 [Fatal] Session is closed! +Object name: 'ISession'. +2017-08-17 10:57:00.987 +05:30 [Error] at NHibernate.Impl.AbstractSessionImpl.ErrorIfClosed() + at NHibernate.Impl.AbstractSessionImpl.CheckAndUpdateSessionStatus() + at NHibernate.Impl.AbstractSessionImpl.CreateQuery(IQueryExpression queryExpression) + at NHibernate.Linq.DefaultQueryProvider.PrepareQuery(Expression expression, IQuery& query, NhLinqExpression& nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-17 10:58:08.989 +05:30 [Fatal] could not execute query +[ select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0 ] + Name:p1 - Value:avinashverma@globussoft.in +[SQL: select user0_.Id as Id29_, user0_.UserName as UserName29_, user0_.FirstName as FirstName29_, user0_.RegistrationType as Registra4_29_, user0_.Ewallet as Ewallet29_, user0_.LastName as LastName29_, user0_.EmailId as EmailId29_, user0_.ProfilePicUrl as ProfileP8_29_, user0_.AccountType as AccountT9_29_, user0_.CreateDate as CreateDate29_, user0_.ExpiryDate as ExpiryDate29_, user0_.PhoneNumber as PhoneNu12_29_, user0_.Password as Password29_, user0_.TimeZone as TimeZone29_, user0_.PaymentStatus as Payment15_29_, user0_.ActivationStatus as Activat16_29_, user0_.LastLoginTime as LastLog17_29_, user0_.EmailValidateToken as EmailVa18_29_, user0_.ValidateTokenExpireDate as Validat19_29_, user0_.forgotPasswordKeyToken as forgotP20_29_, user0_.forgotPasswordExpireDate as forgotP21_29_, user0_.dateOfBirth as dateOfB22_29_, user0_.aboutMe as aboutMe29_, user0_.dailyGrpReportsSummery as dailyGr24_29_, user0_.weeklyGrpReportsSummery as weeklyG25_29_, user0_.days15GrpReportsSummery as days26_29_, user0_.monthlyGrpReportsSummery as monthly27_29_, user0_.days60GrpReportsSummery as days28_29_, user0_.days90GrpReportsSummery as days29_29_, user0_.otherNewsLetters as otherNe30_29_, user0_.PayPalAccountStatus as PayPalA31_29_, user0_.PaymentType as Payment32_29_, user0_.TrailStatus as TrailSt33_29_, user0_.UserType as UserType29_, user0_.MailstatusforAccountExpiry as Mailsta35_29_, user0_.MailstatusbeforeAccountExpire as Mailsta36_29_, user0_.lastloginreminder as lastlog37_29_, user0_.Dailymailstatusreport as Dailyma38_29_, user0_.mailstatusforweeklyreport as mailsta39_29_, user0_.mailstatusfor15daysreport as mailsta40_29_, user0_.mailstatusfor30daysreport as mailsta41_29_, user0_.mailstatusfor60daysreport as mailsta42_29_, user0_.mailstatusfor90daysreport as mailsta43_29_, user0_.scheduleSuccessUpdates as schedul44_29_, user0_.scheduleFailureUpdates as schedul45_29_, user0_.TwostepEnable as Twostep46_29_, user0_.Adsstatus as Adsstatus29_, user0_.SocialLoginEnableFb as SocialL48_29_, user0_.SocialLoginEnableGo as SocialL49_29_, user0_.urlShortnerStatus as urlShor50_29_, user0_.Country as Country29_, user0_.PhoneCode as PhoneCode29_ from User user0_ where user0_.EmailId=?p0] +2017-08-17 10:58:09.356 +05:30 [Error] at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters, IResultTransformer forcedResultTransformer) + at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes) + at NHibernate.Loader.Hql.QueryLoader.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Hql.Ast.ANTLR.QueryTranslatorImpl.List(ISessionImplementor session, QueryParameters queryParameters) + at NHibernate.Engine.Query.HQLQueryPlan.PerformList(QueryParameters queryParameters, ISessionImplementor session, IList results) + at NHibernate.Impl.SessionImpl.List(IQueryExpression queryExpression, QueryParameters queryParameters, IList results) + at NHibernate.Impl.AbstractSessionImpl.List(IQueryExpression queryExpression, QueryParameters parameters) + at NHibernate.Impl.AbstractQueryImpl2.List() + at NHibernate.Linq.DefaultQueryProvider.ExecuteQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery) + at NHibernate.Linq.DefaultQueryProvider.Execute(Expression expression) + at NHibernate.Linq.DefaultQueryProvider.Execute[TResult](Expression expression) + at Remotion.Linq.QueryableBase`1.GetEnumerator() + at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) + at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) + at Api.Socioboard.Model.DatabaseRepository.Find[T](Expression`1 query) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 31 +2017-08-17 10:58:10.160 +05:30 [Error] Unknown column 'user0_.PhoneCode' in 'field list' +2017-08-17 10:58:22.271 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:22.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:22.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:22.308 +05:30 [Information] Connection id ""0HL755VGF6LC4"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-17 10:58:22.309 +05:30 [Debug] Connection id ""0HL755VGF6LC4"" disconnecting. +2017-08-17 10:58:22.311 +05:30 [Debug] Connection id ""0HL755VGF6LC4"" stopped. +2017-08-17 10:58:22.314 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 219570.364ms +2017-08-17 10:58:22.316 +05:30 [Information] Request finished in 219577.1274ms 200 application/json; charset=utf-8 +2017-08-17 10:58:27.734 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" started. +2017-08-17 10:58:27.736 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-17 10:58:27.737 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-17 10:58:27.738 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-17 10:58:29.843 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 10:58:33.618 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:33.618 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:33.619 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:33.621 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 5881.9458ms +2017-08-17 10:58:33.626 +05:30 [Information] Request finished in 5890.2466ms 200 application/json; charset=utf-8 +2017-08-17 10:58:33.626 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" completed keep alive response. +2017-08-17 10:58:33.773 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 10:58:33.774 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 10:58:33.774 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 10:58:36.817 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 10:58:36.821 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:36.822 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:36.823 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:36.826 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3049.8337ms +2017-08-17 10:58:36.832 +05:30 [Information] Request finished in 3056.8377ms 200 application/json; charset=utf-8 +2017-08-17 10:58:36.833 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" completed keep alive response. +2017-08-17 10:58:36.920 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-17 10:58:36.922 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-17 10:58:36.923 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-17 10:58:39.006 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 10:58:39.013 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:39.014 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:39.015 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:39.016 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2092.2369ms +2017-08-17 10:58:39.022 +05:30 [Information] Request finished in 2124.6344ms 200 application/json; charset=utf-8 +2017-08-17 10:58:39.024 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" completed keep alive response. +2017-08-17 10:58:39.034 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-17 10:58:39.040 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 10:58:39.043 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 10:58:42.146 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-17 10:58:42.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:42.344 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:42.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:42.404 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3356.5722ms +2017-08-17 10:58:42.407 +05:30 [Information] Request finished in 3372.6654ms 200 application/json; charset=utf-8 +2017-08-17 10:58:42.408 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" completed keep alive response. +2017-08-17 10:58:50.816 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" started. +2017-08-17 10:58:50.842 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 10:58:50.845 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 10:58:50.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 10:58:50.856 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 10:58:50.879 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 10:58:50.884 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 10:58:51.405 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" started. +2017-08-17 10:58:51.408 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 10:58:51.408 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 10:58:51.409 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 10:58:53.220 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" started. +2017-08-17 10:58:53.223 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 10:58:53.224 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 10:58:53.225 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 10:58:54.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 10:58:54.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 10:58:54.136 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:54.136 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 10:58:54.137 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:54.139 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:54.178 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3290.1154ms +2017-08-17 10:58:54.183 +05:30 [Information] Request finished in 3365.0194ms 200 application/json; charset=utf-8 +2017-08-17 10:58:54.184 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" completed keep alive response. +2017-08-17 10:58:54.236 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:54.237 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 10:58:54.237 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:54.239 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:54.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3366.7565ms +2017-08-17 10:58:54.245 +05:30 [Information] Request finished in 3427.7835ms 200 application/json; charset=utf-8 +2017-08-17 10:58:54.246 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" completed keep alive response. +2017-08-17 10:58:54.551 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 10:58:54.850 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:54.851 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 10:58:54.852 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:54.853 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:54.936 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3525.6529ms +2017-08-17 10:58:54.938 +05:30 [Information] Request finished in 3530.8745ms 200 application/json; charset=utf-8 +2017-08-17 10:58:54.939 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" completed keep alive response. +2017-08-17 10:58:56.266 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 10:58:56.269 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:56.269 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:56.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:56.273 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3045.9936ms +2017-08-17 10:58:56.275 +05:30 [Information] Request finished in 3053.0268ms 200 application/json; charset=utf-8 +2017-08-17 10:58:56.276 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" completed keep alive response. +2017-08-17 10:58:56.286 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 10:58:56.287 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 10:58:56.288 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 10:58:58.477 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 10:58:58.536 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 10:58:58.536 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 10:58:58.538 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 10:58:58.542 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2249.3979ms +2017-08-17 10:58:58.545 +05:30 [Information] Request finished in 2257.0508ms 200 application/json; charset=utf-8 +2017-08-17 10:58:58.545 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" completed keep alive response. +2017-08-17 10:59:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" received FIN. +2017-08-17 10:59:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" received FIN. +2017-08-17 10:59:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" disconnecting. +2017-08-17 10:59:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" sending FIN. +2017-08-17 10:59:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" disconnecting. +2017-08-17 10:59:56.630 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" received FIN. +2017-08-17 10:59:56.627 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" sent FIN with status "0". +2017-08-17 10:59:56.630 +05:30 [Debug] Connection id ""0HL755VGF6LC5"" stopped. +2017-08-17 10:59:56.631 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" sending FIN. +2017-08-17 10:59:56.631 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" sent FIN with status "0". +2017-08-17 10:59:56.632 +05:30 [Debug] Connection id ""0HL755VGF6LC7"" stopped. +2017-08-17 10:59:56.633 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" disconnecting. +2017-08-17 10:59:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" sending FIN. +2017-08-17 10:59:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" sent FIN with status "0". +2017-08-17 10:59:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LC8"" stopped. +2017-08-17 11:01:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" received FIN. +2017-08-17 11:01:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" disconnecting. +2017-08-17 11:01:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" sending FIN. +2017-08-17 11:01:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" sent FIN with status "0". +2017-08-17 11:01:56.627 +05:30 [Debug] Connection id ""0HL755VGF6LC6"" stopped. +2017-08-17 11:11:36.871 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" started. +2017-08-17 11:11:36.880 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:11:36.881 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:11:36.881 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:11:40.002 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:11:40.038 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:40.039 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:40.040 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:40.042 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3159.69ms +2017-08-17 11:11:40.044 +05:30 [Information] Request finished in 3171.5113ms 200 application/json; charset=utf-8 +2017-08-17 11:11:40.045 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:11:40.055 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-17 11:11:40.056 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-17 11:11:40.057 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-17 11:11:42.147 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:11:42.152 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:42.152 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:42.153 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:42.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 2097.389ms +2017-08-17 11:11:42.162 +05:30 [Information] Request finished in 2106.4721ms 200 application/json; charset=utf-8 +2017-08-17 11:11:42.163 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:11:42.174 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-17 11:11:42.180 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 11:11:42.181 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 11:11:44.300 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-17 11:11:44.315 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:44.316 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:44.317 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:44.318 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2136.2823ms +2017-08-17 11:11:44.321 +05:30 [Information] Request finished in 2150.5022ms 200 application/json; charset=utf-8 +2017-08-17 11:11:44.321 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:11:46.113 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" started. +2017-08-17 11:11:46.138 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 11:11:46.139 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 11:11:46.140 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 11:11:46.141 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 11:11:46.142 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 11:11:46.141 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 11:11:46.679 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" started. +2017-08-17 11:11:46.681 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 11:11:46.682 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 11:11:46.683 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 11:11:47.444 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" started. +2017-08-17 11:11:47.450 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:11:47.451 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:11:47.451 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:11:48.629 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:11:48.746 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:48.753 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:11:48.755 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:48.788 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:48.816 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 2668.8376ms +2017-08-17 11:11:49.356 +05:30 [Information] Request finished in 3112.5283ms 200 application/json; charset=utf-8 +2017-08-17 11:11:49.412 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" completed keep alive response. +2017-08-17 11:11:49.876 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:11:49.891 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:49.892 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:11:49.895 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:11:49.906 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:49.951 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:49.990 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 3809.2ms +2017-08-17 11:11:49.993 +05:30 [Information] Request finished in 3878.3984ms 200 application/json; charset=utf-8 +2017-08-17 11:11:49.994 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:11:50.286 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:50.286 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:11:50.287 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:50.290 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:50.294 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3608.39ms +2017-08-17 11:11:50.297 +05:30 [Information] Request finished in 3615.6489ms 200 application/json; charset=utf-8 +2017-08-17 11:11:50.298 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" completed keep alive response. +2017-08-17 11:11:50.874 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:11:50.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:50.878 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:50.879 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:50.881 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3427.6567ms +2017-08-17 11:11:50.883 +05:30 [Information] Request finished in 3435.6377ms 200 application/json; charset=utf-8 +2017-08-17 11:11:50.884 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" completed keep alive response. +2017-08-17 11:11:50.891 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 11:11:50.893 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 11:11:50.894 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 11:11:53.079 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 11:11:53.244 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:11:53.245 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:11:53.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:11:53.256 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 2357.5284ms +2017-08-17 11:11:53.263 +05:30 [Information] Request finished in 2370.963ms 200 application/json; charset=utf-8 +2017-08-17 11:11:53.268 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" completed keep alive response. +2017-08-17 11:12:06.708 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/Login application/x-www-form-urlencoded 63 +2017-08-17 11:12:06.711 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Login"'. +2017-08-17 11:12:06.713 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" +2017-08-17 11:12:10.154 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 11:12:10.703 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:10.721 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:10.725 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:10.728 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Login (Api.Socioboard)" in 4005.3288ms +2017-08-17 11:12:10.732 +05:30 [Information] Request finished in 4030.4623ms 200 application/json; charset=utf-8 +2017-08-17 11:12:10.732 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:12:10.770 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId= +2017-08-17 11:12:10.771 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 11:12:10.771 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 11:12:14.303 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", ""]) - ModelState is Valid +2017-08-17 11:12:14.317 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:14.319 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:14.324 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:14.326 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3552.9682ms +2017-08-17 11:12:14.329 +05:30 [Information] Request finished in 3558.6645ms 200 application/json; charset=utf-8 +2017-08-17 11:12:14.330 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" completed keep alive response. +2017-08-17 11:12:20.008 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-17 11:12:20.009 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 11:12:20.010 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 11:12:20.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 11:12:20.183 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 11:12:20.185 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 11:12:20.206 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 11:12:20.214 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 11:12:20.229 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 11:12:22.608 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-17 11:12:22.656 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:22.658 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:22.717 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:22.756 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 2706.2388ms +2017-08-17 11:12:22.768 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:22.772 +05:30 [Information] Request finished in 2774.4133ms 200 application/json; charset=utf-8 +2017-08-17 11:12:22.772 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" completed keep alive response. +2017-08-17 11:12:22.778 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:22.780 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:22.780 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:22.848 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:23.013 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2662.6553ms +2017-08-17 11:12:23.040 +05:30 [Information] Request finished in 2880.8592ms 200 application/json; charset=utf-8 +2017-08-17 11:12:23.041 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:12:23.094 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 11:12:23.095 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 11:12:23.096 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 11:12:23.577 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:23.900 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:23.976 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:24.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:24.337 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:24.438 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4185.7889ms +2017-08-17 11:12:24.453 +05:30 [Information] Request finished in 4283.5676ms 200 application/json; charset=utf-8 +2017-08-17 11:12:24.454 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" completed keep alive response. +2017-08-17 11:12:24.572 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:25.138 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:25.165 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:25.165 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:25.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:25.197 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 11:12:25.204 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 11:12:25.204 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 11:12:25.234 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" received FIN. +2017-08-17 11:12:25.284 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 2105.5021ms +2017-08-17 11:12:25.382 +05:30 [Information] Request finished in 2221.831ms 200 application/json; charset=utf-8 +2017-08-17 11:12:25.383 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" completed keep alive response. +2017-08-17 11:12:25.384 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" disconnecting. +2017-08-17 11:12:25.384 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" sending FIN. +2017-08-17 11:12:25.385 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" sent FIN with status "0". +2017-08-17 11:12:25.385 +05:30 [Debug] Connection id ""0HL755VGF6LCB"" stopped. +2017-08-17 11:12:26.487 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 11:12:26.488 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 11:12:26.488 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 11:12:26.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 11:12:26.620 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 11:12:26.620 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 11:12:27.040 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" started. +2017-08-17 11:12:27.091 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 11:12:27.092 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 11:12:27.092 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 11:12:28.312 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" started. +2017-08-17 11:12:30.678 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 11:12:30.680 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 11:12:30.681 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 11:12:32.700 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 11:12:32.978 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:32.979 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:33.060 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:33.170 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 7900.316ms +2017-08-17 11:12:33.588 +05:30 [Information] Request finished in 8190.8436ms 200 application/json; charset=utf-8 +2017-08-17 11:12:33.591 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" completed keep alive response. +2017-08-17 11:12:33.860 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:33.882 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:33.926 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:33.931 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:33.932 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:33.963 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:33.986 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:12:34.027 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 7344.1437ms +2017-08-17 11:12:34.115 +05:30 [Information] Request finished in 7592.6359ms 200 application/json; charset=utf-8 +2017-08-17 11:12:34.120 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" completed keep alive response. +2017-08-17 11:12:34.224 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:34.225 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:34.225 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:34.254 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:34.277 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 7766.6223ms +2017-08-17 11:12:34.304 +05:30 [Information] Request finished in 7798.8059ms 200 application/json; charset=utf-8 +2017-08-17 11:12:34.323 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:34.323 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" completed keep alive response. +2017-08-17 11:12:34.327 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:34.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:34.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:34.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 7239.1226ms +2017-08-17 11:12:34.338 +05:30 [Information] Request finished in 7289.5274ms 200 application/json; charset=utf-8 +2017-08-17 11:12:34.339 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" completed keep alive response. +2017-08-17 11:12:34.841 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 11:12:34.884 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:34.886 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:34.887 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:34.897 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 4207.3042ms +2017-08-17 11:12:35.234 +05:30 [Information] Request finished in 4452.1278ms 200 application/json; charset=utf-8 +2017-08-17 11:12:35.251 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" completed keep alive response. +2017-08-17 11:12:41.242 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchData?keywords=none +2017-08-17 11:12:41.243 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchData"'. +2017-08-17 11:12:41.244 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:12:44.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" with arguments (["none"]) - ModelState is Valid +2017-08-17 11:12:52.984 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:12:52.985 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:12:52.985 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:12:52.986 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:12:53.022 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" in 11772.8923ms +2017-08-17 11:12:53.028 +05:30 [Information] Request finished in 11785.8622ms 200 application/json; charset=utf-8 +2017-08-17 11:12:53.029 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" completed keep alive response. +2017-08-17 11:13:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" received FIN. +2017-08-17 11:13:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" received FIN. +2017-08-17 11:13:56.628 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" received FIN. +2017-08-17 11:13:56.632 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" disconnecting. +2017-08-17 11:13:56.635 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" disconnecting. +2017-08-17 11:13:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" received FIN. +2017-08-17 11:13:56.639 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" disconnecting. +2017-08-17 11:13:56.644 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" sending FIN. +2017-08-17 11:13:56.657 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" received FIN. +2017-08-17 11:13:56.661 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" disconnecting. +2017-08-17 11:13:56.668 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" sending FIN. +2017-08-17 11:13:56.670 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" disconnecting. +2017-08-17 11:13:56.667 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" sending FIN. +2017-08-17 11:13:56.702 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" sending FIN. +2017-08-17 11:13:56.720 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" sent FIN with status "0". +2017-08-17 11:13:56.722 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" sending FIN. +2017-08-17 11:13:56.724 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" sent FIN with status "0". +2017-08-17 11:13:56.723 +05:30 [Debug] Connection id ""0HL755VGF6LCD"" stopped. +2017-08-17 11:13:56.727 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" sent FIN with status "0". +2017-08-17 11:13:56.725 +05:30 [Debug] Connection id ""0HL755VGF6LCC"" stopped. +2017-08-17 11:13:56.728 +05:30 [Debug] Connection id ""0HL755VGF6LC9"" stopped. +2017-08-17 11:13:56.729 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" sent FIN with status "0". +2017-08-17 11:13:56.731 +05:30 [Debug] Connection id ""0HL755VGF6LCE"" stopped. +2017-08-17 11:13:56.731 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" sent FIN with status "0". +2017-08-17 11:13:56.732 +05:30 [Debug] Connection id ""0HL755VGF6LCA"" stopped. +2017-08-17 11:15:20.352 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" started. +2017-08-17 11:15:20.354 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:15:20.355 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:15:20.355 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:15:21.518 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:15:21.523 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:21.524 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:21.525 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:21.527 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 1170.6105ms +2017-08-17 11:15:21.531 +05:30 [Information] Request finished in 1177.2593ms 200 application/json; charset=utf-8 +2017-08-17 11:15:21.532 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" completed keep alive response. +2017-08-17 11:15:21.563 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-17 11:15:21.565 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-17 11:15:21.566 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-17 11:15:24.637 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:15:24.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:24.648 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:24.650 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:24.664 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3085.2845ms +2017-08-17 11:15:24.671 +05:30 [Information] Request finished in 3105.7471ms 200 application/json; charset=utf-8 +2017-08-17 11:15:24.671 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" completed keep alive response. +2017-08-17 11:15:24.683 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-17 11:15:24.686 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 11:15:24.689 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 11:15:27.752 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-17 11:15:27.768 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:27.775 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:27.783 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:27.787 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3094.8139ms +2017-08-17 11:15:27.791 +05:30 [Information] Request finished in 3107.7397ms 200 application/json; charset=utf-8 +2017-08-17 11:15:27.792 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" completed keep alive response. +2017-08-17 11:15:29.529 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" started. +2017-08-17 11:15:29.545 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 11:15:29.546 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 11:15:29.554 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 11:15:29.553 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 11:15:29.561 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 11:15:29.576 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 11:15:31.802 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" started. +2017-08-17 11:15:31.923 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchData?keywords=none +2017-08-17 11:15:31.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchData"'. +2017-08-17 11:15:31.942 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:15:31.947 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:15:31.959 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:31.961 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:15:31.961 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:31.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:31.976 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 2419.1838ms +2017-08-17 11:15:31.979 +05:30 [Information] Request finished in 2445.4121ms 200 application/json; charset=utf-8 +2017-08-17 11:15:31.980 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" completed keep alive response. +2017-08-17 11:15:32.898 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:15:33.014 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:33.018 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:15:33.018 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:33.019 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:33.026 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 3436.4439ms +2017-08-17 11:15:33.030 +05:30 [Information] Request finished in 3493.9229ms 200 application/json; charset=utf-8 +2017-08-17 11:15:33.031 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" completed keep alive response. +2017-08-17 11:15:35.040 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" with arguments (["none"]) - ModelState is Valid +2017-08-17 11:15:52.654 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:15:52.655 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:15:52.656 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:15:52.658 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:15:52.673 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" in 20722.8209ms +2017-08-17 11:15:52.682 +05:30 [Information] Request finished in 20869.7771ms 200 application/json; charset=utf-8 +2017-08-17 11:15:52.683 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" completed keep alive response. +2017-08-17 11:16:49.698 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" received FIN. +2017-08-17 11:16:49.698 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" received FIN. +2017-08-17 11:16:49.700 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" disconnecting. +2017-08-17 11:16:49.699 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" disconnecting. +2017-08-17 11:16:49.702 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" sending FIN. +2017-08-17 11:16:49.702 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" sent FIN with status "0". +2017-08-17 11:16:49.703 +05:30 [Debug] Connection id ""0HL755VGF6LCG"" stopped. +2017-08-17 11:16:49.701 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" sending FIN. +2017-08-17 11:16:49.703 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" sent FIN with status "0". +2017-08-17 11:16:49.704 +05:30 [Debug] Connection id ""0HL755VGF6LCF"" stopped. +2017-08-17 11:16:49.705 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/ContentStudio/GetAdvanceSearchData?keywords=sachin +2017-08-17 11:16:49.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/ContentStudio/GetAdvanceSearchData"'. +2017-08-17 11:16:49.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:16:52.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" with arguments (["sachin"]) - ModelState is Valid +2017-08-17 11:16:58.877 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:16:58.879 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:16:58.880 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:16:58.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:16:58.896 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ContentStudioController.GetAdvanceSearchData (Api.Socioboard)" in 9175.4225ms +2017-08-17 11:16:58.908 +05:30 [Information] Request finished in 9201.8793ms 200 application/json; charset=utf-8 +2017-08-17 11:16:58.909 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" completed keep alive response. +2017-08-17 11:17:34.334 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=undefined&skip=0&count=30 +2017-08-17 11:17:34.335 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:17:34.336 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:17:37.433 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["twitter", "0", "30"]) - ModelState is Invalid +2017-08-17 11:17:42.142 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:17:42.144 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:17:42.145 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:17:42.147 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:17:42.174 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 7816.4801ms +2017-08-17 11:17:42.177 +05:30 [Information] Request finished in 7843.4091ms 200 application/json; charset=utf-8 +2017-08-17 11:17:42.178 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" completed keep alive response. +2017-08-17 11:19:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" received FIN. +2017-08-17 11:19:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" disconnecting. +2017-08-17 11:19:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" sending FIN. +2017-08-17 11:19:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" sent FIN with status "0". +2017-08-17 11:19:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LCH"" stopped. +2017-08-17 11:20:19.928 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" started. +2017-08-17 11:20:19.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 11:20:19.936 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 11:20:19.943 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 11:20:20.608 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" started. +2017-08-17 11:20:20.613 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:20:20.614 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:20:20.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:20:22.434 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" started. +2017-08-17 11:20:22.442 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=undefined&skip=0&count=30 +2017-08-17 11:20:22.442 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:20:22.443 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:20:22.978 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:20:23.245 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:20:23.246 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:20:23.246 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:20:23.247 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:20:23.250 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 3304.3592ms +2017-08-17 11:20:23.252 +05:30 [Information] Request finished in 3320.6993ms 200 application/json; charset=utf-8 +2017-08-17 11:20:23.252 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:20:23.729 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:20:23.732 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:20:23.733 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:20:23.734 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:20:23.737 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3120.4706ms +2017-08-17 11:20:23.739 +05:30 [Information] Request finished in 3129.3881ms 200 application/json; charset=utf-8 +2017-08-17 11:20:23.740 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" completed keep alive response. +2017-08-17 11:20:23.749 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 11:20:23.751 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 11:20:23.752 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 11:20:25.508 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["twitter", "0", "30"]) - ModelState is Invalid +2017-08-17 11:20:26.776 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 11:20:26.813 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:20:26.814 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:20:26.816 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:20:26.819 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3065.3371ms +2017-08-17 11:20:26.824 +05:30 [Information] Request finished in 3074.3726ms 200 application/json; charset=utf-8 +2017-08-17 11:20:26.826 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:20:30.132 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:20:30.134 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:20:30.134 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:20:30.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:20:30.146 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 7698.2949ms +2017-08-17 11:20:30.150 +05:30 [Information] Request finished in 7708.9926ms 200 application/json; charset=utf-8 +2017-08-17 11:20:30.151 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" completed keep alive response. +2017-08-17 11:20:33.621 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/QuickTopics?networkType=sport&skip=0&count=30 +2017-08-17 11:20:33.622 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/QuickTopics"'. +2017-08-17 11:20:33.623 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" +2017-08-17 11:20:36.672 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" with arguments (["sport", "0", "30"]) - ModelState is Valid +2017-08-17 11:20:38.079 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:20:38.080 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:20:38.080 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:20:38.081 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:20:38.094 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" in 4459.8625ms +2017-08-17 11:20:38.098 +05:30 [Information] Request finished in 4478.1234ms 200 application/json; charset=utf-8 +2017-08-17 11:20:38.099 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" completed keep alive response. +2017-08-17 11:21:07.479 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/QuickTopics?networkType=science_and_nature&skip=0&count=30 +2017-08-17 11:21:07.482 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/QuickTopics"'. +2017-08-17 11:21:07.483 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" +2017-08-17 11:21:10.531 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" with arguments (["science_and_nature", "0", "30"]) - ModelState is Valid +2017-08-17 11:21:12.124 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:21:12.126 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:21:12.126 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:21:12.136 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:21:12.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" in 4657.3695ms +2017-08-17 11:21:12.169 +05:30 [Information] Request finished in 4688.2517ms 200 application/json; charset=utf-8 +2017-08-17 11:21:12.180 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:21:48.848 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" received FIN. +2017-08-17 11:21:48.850 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" disconnecting. +2017-08-17 11:21:48.850 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" sending FIN. +2017-08-17 11:21:48.850 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" sent FIN with status "0". +2017-08-17 11:21:48.851 +05:30 [Debug] Connection id ""0HL755VGF6LCJ"" stopped. +2017-08-17 11:21:48.848 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" received FIN. +2017-08-17 11:21:48.857 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" disconnecting. +2017-08-17 11:21:48.857 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" sending FIN. +2017-08-17 11:21:48.857 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" sent FIN with status "0". +2017-08-17 11:21:48.858 +05:30 [Debug] Connection id ""0HL755VGF6LCK"" stopped. +2017-08-17 11:21:48.861 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/QuickTopics?networkType=entertainment&skip=0&count=30 +2017-08-17 11:21:48.863 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/QuickTopics"'. +2017-08-17 11:21:48.864 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" +2017-08-17 11:21:51.912 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" with arguments (["entertainment", "0", "30"]) - ModelState is Valid +2017-08-17 11:21:53.453 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:21:53.454 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:21:53.454 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:21:53.455 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:21:53.461 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.QuickTopics (Api.Socioboard)" in 4593.494ms +2017-08-17 11:21:53.467 +05:30 [Information] Request finished in 4605.9891ms 200 application/json; charset=utf-8 +2017-08-17 11:21:53.469 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:22:25.079 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=flickr&skip=0&count=30 +2017-08-17 11:22:25.081 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:22:25.082 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:22:28.109 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["flickr", "0", "30"]) - ModelState is Valid +2017-08-17 11:22:30.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:22:30.096 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:22:30.097 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:22:30.099 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:22:30.110 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 5020.7118ms +2017-08-17 11:22:30.120 +05:30 [Information] Request finished in 5042.2095ms 200 application/json; charset=utf-8 +2017-08-17 11:22:30.122 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:22:54.903 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=instagram&skip=0&count=30 +2017-08-17 11:22:54.903 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:22:54.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:22:57.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["instagram", "0", "30"]) - ModelState is Valid +2017-08-17 11:23:01.302 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:23:01.303 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:23:01.304 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:23:01.305 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:23:01.307 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 6402.119ms +2017-08-17 11:23:01.313 +05:30 [Information] Request finished in 6413.4464ms 200 application/json; charset=utf-8 +2017-08-17 11:23:01.315 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:23:16.020 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=youtube&skip=0&count=30 +2017-08-17 11:23:16.022 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:23:16.023 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:23:19.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["youtube", "0", "30"]) - ModelState is Valid +2017-08-17 11:23:21.088 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:23:21.088 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:23:21.089 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:23:21.091 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:23:21.098 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 5069.3659ms +2017-08-17 11:23:21.110 +05:30 [Information] Request finished in 5087.0729ms 200 application/json; charset=utf-8 +2017-08-17 11:23:21.111 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:09.287 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:24:09.291 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:24:09.292 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:24:12.757 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:24:12.824 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:12.893 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:12.979 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:13.011 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3700.6845ms +2017-08-17 11:24:13.119 +05:30 [Information] Request finished in 3780.5095ms 200 application/json; charset=utf-8 +2017-08-17 11:24:13.120 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:13.184 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/UpdateSessiondata application/x-www-form-urlencoded 24 +2017-08-17 11:24:13.185 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/UpdateSessiondata"'. +2017-08-17 11:24:13.186 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" +2017-08-17 11:24:16.426 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:24:16.440 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:16.442 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:16.471 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:16.526 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.UpdateSessiondata (Api.Socioboard)" in 3294.0948ms +2017-08-17 11:24:16.548 +05:30 [Information] Request finished in 3366.2476ms 200 application/json; charset=utf-8 +2017-08-17 11:24:16.549 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:16.721 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupData?userId=1&groupId=1 +2017-08-17 11:24:16.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupData"'. +2017-08-17 11:24:16.729 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" +2017-08-17 11:24:20.070 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" with arguments (["1", "1"]) - ModelState is Valid +2017-08-17 11:24:20.080 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:20.084 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:20.085 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:20.087 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupData (Api.Socioboard)" in 3355.7317ms +2017-08-17 11:24:20.091 +05:30 [Information] Request finished in 3474.194ms 200 application/json; charset=utf-8 +2017-08-17 11:24:20.091 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:22.196 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" started. +2017-08-17 11:24:22.243 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/Groups/GetUserGroupsCount?&userId=1 +2017-08-17 11:24:22.244 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Groups/GetUserGroupsCount"'. +2017-08-17 11:24:22.245 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" +2017-08-17 11:24:22.265 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupMember/GetGroupMembers?groupId=1 +2017-08-17 11:24:22.267 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupMember/GetGroupMembers"'. +2017-08-17 11:24:22.267 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" +2017-08-17 11:24:22.773 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" started. +2017-08-17 11:24:22.910 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/GroupProfiles/GetTop3GroupProfiles?groupId=1 +2017-08-17 11:24:22.919 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/GroupProfiles/GetTop3GroupProfiles"'. +2017-08-17 11:24:22.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" +2017-08-17 11:24:23.817 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" started. +2017-08-17 11:24:23.864 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 11:24:23.866 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 11:24:23.867 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 11:24:26.282 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:24:26.320 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:24:26.379 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:26.387 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:24:26.385 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:26.387 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:26.388 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:24:26.390 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:26.390 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:26.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:26.396 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupMemberController.GetGroupMembers (Api.Socioboard)" in 4124.1103ms +2017-08-17 11:24:26.405 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupsController.GetUserGroupsCount (Api.Socioboard)" in 4147.3809ms +2017-08-17 11:24:26.412 +05:30 [Information] Request finished in 4160.3392ms 200 application/json; charset=utf-8 +2017-08-17 11:24:26.420 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" completed keep alive response. +2017-08-17 11:24:26.427 +05:30 [Information] Request finished in 4217.4673ms 200 application/json; charset=utf-8 +2017-08-17 11:24:26.428 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:27.011 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" with arguments (["1"]) - ModelState is Valid +2017-08-17 11:24:27.747 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 11:24:27.796 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:27.803 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:27.825 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:27.818 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:24:27.827 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:27.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:27.832 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:27.843 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3971.1807ms +2017-08-17 11:24:27.846 +05:30 [Information] Executed action "Api.Socioboard.Controllers.GroupProfilesController.GetTop3GroupProfiles (Api.Socioboard)" in 4865.0558ms +2017-08-17 11:24:27.857 +05:30 [Information] Request finished in 4028.5296ms 200 application/json; charset=utf-8 +2017-08-17 11:24:27.858 +05:30 [Information] Request finished in 5071.9346ms 200 application/json; charset=utf-8 +2017-08-17 11:24:27.862 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" completed keep alive response. +2017-08-17 11:24:27.859 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" completed keep alive response. +2017-08-17 11:24:27.938 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/SaveSessiondata application/x-www-form-urlencoded 58 +2017-08-17 11:24:27.939 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/SaveSessiondata"'. +2017-08-17 11:24:27.940 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" +2017-08-17 11:24:28.442 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=undefined&skip=0&count=30 +2017-08-17 11:24:28.444 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:24:28.445 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:24:31.148 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" with arguments (["103.217.90.99", "Chrome on Windows NT 6.1", "1"]) - ModelState is Valid +2017-08-17 11:24:31.179 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:31.180 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:31.181 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:31.184 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.SaveSessiondata (Api.Socioboard)" in 3242.2247ms +2017-08-17 11:24:31.186 +05:30 [Information] Request finished in 3277.3227ms 200 application/json; charset=utf-8 +2017-08-17 11:24:31.187 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" completed keep alive response. +2017-08-17 11:24:31.624 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["twitter", "0", "30"]) - ModelState is Invalid +2017-08-17 11:24:38.146 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:38.148 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:24:38.148 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:38.151 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:38.158 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 9701.0007ms +2017-08-17 11:24:38.169 +05:30 [Information] Request finished in 9742.3323ms 200 application/json; charset=utf-8 +2017-08-17 11:24:38.170 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:24:41.434 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=dailymotion&skip=0&count=30 +2017-08-17 11:24:41.435 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:24:41.436 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:24:44.763 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["dailymotion", "0", "30"]) - ModelState is Valid +2017-08-17 11:24:46.589 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:24:46.590 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:24:46.591 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:24:46.593 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:24:46.605 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 5159.5161ms +2017-08-17 11:24:46.620 +05:30 [Information] Request finished in 5189.1148ms 200 application/json; charset=utf-8 +2017-08-17 11:24:46.621 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" completed keep alive response. +2017-08-17 11:24:59.384 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=twitter&skip=0&count=30 +2017-08-17 11:24:59.386 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:24:59.389 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:25:01.567 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["twitter", "0", "30"]) - ModelState is Valid +2017-08-17 11:25:09.206 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:25:09.207 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:25:09.207 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:25:09.208 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:25:09.222 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 9817.671ms +2017-08-17 11:25:09.226 +05:30 [Information] Request finished in 9844.151ms 200 application/json; charset=utf-8 +2017-08-17 11:25:09.227 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" completed keep alive response. +2017-08-17 11:25:36.646 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" received FIN. +2017-08-17 11:25:36.648 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" disconnecting. +2017-08-17 11:25:36.662 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" sending FIN. +2017-08-17 11:25:36.663 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" sent FIN with status "0". +2017-08-17 11:25:36.663 +05:30 [Debug] Connection id ""0HL755VGF6LCL"" stopped. +2017-08-17 11:25:36.669 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/AdvanceSearch/GetYTAdvanceSearchData?network=youtube&skip=0&count=30 +2017-08-17 11:25:36.670 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/AdvanceSearch/GetYTAdvanceSearchData"'. +2017-08-17 11:25:36.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" +2017-08-17 11:25:39.749 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" with arguments (["youtube", "0", "30"]) - ModelState is Valid +2017-08-17 11:25:41.837 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 11:25:41.839 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 11:25:41.840 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 11:25:41.882 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 11:25:41.890 +05:30 [Information] Executed action "Api.Socioboard.Controllers.AdvanceSearchController.GetYTAdvanceSearchData (Api.Socioboard)" in 5214.5406ms +2017-08-17 11:25:41.903 +05:30 [Information] Request finished in 5249.4141ms 200 application/json; charset=utf-8 +2017-08-17 11:25:41.904 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" completed keep alive response. +2017-08-17 11:25:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" received FIN. +2017-08-17 11:25:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" disconnecting. +2017-08-17 11:25:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" sending FIN. +2017-08-17 11:25:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" sent FIN with status "0". +2017-08-17 11:25:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LCN"" stopped. +2017-08-17 11:27:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" received FIN. +2017-08-17 11:27:56.624 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" received FIN. +2017-08-17 11:27:56.625 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" disconnecting. +2017-08-17 11:27:56.627 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" sending FIN. +2017-08-17 11:27:56.628 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" sent FIN with status "0". +2017-08-17 11:27:56.626 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" disconnecting. +2017-08-17 11:27:56.633 +05:30 [Debug] Connection id ""0HL755VGF6LCM"" stopped. +2017-08-17 11:27:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" sending FIN. +2017-08-17 11:27:56.634 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" sent FIN with status "0". +2017-08-17 11:27:56.635 +05:30 [Debug] Connection id ""0HL755VGF6LCI"" stopped. +2017-08-17 13:02:58.135 +05:30 [Debug] Hosting starting +2017-08-17 13:02:58.708 +05:30 [Debug] Hosting started +2017-08-17 13:02:58.801 +05:30 [Debug] Connection id ""0HL7588NIHI00"" started. +2017-08-17 13:02:58.802 +05:30 [Debug] Connection id ""0HL7588NIHI01"" started. +2017-08-17 13:02:59.090 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 13:02:59.090 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 13:02:59.208 +05:30 [Information] Request finished in 219.8443ms 200 +2017-08-17 13:02:59.287 +05:30 [Debug] Connection id ""0HL7588NIHI01"" completed keep alive response. +2017-08-17 13:03:00.404 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 13:03:00.475 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c88ef752-f3a8-456d-9e74-fb4af3abcfb2"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 13:03:00.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 13:03:00.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 13:03:00.913 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 13:03:00.959 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 13:03:00.966 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:03:00.969 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:03:01.431 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 597.7257ms +2017-08-17 13:03:01.685 +05:30 [Information] Request finished in 2721.0785ms 200 application/json; charset=utf-8 +2017-08-17 13:03:01.689 +05:30 [Debug] Connection id ""0HL7588NIHI00"" completed keep alive response. +2017-08-17 13:03:31.132 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 13:03:31.133 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 13:03:31.136 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 13:03:35.113 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 13:03:40.094 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:03:40.099 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:03:40.100 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:03:40.239 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9099.3588ms +2017-08-17 13:03:40.242 +05:30 [Information] Request finished in 9108.8932ms 200 application/json; charset=utf-8 +2017-08-17 13:03:40.243 +05:30 [Debug] Connection id ""0HL7588NIHI01"" completed keep alive response. +2017-08-17 13:03:40.645 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 13:03:40.646 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 13:03:40.659 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 13:03:43.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 13:03:43.870 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 13:03:43.878 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 13:03:43.879 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3219.5791ms +2017-08-17 13:03:43.881 +05:30 [Information] Request finished in 3235.7772ms 400 +2017-08-17 13:03:43.882 +05:30 [Debug] Connection id ""0HL7588NIHI00"" completed keep alive response. +2017-08-17 13:04:56.737 +05:30 [Debug] Connection id ""0HL7588NIHI01"" received FIN. +2017-08-17 13:04:56.737 +05:30 [Debug] Connection id ""0HL7588NIHI00"" received FIN. +2017-08-17 13:04:56.740 +05:30 [Debug] Connection id ""0HL7588NIHI02"" started. +2017-08-17 13:04:56.741 +05:30 [Debug] Connection id ""0HL7588NIHI00"" disconnecting. +2017-08-17 13:04:56.751 +05:30 [Debug] Connection id ""0HL7588NIHI01"" disconnecting. +2017-08-17 13:04:56.754 +05:30 [Debug] Connection id ""0HL7588NIHI01"" sending FIN. +2017-08-17 13:04:56.753 +05:30 [Debug] Connection id ""0HL7588NIHI00"" sending FIN. +2017-08-17 13:04:56.771 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 171 +2017-08-17 13:04:56.772 +05:30 [Debug] Connection id ""0HL7588NIHI01"" sent FIN with status "0". +2017-08-17 13:04:56.772 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 13:04:56.776 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 13:04:56.778 +05:30 [Debug] Connection id ""0HL7588NIHI01"" stopped. +2017-08-17 13:04:56.782 +05:30 [Debug] Connection id ""0HL7588NIHI00"" sent FIN with status "0". +2017-08-17 13:04:56.782 +05:30 [Debug] Connection id ""0HL7588NIHI00"" stopped. +2017-08-17 13:04:59.948 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 13:05:00.532 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 13:05:00.553 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 13:05:00.554 +05:30 [Error] Duplicate entry 'Socioboard-4' for key 'GroupName_AdminId' +2017-08-17 13:05:00.556 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 13:05:03.755 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:05:03.756 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 13:05:03.756 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 13:05:03.760 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:05:03.768 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6988.1077ms +2017-08-17 13:05:03.773 +05:30 [Information] Request finished in 7021.0905ms 200 text/plain; charset=utf-8 +2017-08-17 13:05:03.773 +05:30 [Debug] Connection id ""0HL7588NIHI02"" completed keep alive response. +2017-08-17 13:05:04.008 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 13:05:04.013 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 13:05:04.016 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 13:05:07.072 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 13:05:07.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:05:07.078 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:05:07.079 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:05:07.080 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3062.8763ms +2017-08-17 13:05:07.085 +05:30 [Information] Request finished in 3077.9342ms 200 application/json; charset=utf-8 +2017-08-17 13:05:07.087 +05:30 [Debug] Connection id ""0HL7588NIHI02"" completed keep alive response. +2017-08-17 13:05:07.109 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=avinashverma@globussoft.in +2017-08-17 13:05:07.110 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 13:05:07.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 13:05:10.157 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["avinashverma@globussoft.in"]) - ModelState is Valid +2017-08-17 13:05:10.167 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:05:10.167 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:05:10.169 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:05:10.201 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3087.256ms +2017-08-17 13:05:10.203 +05:30 [Information] Request finished in 3092.6613ms 200 application/json; charset=utf-8 +2017-08-17 13:05:10.204 +05:30 [Debug] Connection id ""0HL7588NIHI02"" completed keep alive response. +2017-08-17 13:05:10.295 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 13:05:10.296 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 13:05:10.297 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 13:05:13.335 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 13:05:13.345 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:05:13.345 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:05:13.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:05:13.351 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3052.5828ms +2017-08-17 13:05:13.354 +05:30 [Information] Request finished in 3060.351ms 200 application/json; charset=utf-8 +2017-08-17 13:05:13.355 +05:30 [Debug] Connection id ""0HL7588NIHI02"" completed keep alive response. +2017-08-17 13:07:05.985 +05:30 [Debug] Connection id ""0HL7588NIHI02"" received FIN. +2017-08-17 13:07:06.039 +05:30 [Debug] Connection id ""0HL7588NIHI02"" disconnecting. +2017-08-17 13:07:06.040 +05:30 [Debug] Connection id ""0HL7588NIHI02"" sending FIN. +2017-08-17 13:07:06.040 +05:30 [Debug] Connection id ""0HL7588NIHI02"" sent FIN with status "0". +2017-08-17 13:07:06.041 +05:30 [Debug] Connection id ""0HL7588NIHI02"" stopped. +2017-08-17 13:07:53.881 +05:30 [Debug] Connection id ""0HL7588NIHI03"" started. +2017-08-17 13:07:53.884 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/UpgradeAccount application/x-www-form-urlencoded 344 +2017-08-17 13:07:53.885 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/UpgradeAccount"'. +2017-08-17 13:07:53.888 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" +2017-08-17 13:07:57.005 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" with arguments (["4", "4.99", "avinash verma", "avinashverma@globussoft.in", "paypal", "0a1d27cdb7c09de91f6f", "I-TR0F54GRFKYB", "Standard", "1/1/0001 00:00:00", "talktosaurabhkr@gmail.com", "Saurabh Kumar", "Completed", "Standard", "windows-1252"]) - ModelState is Invalid +2017-08-17 13:10:31.959 +05:30 [Debug] Connection id ""0HL7588NIHI03"" received FIN. +2017-08-17 13:11:26.113 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 13:11:26.114 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:11:26.115 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:11:26.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" in 212223.3569ms +2017-08-17 13:11:26.120 +05:30 [Debug] Connection id ""0HL7588NIHI03"" disconnecting. +2017-08-17 13:11:26.123 +05:30 [Information] Connection id ""0HL7588NIHI03"" communication error +Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvException: Error -4077 ECONNRESET connection reset by peer +2017-08-17 13:11:26.124 +05:30 [Information] Request finished in 212237.073ms 200 application/json; charset=utf-8 +2017-08-17 13:11:26.127 +05:30 [Debug] Connection id ""0HL7588NIHI03"" stopped. +2017-08-17 13:57:29.314 +05:30 [Debug] Hosting starting +2017-08-17 13:57:29.481 +05:30 [Debug] Hosting started +2017-08-17 13:57:29.638 +05:30 [Debug] Connection id ""0HL75976BMDST"" started. +2017-08-17 13:57:29.650 +05:30 [Debug] Connection id ""0HL75976BMDSU"" started. +2017-08-17 13:57:29.816 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 13:57:29.816 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 13:57:29.891 +05:30 [Information] Request finished in 103.7958ms 200 +2017-08-17 13:57:29.964 +05:30 [Debug] Connection id ""0HL75976BMDST"" completed keep alive response. +2017-08-17 13:57:30.539 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 13:57:30.585 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"83146c2c-27ca-422d-a590-f37badd97f55"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 13:57:30.676 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 13:57:30.789 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 13:57:30.791 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 13:57:30.829 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 13:57:30.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 13:57:30.835 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 13:57:31.220 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 531.4515ms +2017-08-17 13:57:31.339 +05:30 [Information] Request finished in 1568.7359ms 200 application/json; charset=utf-8 +2017-08-17 13:57:31.342 +05:30 [Debug] Connection id ""0HL75976BMDSU"" completed keep alive response. +2017-08-17 15:16:08.457 +05:30 [Debug] Hosting starting +2017-08-17 15:16:09.022 +05:30 [Debug] Hosting started +2017-08-17 15:16:09.051 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" started. +2017-08-17 15:16:09.051 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" started. +2017-08-17 15:16:09.298 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 15:16:09.298 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 15:16:09.396 +05:30 [Information] Request finished in 146.4914ms 200 +2017-08-17 15:16:09.522 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" completed keep alive response. +2017-08-17 15:16:11.051 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 15:16:11.144 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"0c691f38-7f8c-4935-94f7-812873811611"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 15:16:11.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 15:16:11.774 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 15:16:11.776 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 15:16:11.809 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:16:11.815 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:16:11.817 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:16:12.959 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 1360.5099ms +2017-08-17 15:16:13.178 +05:30 [Information] Request finished in 3959.3476ms 200 application/json; charset=utf-8 +2017-08-17 15:16:13.182 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" completed keep alive response. +2017-08-17 15:16:13.370 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/favicon.ico +2017-08-17 15:16:13.373 +05:30 [Debug] Request did not match any routes. +2017-08-17 15:16:13.393 +05:30 [Debug] The request path "" does not match the path filter +2017-08-17 15:16:13.396 +05:30 [Information] Request finished in 26.3146ms 404 +2017-08-17 15:16:13.396 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" completed keep alive response. +2017-08-17 15:16:32.411 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:16:32.412 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:16:32.415 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:16:36.737 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:16:46.751 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:16:46.769 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:16:46.770 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:16:46.903 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 14469.3428ms +2017-08-17 15:16:46.905 +05:30 [Information] Request finished in 14492.9122ms 200 application/json; charset=utf-8 +2017-08-17 15:16:46.906 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" completed keep alive response. +2017-08-17 15:16:47.342 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:16:47.343 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:16:47.344 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:16:50.497 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:16:50.617 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:16:50.631 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:16:50.634 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3287.4209ms +2017-08-17 15:16:50.641 +05:30 [Information] Request finished in 3298.6672ms 400 +2017-08-17 15:16:50.642 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" completed keep alive response. +2017-08-17 15:17:17.656 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:17:17.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:17:17.670 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:17:19.878 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:17:20.445 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 15:17:20.491 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 15:17:20.493 +05:30 [Error] Duplicate entry 'Socioboard-5' for key 'GroupName_AdminId' +2017-08-17 15:17:20.497 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 15:17:23.516 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:17:23.516 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:17:23.517 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:17:23.517 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:17:23.520 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 5846.9041ms +2017-08-17 15:17:23.524 +05:30 [Information] Request finished in 5868.2594ms 200 text/plain; charset=utf-8 +2017-08-17 15:17:23.525 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" completed keep alive response. +2017-08-17 15:17:23.755 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:17:23.756 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:17:23.758 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:17:25.935 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:17:25.939 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:17:25.940 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:17:25.941 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:17:25.944 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2184.3426ms +2017-08-17 15:17:25.948 +05:30 [Information] Request finished in 2192.8009ms 200 application/json; charset=utf-8 +2017-08-17 15:17:25.949 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" completed keep alive response. +2017-08-17 15:17:25.994 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 15:17:25.998 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 15:17:25.999 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 15:17:29.031 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 15:17:29.037 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:17:29.038 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:17:29.039 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:17:29.086 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3072.347ms +2017-08-17 15:17:29.091 +05:30 [Information] Request finished in 3104.3701ms 200 application/json; charset=utf-8 +2017-08-17 15:17:29.098 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" completed keep alive response. +2017-08-17 15:17:29.217 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 15:17:29.218 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 15:17:29.221 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 15:17:32.274 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 15:17:32.328 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:17:32.328 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:17:32.330 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:17:32.336 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3113.5803ms +2017-08-17 15:17:32.339 +05:30 [Information] Request finished in 3135.5577ms 200 application/json; charset=utf-8 +2017-08-17 15:17:32.339 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" completed keep alive response. +2017-08-17 15:20:08.995 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" received FIN. +2017-08-17 15:20:08.995 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" received FIN. +2017-08-17 15:20:08.998 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" disconnecting. +2017-08-17 15:20:09.000 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" disconnecting. +2017-08-17 15:20:09.002 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" sending FIN. +2017-08-17 15:20:09.002 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" sending FIN. +2017-08-17 15:20:09.014 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" sent FIN with status "0". +2017-08-17 15:20:09.014 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" sent FIN with status "0". +2017-08-17 15:20:09.038 +05:30 [Debug] Connection id ""0HL75AJ4RESJU"" stopped. +2017-08-17 15:20:09.039 +05:30 [Debug] Connection id ""0HL75AJ4RESJV"" stopped. +2017-08-17 15:23:47.968 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" started. +2017-08-17 15:23:47.971 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:23:47.975 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:23:47.976 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:23:51.087 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:23:51.169 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:23:51.170 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:23:51.171 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:23:51.172 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3195.4961ms +2017-08-17 15:23:51.175 +05:30 [Information] Request finished in 3205.77ms 200 application/json; charset=utf-8 +2017-08-17 15:23:51.176 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" completed keep alive response. +2017-08-17 15:23:51.181 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:23:51.182 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:23:51.182 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:23:54.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:23:54.282 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:23:54.284 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:23:54.286 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3102.2629ms +2017-08-17 15:23:54.288 +05:30 [Information] Request finished in 3107.8142ms 400 +2017-08-17 15:23:54.288 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" completed keep alive response. +2017-08-17 15:26:08.992 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" received FIN. +2017-08-17 15:26:08.996 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" disconnecting. +2017-08-17 15:26:08.998 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" sending FIN. +2017-08-17 15:26:08.999 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" sent FIN with status "0". +2017-08-17 15:26:09.000 +05:30 [Debug] Connection id ""0HL75AJ4RESK0"" stopped. +2017-08-17 15:27:07.069 +05:30 [Debug] Hosting starting +2017-08-17 15:27:07.414 +05:30 [Debug] Hosting started +2017-08-17 15:27:07.447 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" started. +2017-08-17 15:27:07.447 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" started. +2017-08-17 15:27:07.644 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 15:27:07.641 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 15:27:07.754 +05:30 [Information] Request finished in 145.3598ms 200 +2017-08-17 15:27:07.835 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" completed keep alive response. +2017-08-17 15:27:08.591 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 15:27:08.650 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"bef3064f-ed0b-4ffd-9f50-2a1377b6021b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 15:27:08.878 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 15:27:09.050 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 15:27:09.057 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 15:27:09.137 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:27:09.147 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:27:09.152 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:27:09.490 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 588.7972ms +2017-08-17 15:27:09.602 +05:30 [Information] Request finished in 2027.9179ms 200 application/json; charset=utf-8 +2017-08-17 15:27:09.605 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" completed keep alive response. +2017-08-17 15:27:23.900 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:27:23.901 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:27:23.904 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:27:27.297 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:27:32.046 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:27:32.055 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:27:32.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:27:32.196 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8290.0585ms +2017-08-17 15:27:32.202 +05:30 [Information] Request finished in 8313.1886ms 200 application/json; charset=utf-8 +2017-08-17 15:27:32.203 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" completed keep alive response. +2017-08-17 15:27:32.822 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:27:32.822 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:27:32.824 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:27:35.991 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:27:36.054 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:27:36.073 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:27:36.075 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3248.0217ms +2017-08-17 15:27:36.084 +05:30 [Information] Request finished in 3260.7507ms 400 +2017-08-17 15:27:36.085 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" completed keep alive response. +2017-08-17 15:28:15.579 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:28:15.580 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:28:15.587 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:28:18.721 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:28:19.021 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 15:28:19.035 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 15:28:19.036 +05:30 [Error] Duplicate entry 'Socioboard-6' for key 'GroupName_AdminId' +2017-08-17 15:28:19.038 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 15:28:22.277 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:28:22.278 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:28:22.278 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:28:22.279 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:28:22.290 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6693.8292ms +2017-08-17 15:28:22.292 +05:30 [Information] Request finished in 6714.1353ms 200 text/plain; charset=utf-8 +2017-08-17 15:28:22.292 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" completed keep alive response. +2017-08-17 15:28:22.484 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:28:22.485 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:28:22.489 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:28:25.537 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:28:25.541 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:28:25.542 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:28:25.543 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:28:25.547 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3053.821ms +2017-08-17 15:28:25.550 +05:30 [Information] Request finished in 3065.7572ms 200 application/json; charset=utf-8 +2017-08-17 15:28:25.550 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" completed keep alive response. +2017-08-17 15:28:25.581 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 15:28:25.583 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 15:28:25.585 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 15:28:28.638 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 15:28:28.644 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:28:28.645 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:28:28.646 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:28:28.677 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3090.3559ms +2017-08-17 15:28:28.680 +05:30 [Information] Request finished in 3098.1316ms 200 application/json; charset=utf-8 +2017-08-17 15:28:28.681 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" completed keep alive response. +2017-08-17 15:28:28.766 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 15:28:28.767 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 15:28:28.775 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 15:28:31.816 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 15:28:31.835 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:28:31.836 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:28:31.837 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:28:31.842 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3064.0088ms +2017-08-17 15:28:31.846 +05:30 [Information] Request finished in 3079.8747ms 200 application/json; charset=utf-8 +2017-08-17 15:28:31.847 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" completed keep alive response. +2017-08-17 15:30:21.909 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" received FIN. +2017-08-17 15:30:21.915 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" started. +2017-08-17 15:30:21.917 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" received FIN. +2017-08-17 15:30:21.938 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" disconnecting. +2017-08-17 15:30:21.941 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" sending FIN. +2017-08-17 15:30:21.953 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" sent FIN with status "0". +2017-08-17 15:30:21.972 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:30:21.974 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:30:21.975 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:30:21.975 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" disconnecting. +2017-08-17 15:30:21.981 +05:30 [Debug] Connection id ""0HL75AP92D9G5"" stopped. +2017-08-17 15:30:21.984 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" sending FIN. +2017-08-17 15:30:22.001 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" sent FIN with status "0". +2017-08-17 15:30:22.002 +05:30 [Debug] Connection id ""0HL75AP92D9G4"" stopped. +2017-08-17 15:30:25.089 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:30:25.092 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:30:25.093 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:30:25.094 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:30:25.097 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3119.8748ms +2017-08-17 15:30:25.101 +05:30 [Information] Request finished in 3160.1464ms 200 application/json; charset=utf-8 +2017-08-17 15:30:25.102 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" completed keep alive response. +2017-08-17 15:30:25.107 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:30:25.108 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:30:25.111 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:30:28.199 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:30:28.203 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:30:28.207 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:30:28.208 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3095.4778ms +2017-08-17 15:30:28.210 +05:30 [Information] Request finished in 3103.4799ms 400 +2017-08-17 15:30:28.211 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" completed keep alive response. +2017-08-17 15:33:07.416 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" received FIN. +2017-08-17 15:33:07.417 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" disconnecting. +2017-08-17 15:33:07.417 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" sending FIN. +2017-08-17 15:33:07.418 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" sent FIN with status "0". +2017-08-17 15:33:07.419 +05:30 [Debug] Connection id ""0HL75AP92D9G6"" stopped. +2017-08-17 15:34:21.187 +05:30 [Debug] Hosting starting +2017-08-17 15:34:21.405 +05:30 [Debug] Hosting started +2017-08-17 15:34:21.588 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" started. +2017-08-17 15:34:21.588 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" started. +2017-08-17 15:34:21.819 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 15:34:21.819 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 15:34:21.887 +05:30 [Information] Request finished in 119.2233ms 200 +2017-08-17 15:34:21.939 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:34:22.692 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 15:34:22.759 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"e6c7b15c-7c2e-4eee-829b-73965f70975f"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 15:34:22.963 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 15:34:23.123 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 15:34:23.131 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 15:34:23.188 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:34:23.195 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:34:23.198 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:34:23.518 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 532.821ms +2017-08-17 15:34:23.805 +05:30 [Information] Request finished in 2041.0383ms 200 application/json; charset=utf-8 +2017-08-17 15:34:23.808 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" completed keep alive response. +2017-08-17 15:34:39.330 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:34:39.332 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:34:39.374 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:34:43.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:34:48.501 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:34:48.527 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:34:48.529 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:34:48.680 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9302.8538ms +2017-08-17 15:34:48.687 +05:30 [Information] Request finished in 9371.1337ms 200 application/json; charset=utf-8 +2017-08-17 15:34:48.689 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:34:49.959 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:34:49.960 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:34:49.962 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:34:53.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:34:53.218 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:34:53.241 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:34:53.247 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3281.087ms +2017-08-17 15:34:53.250 +05:30 [Information] Request finished in 3295.0986ms 400 +2017-08-17 15:34:53.251 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" completed keep alive response. +2017-08-17 15:35:32.311 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:35:32.312 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:35:32.316 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:35:35.417 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:35:35.422 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:35:35.422 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:35:35.425 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:35:35.430 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3108.867ms +2017-08-17 15:35:35.434 +05:30 [Information] Request finished in 3136.9869ms 200 application/json; charset=utf-8 +2017-08-17 15:35:35.435 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:36:16.380 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" received FIN. +2017-08-17 15:36:16.389 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" disconnecting. +2017-08-17 15:36:16.392 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" sending FIN. +2017-08-17 15:36:16.397 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:36:16.399 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:36:16.405 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" sent FIN with status "0". +2017-08-17 15:36:16.406 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:36:16.411 +05:30 [Debug] Connection id ""0HL75ATAEMI1V"" stopped. +2017-08-17 15:36:19.602 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:36:19.621 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestObjectResult". +2017-08-17 15:36:19.622 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:36:19.622 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:36:19.623 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:36:19.632 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 3219.626ms +2017-08-17 15:36:19.635 +05:30 [Information] Request finished in 3255.1872ms 400 text/plain; charset=utf-8 +2017-08-17 15:36:19.635 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:36:28.643 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:36:28.644 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:36:28.645 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:36:31.675 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:36:32.037 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 15:36:32.050 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 15:36:32.052 +05:30 [Error] Duplicate entry 'Socioboard-7' for key 'GroupName_AdminId' +2017-08-17 15:36:32.054 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 15:36:34.901 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:36:34.902 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:36:34.902 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:36:34.908 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:36:34.916 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6264.557ms +2017-08-17 15:36:34.920 +05:30 [Information] Request finished in 6276.2194ms 200 text/plain; charset=utf-8 +2017-08-17 15:36:34.921 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:36:35.096 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:36:35.097 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:36:35.098 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:36:38.140 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:36:38.144 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:36:38.144 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:36:38.146 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:36:38.147 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3047.2474ms +2017-08-17 15:36:38.149 +05:30 [Information] Request finished in 3051.9597ms 200 application/json; charset=utf-8 +2017-08-17 15:36:38.150 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:36:38.176 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 15:36:38.178 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 15:36:38.179 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 15:36:41.204 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 15:36:41.212 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:36:41.213 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:36:41.214 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:36:41.242 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3061.1819ms +2017-08-17 15:36:41.246 +05:30 [Information] Request finished in 3069.9478ms 200 application/json; charset=utf-8 +2017-08-17 15:36:41.246 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:36:41.323 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 15:36:41.324 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 15:36:41.325 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 15:36:44.382 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 15:36:44.393 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:36:44.393 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:36:44.394 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:36:44.398 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3071.6584ms +2017-08-17 15:36:44.400 +05:30 [Information] Request finished in 3077.6529ms 200 application/json; charset=utf-8 +2017-08-17 15:36:44.401 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" completed keep alive response. +2017-08-17 15:38:21.561 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" received FIN. +2017-08-17 15:38:21.562 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" disconnecting. +2017-08-17 15:38:21.563 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" sending FIN. +2017-08-17 15:38:21.565 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" sent FIN with status "0". +2017-08-17 15:38:21.566 +05:30 [Debug] Connection id ""0HL75ATAEMI1U"" stopped. +2017-08-17 15:39:16.286 +05:30 [Debug] Hosting starting +2017-08-17 15:39:16.787 +05:30 [Debug] Hosting started +2017-08-17 15:39:16.855 +05:30 [Debug] Connection id ""0HL75B02EII00"" started. +2017-08-17 15:39:16.855 +05:30 [Debug] Connection id ""0HL75B02EII01"" started. +2017-08-17 15:39:17.088 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 15:39:17.082 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 15:39:17.252 +05:30 [Information] Request finished in 163.3087ms 200 +2017-08-17 15:39:17.509 +05:30 [Debug] Connection id ""0HL75B02EII01"" completed keep alive response. +2017-08-17 15:39:18.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 15:39:18.558 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"987f77c8-8b9f-4d1a-a30c-32916df5a76b"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 15:39:18.882 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 15:39:19.067 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 15:39:19.077 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 15:39:19.140 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:39:19.156 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:39:19.191 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:39:19.625 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 718.4196ms +2017-08-17 15:39:19.850 +05:30 [Information] Request finished in 2867.6009ms 200 application/json; charset=utf-8 +2017-08-17 15:39:19.860 +05:30 [Debug] Connection id ""0HL75B02EII00"" completed keep alive response. +2017-08-17 15:39:36.803 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:39:36.805 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:39:36.809 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:39:40.264 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:39:44.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:39:44.108 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:39:44.111 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:39:44.268 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7455.0534ms +2017-08-17 15:39:44.273 +05:30 [Information] Request finished in 7469.3643ms 200 application/json; charset=utf-8 +2017-08-17 15:39:44.274 +05:30 [Debug] Connection id ""0HL75B02EII01"" completed keep alive response. +2017-08-17 15:39:45.144 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:39:45.145 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:39:45.146 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:39:48.263 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:39:48.322 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:39:48.346 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:39:48.364 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3202.0604ms +2017-08-17 15:39:48.372 +05:30 [Information] Request finished in 3225.1376ms 400 +2017-08-17 15:39:48.373 +05:30 [Debug] Connection id ""0HL75B02EII00"" completed keep alive response. +2017-08-17 15:40:19.637 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:40:19.639 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:40:19.641 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:40:22.813 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:40:23.339 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 15:40:23.352 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 15:40:23.353 +05:30 [Error] Duplicate entry 'Socioboard-8' for key 'GroupName_AdminId' +2017-08-17 15:40:23.355 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 15:40:26.265 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:40:26.267 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:40:26.267 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:40:26.270 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:40:26.276 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6630.6132ms +2017-08-17 15:40:26.280 +05:30 [Information] Request finished in 6642.2687ms 200 text/plain; charset=utf-8 +2017-08-17 15:40:26.281 +05:30 [Debug] Connection id ""0HL75B02EII01"" completed keep alive response. +2017-08-17 15:40:26.473 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:40:26.474 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:40:26.476 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:40:28.563 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:40:28.566 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:40:28.567 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:40:28.568 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:40:28.570 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 2092.7207ms +2017-08-17 15:40:28.574 +05:30 [Information] Request finished in 2100.9132ms 200 application/json; charset=utf-8 +2017-08-17 15:40:28.575 +05:30 [Debug] Connection id ""0HL75B02EII00"" completed keep alive response. +2017-08-17 15:40:28.599 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 15:40:28.600 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 15:40:28.614 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 15:40:31.690 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 15:40:31.705 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:40:31.707 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:40:31.710 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:40:31.791 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3139.9939ms +2017-08-17 15:40:31.822 +05:30 [Information] Request finished in 3203.5777ms 200 application/json; charset=utf-8 +2017-08-17 15:40:31.824 +05:30 [Debug] Connection id ""0HL75B02EII01"" completed keep alive response. +2017-08-17 15:40:31.942 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 15:40:31.943 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 15:40:31.944 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 15:40:34.064 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 15:40:34.075 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:40:34.076 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:40:34.077 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:40:34.083 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 2135.7288ms +2017-08-17 15:40:34.095 +05:30 [Information] Request finished in 2151.5116ms 200 application/json; charset=utf-8 +2017-08-17 15:40:34.095 +05:30 [Debug] Connection id ""0HL75B02EII00"" completed keep alive response. +2017-08-17 15:43:16.826 +05:30 [Debug] Connection id ""0HL75B02EII00"" received FIN. +2017-08-17 15:43:16.826 +05:30 [Debug] Connection id ""0HL75B02EII01"" received FIN. +2017-08-17 15:43:16.829 +05:30 [Debug] Connection id ""0HL75B02EII00"" disconnecting. +2017-08-17 15:43:16.831 +05:30 [Debug] Connection id ""0HL75B02EII01"" disconnecting. +2017-08-17 15:43:16.838 +05:30 [Debug] Connection id ""0HL75B02EII00"" sending FIN. +2017-08-17 15:43:16.838 +05:30 [Debug] Connection id ""0HL75B02EII01"" sending FIN. +2017-08-17 15:43:16.847 +05:30 [Debug] Connection id ""0HL75B02EII00"" sent FIN with status "0". +2017-08-17 15:43:16.847 +05:30 [Debug] Connection id ""0HL75B02EII01"" sent FIN with status "0". +2017-08-17 15:43:16.850 +05:30 [Debug] Connection id ""0HL75B02EII00"" stopped. +2017-08-17 15:43:16.850 +05:30 [Debug] Connection id ""0HL75B02EII01"" stopped. +2017-08-17 15:44:51.648 +05:30 [Debug] Connection id ""0HL75B02EII02"" started. +2017-08-17 15:44:51.662 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:44:51.664 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:44:51.672 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:44:54.827 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:44:54.832 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:44:54.833 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:44:54.834 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:44:54.836 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3155.2136ms +2017-08-17 15:44:54.843 +05:30 [Information] Request finished in 3192.5251ms 200 application/json; charset=utf-8 +2017-08-17 15:44:54.844 +05:30 [Debug] Connection id ""0HL75B02EII02"" completed keep alive response. +2017-08-17 15:44:54.853 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:44:54.860 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:44:54.862 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:44:57.910 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:44:57.915 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:44:57.917 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:44:57.918 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3053.62ms +2017-08-17 15:44:57.921 +05:30 [Information] Request finished in 3068.8172ms 400 +2017-08-17 15:44:57.921 +05:30 [Debug] Connection id ""0HL75B02EII02"" completed keep alive response. +2017-08-17 15:46:52.041 +05:30 [Debug] Connection id ""0HL75B02EII03"" started. +2017-08-17 15:46:52.041 +05:30 [Debug] Connection id ""0HL75B02EII02"" received FIN. +2017-08-17 15:46:52.051 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:46:52.060 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:46:52.061 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:46:52.200 +05:30 [Debug] Connection id ""0HL75B02EII02"" disconnecting. +2017-08-17 15:46:52.213 +05:30 [Debug] Connection id ""0HL75B02EII02"" sending FIN. +2017-08-17 15:46:52.213 +05:30 [Debug] Connection id ""0HL75B02EII02"" sent FIN with status "0". +2017-08-17 15:46:52.214 +05:30 [Debug] Connection id ""0HL75B02EII02"" stopped. +2017-08-17 15:46:55.446 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:46:55.451 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:46:55.451 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:46:55.452 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:46:55.455 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3391.3802ms +2017-08-17 15:46:55.459 +05:30 [Information] Request finished in 3414.8967ms 200 application/json; charset=utf-8 +2017-08-17 15:46:55.460 +05:30 [Debug] Connection id ""0HL75B02EII03"" completed keep alive response. +2017-08-17 15:46:55.523 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:46:55.524 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:46:55.525 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:46:58.642 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:46:58.648 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:46:58.649 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:46:58.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:46:58.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3138.2628ms +2017-08-17 15:46:58.677 +05:30 [Information] Request finished in 3152.035ms 200 application/json; charset=utf-8 +2017-08-17 15:46:58.678 +05:30 [Debug] Connection id ""0HL75B02EII03"" completed keep alive response. +2017-08-17 15:46:58.724 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:46:58.725 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:46:58.726 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:47:01.761 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:47:01.766 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:47:01.767 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:47:01.768 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:47:01.770 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3042.4195ms +2017-08-17 15:47:01.774 +05:30 [Information] Request finished in 3053.8342ms 200 application/json; charset=utf-8 +2017-08-17 15:47:01.774 +05:30 [Debug] Connection id ""0HL75B02EII03"" completed keep alive response. +2017-08-17 15:47:01.785 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:47:01.787 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:47:01.790 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:47:03.885 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:47:03.889 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:47:03.891 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:47:03.892 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2095.6148ms +2017-08-17 15:47:03.894 +05:30 [Information] Request finished in 2110.7606ms 400 +2017-08-17 15:47:03.895 +05:30 [Debug] Connection id ""0HL75B02EII03"" completed keep alive response. +2017-08-17 15:49:16.825 +05:30 [Debug] Connection id ""0HL75B02EII03"" received FIN. +2017-08-17 15:49:16.826 +05:30 [Debug] Connection id ""0HL75B02EII03"" disconnecting. +2017-08-17 15:49:16.827 +05:30 [Debug] Connection id ""0HL75B02EII03"" sending FIN. +2017-08-17 15:49:16.828 +05:30 [Debug] Connection id ""0HL75B02EII03"" sent FIN with status "0". +2017-08-17 15:49:16.828 +05:30 [Debug] Connection id ""0HL75B02EII03"" stopped. +2017-08-17 15:56:50.362 +05:30 [Debug] Hosting starting +2017-08-17 15:56:50.881 +05:30 [Debug] Hosting started +2017-08-17 15:56:50.911 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" started. +2017-08-17 15:56:50.915 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" started. +2017-08-17 15:56:51.778 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 15:56:51.809 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 15:56:51.987 +05:30 [Information] Request finished in 373.3313ms 200 +2017-08-17 15:56:52.104 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" completed keep alive response. +2017-08-17 15:56:53.660 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 15:56:53.777 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"c7adef6f-d5f7-4bac-ab5d-f40b52355e87"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 15:56:54.617 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 15:56:54.970 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 15:56:54.976 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 15:56:55.034 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:56:55.049 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:56:55.055 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:56:55.613 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 926.5581ms +2017-08-17 15:56:55.750 +05:30 [Information] Request finished in 4218.0223ms 200 application/json; charset=utf-8 +2017-08-17 15:56:55.754 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" completed keep alive response. +2017-08-17 15:57:07.391 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:57:07.392 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:57:07.394 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:57:10.684 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:57:15.983 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:57:16.001 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:57:16.002 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:57:16.133 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 8737.3783ms +2017-08-17 15:57:16.136 +05:30 [Information] Request finished in 8762.315ms 200 application/json; charset=utf-8 +2017-08-17 15:57:16.137 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" completed keep alive response. +2017-08-17 15:57:16.810 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 15:57:16.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 15:57:16.820 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 15:57:20.025 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 15:57:20.099 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 15:57:20.114 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 15:57:20.116 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3284.928ms +2017-08-17 15:57:20.118 +05:30 [Information] Request finished in 3314.5688ms 400 +2017-08-17 15:57:20.120 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" completed keep alive response. +2017-08-17 15:57:51.694 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 15:57:51.695 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 15:57:51.699 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 15:57:54.832 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 15:57:55.151 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 15:57:55.168 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 15:57:55.173 +05:30 [Error] Duplicate entry 'Socioboard-9' for key 'GroupName_AdminId' +2017-08-17 15:57:55.177 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 15:58:01.676 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:58:01.677 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 15:58:01.677 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 15:58:01.678 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:58:01.681 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 9980.4116ms +2017-08-17 15:58:01.684 +05:30 [Information] Request finished in 9993.7779ms 200 text/plain; charset=utf-8 +2017-08-17 15:58:01.685 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" completed keep alive response. +2017-08-17 15:58:01.934 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 15:58:01.937 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 15:58:01.950 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 15:58:05.081 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 15:58:05.084 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:58:05.085 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:58:05.086 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:58:05.088 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3136.2562ms +2017-08-17 15:58:05.091 +05:30 [Information] Request finished in 3157.7376ms 200 application/json; charset=utf-8 +2017-08-17 15:58:05.092 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" completed keep alive response. +2017-08-17 15:58:05.122 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 15:58:05.122 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 15:58:05.123 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 15:58:07.225 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 15:58:07.234 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:58:07.235 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:58:07.237 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:58:07.305 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 2175.7471ms +2017-08-17 15:58:07.309 +05:30 [Information] Request finished in 2187.0546ms 200 application/json; charset=utf-8 +2017-08-17 15:58:07.310 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" completed keep alive response. +2017-08-17 15:58:07.471 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 15:58:07.472 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 15:58:07.475 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 15:58:09.613 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 15:58:09.625 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 15:58:09.626 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 15:58:09.629 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 15:58:09.647 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 2160.5275ms +2017-08-17 15:58:09.650 +05:30 [Information] Request finished in 2187.2463ms 200 application/json; charset=utf-8 +2017-08-17 15:58:09.651 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" completed keep alive response. +2017-08-17 16:00:50.885 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" received FIN. +2017-08-17 16:00:50.886 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" received FIN. +2017-08-17 16:00:50.888 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" disconnecting. +2017-08-17 16:00:50.893 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" sending FIN. +2017-08-17 16:00:50.902 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" sent FIN with status "0". +2017-08-17 16:00:50.926 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" disconnecting. +2017-08-17 16:00:50.928 +05:30 [Debug] Connection id ""0HL75B9SIRA6O"" stopped. +2017-08-17 16:00:50.931 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" sending FIN. +2017-08-17 16:00:50.931 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" sent FIN with status "0". +2017-08-17 16:00:50.932 +05:30 [Debug] Connection id ""0HL75B9SIRA6N"" stopped. +2017-08-17 17:57:58.339 +05:30 [Debug] Hosting starting +2017-08-17 17:57:58.707 +05:30 [Debug] Hosting started +2017-08-17 17:57:58.807 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" started. +2017-08-17 17:57:58.807 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" started. +2017-08-17 17:57:59.043 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 17:57:59.043 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 17:57:59.130 +05:30 [Information] Request finished in 143.5515ms 200 +2017-08-17 17:57:59.205 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" completed keep alive response. +2017-08-17 17:58:00.191 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 17:58:00.294 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"3cacae6c-2086-4cb5-b81a-472f1cd46697"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 17:58:00.523 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 17:58:00.668 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 17:58:00.673 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 17:58:00.734 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 17:58:00.746 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 17:58:00.751 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 17:58:01.495 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 915.6138ms +2017-08-17 17:58:01.664 +05:30 [Information] Request finished in 2690.6377ms 200 application/json; charset=utf-8 +2017-08-17 17:58:01.668 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" completed keep alive response. +2017-08-17 17:58:16.234 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 17:58:16.236 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 17:58:16.239 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 17:58:18.838 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 17:58:23.266 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 17:58:23.272 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 17:58:23.274 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 17:58:23.415 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7157.3741ms +2017-08-17 17:58:23.419 +05:30 [Information] Request finished in 7187.3019ms 200 application/json; charset=utf-8 +2017-08-17 17:58:23.420 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" completed keep alive response. +2017-08-17 17:58:24.070 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 17:58:24.070 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 17:58:24.072 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 17:58:27.196 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 17:58:27.255 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 17:58:27.270 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 17:58:27.271 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3198.5174ms +2017-08-17 17:58:27.274 +05:30 [Information] Request finished in 3204.9966ms 400 +2017-08-17 17:58:27.275 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" completed keep alive response. +2017-08-17 17:59:58.777 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" received FIN. +2017-08-17 17:59:58.777 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" received FIN. +2017-08-17 17:59:58.783 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" disconnecting. +2017-08-17 17:59:58.792 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" sending FIN. +2017-08-17 17:59:58.800 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" disconnecting. +2017-08-17 17:59:58.804 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" sending FIN. +2017-08-17 17:59:58.808 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" sent FIN with status "0". +2017-08-17 17:59:58.808 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" sent FIN with status "0". +2017-08-17 17:59:58.820 +05:30 [Debug] Connection id ""0HL75DDIISEJT"" stopped. +2017-08-17 17:59:58.820 +05:30 [Debug] Connection id ""0HL75DDIISEJS"" stopped. +2017-08-17 18:00:51.643 +05:30 [Debug] Connection id ""0HL75DDIISEJU"" started. +2017-08-17 18:00:51.648 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 18:00:51.651 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 18:00:51.661 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 18:00:54.800 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 18:00:55.148 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 18:00:55.169 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 18:00:55.174 +05:30 [Error] Duplicate entry 'Socioboard-10' for key 'GroupName_AdminId' +2017-08-17 18:00:55.177 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 18:01:00.341 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:01:00.343 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 18:01:00.343 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 18:01:00.346 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:01:00.355 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 8687.246ms +2017-08-17 18:01:00.358 +05:30 [Information] Request finished in 8713.6397ms 200 text/plain; charset=utf-8 +2017-08-17 18:01:00.359 +05:30 [Debug] Connection id ""0HL75DDIISEJU"" completed keep alive response. +2017-08-17 18:01:00.794 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:01:00.795 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:01:00.797 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:01:03.854 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:01:03.860 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:01:03.861 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:01:03.862 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:01:03.867 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3065.6039ms +2017-08-17 18:01:03.870 +05:30 [Information] Request finished in 3076.8319ms 200 application/json; charset=utf-8 +2017-08-17 18:01:03.870 +05:30 [Debug] Connection id ""0HL75DDIISEJU"" completed keep alive response. +2017-08-17 18:01:03.934 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 18:01:03.935 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 18:01:03.936 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 18:01:06.993 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 18:01:06.999 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:01:07.000 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:01:07.001 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:01:07.030 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3091.8526ms +2017-08-17 18:01:07.032 +05:30 [Information] Request finished in 3112.2071ms 200 application/json; charset=utf-8 +2017-08-17 18:01:07.032 +05:30 [Debug] Connection id ""0HL75DDIISEJU"" completed keep alive response. +2017-08-17 18:01:07.124 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 18:01:07.124 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 18:01:07.125 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 18:01:10.164 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 18:01:10.173 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:01:10.176 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:01:10.178 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:01:10.182 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3054.5434ms +2017-08-17 18:01:10.185 +05:30 [Information] Request finished in 3060.6366ms 200 application/json; charset=utf-8 +2017-08-17 18:01:10.185 +05:30 [Debug] Connection id ""0HL75DDIISEJU"" completed keep alive response. +2017-08-17 18:02:08.673 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/UpgradeAccount application/x-www-form-urlencoded 343 +2017-08-17 18:02:08.675 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/UpgradeAccount"'. +2017-08-17 18:02:08.678 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" +2017-08-17 18:02:15.092 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" with arguments (["10", "4.99", "avinash verma", "sonupandey@globussoft.in", "paypal", "76363d4eb4cd7e382af3", "I-69V4REHK1WU7", "Standard", "1/1/0001 00:00:00", "talktosaurabhkr@gmail.com", "Saurabh Kumar", "Completed", "Standard", "windows-1252"]) - ModelState is Invalid +2017-08-17 18:34:27.009 +05:30 [Debug] Hosting starting +2017-08-17 18:34:27.359 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" started. +2017-08-17 18:34:27.368 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" started. +2017-08-17 18:34:27.443 +05:30 [Debug] Hosting started +2017-08-17 18:34:27.944 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 18:34:27.963 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 18:34:28.098 +05:30 [Information] Request finished in 319.495ms 200 +2017-08-17 18:34:28.169 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" completed keep alive response. +2017-08-17 18:34:30.090 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 18:34:30.145 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"46b2cd5b-4fa5-44aa-b9b7-f557c3738fb7"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 18:34:30.422 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 18:34:30.580 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 18:34:30.596 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 18:34:30.656 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 18:34:30.663 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:34:30.680 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:34:31.232 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 702.1319ms +2017-08-17 18:34:31.385 +05:30 [Information] Request finished in 3678.9916ms 200 application/json; charset=utf-8 +2017-08-17 18:34:31.388 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" completed keep alive response. +2017-08-17 18:34:45.869 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:34:45.871 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:34:45.875 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:34:49.883 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:34:54.869 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:34:54.882 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:34:54.883 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:34:55.052 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 9174.6881ms +2017-08-17 18:34:55.056 +05:30 [Information] Request finished in 9197.2484ms 200 application/json; charset=utf-8 +2017-08-17 18:34:55.056 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" completed keep alive response. +2017-08-17 18:34:55.706 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 18:34:55.709 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 18:34:55.711 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 18:34:58.437 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 18:34:58.520 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 18:34:58.789 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 18:34:58.910 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3076.8147ms +2017-08-17 18:34:59.025 +05:30 [Information] Request finished in 3270.0397ms 400 +2017-08-17 18:34:59.026 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" completed keep alive response. +2017-08-17 18:35:40.113 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 169 +2017-08-17 18:35:40.116 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 18:35:40.117 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 18:35:43.278 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 18:35:46.608 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:35:46.608 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 18:35:46.609 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 18:35:46.609 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:35:46.615 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6494.4401ms +2017-08-17 18:35:46.618 +05:30 [Information] Request finished in 6505.5807ms 200 text/plain; charset=utf-8 +2017-08-17 18:35:46.619 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" completed keep alive response. +2017-08-17 18:35:46.811 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:35:46.812 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:35:46.814 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:35:49.855 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:35:49.858 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:35:49.859 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:35:49.860 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:35:49.863 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3045.4868ms +2017-08-17 18:35:49.865 +05:30 [Information] Request finished in 3052.9649ms 200 application/json; charset=utf-8 +2017-08-17 18:35:49.866 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" completed keep alive response. +2017-08-17 18:35:49.907 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 18:35:49.908 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 18:35:49.922 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 18:35:52.965 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 18:35:52.971 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:35:52.972 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:35:52.973 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:35:53.003 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3079.3993ms +2017-08-17 18:35:53.006 +05:30 [Information] Request finished in 3103.2664ms 200 application/json; charset=utf-8 +2017-08-17 18:35:53.007 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" completed keep alive response. +2017-08-17 18:35:53.085 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 18:35:53.086 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 18:35:53.087 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 18:35:56.143 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 18:35:56.156 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:35:56.157 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:35:56.167 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:35:56.176 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3082.1753ms +2017-08-17 18:35:56.189 +05:30 [Information] Request finished in 3104.1844ms 200 application/json; charset=utf-8 +2017-08-17 18:35:56.191 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" completed keep alive response. +2017-08-17 18:37:31.868 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" received FIN. +2017-08-17 18:37:31.869 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" received FIN. +2017-08-17 18:37:31.870 +05:30 [Debug] Connection id ""0HL75E1UQI60J"" started. +2017-08-17 18:37:31.873 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" disconnecting. +2017-08-17 18:37:31.875 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" sending FIN. +2017-08-17 18:37:31.875 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" disconnecting. +2017-08-17 18:37:31.876 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" sending FIN. +2017-08-17 18:37:31.888 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/UpgradeAccount application/x-www-form-urlencoded 343 +2017-08-17 18:37:31.889 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/UpgradeAccount"'. +2017-08-17 18:37:31.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" +2017-08-17 18:37:31.896 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" sent FIN with status "0". +2017-08-17 18:37:31.897 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" sent FIN with status "0". +2017-08-17 18:37:31.907 +05:30 [Debug] Connection id ""0HL75E1UQI60H"" stopped. +2017-08-17 18:37:31.907 +05:30 [Debug] Connection id ""0HL75E1UQI60I"" stopped. +2017-08-17 18:37:34.953 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" with arguments (["11", "4.99", "avinash verma", "sonupandey@globussoft.in", "paypal", "bcf2ca90b6b997279358", "I-71V9A18RURDU", "Standard", "1/1/0001 00:00:00", "talktosaurabhkr@gmail.com", "Saurabh Kumar", "Completed", "Standard", "windows-1252"]) - ModelState is Invalid +2017-08-17 18:38:17.293 +05:30 [Debug] Connection id ""0HL75E1UQI60K"" started. +2017-08-17 18:38:17.299 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/UpgradeAccount application/x-www-form-urlencoded 339 +2017-08-17 18:38:17.301 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/UpgradeAccount"'. +2017-08-17 18:38:17.301 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" +2017-08-17 18:38:19.898 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:38:19.899 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:38:19.902 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:38:19.904 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" in 48008.4997ms +2017-08-17 18:38:19.907 +05:30 [Information] Request finished in 48027.7838ms 200 application/json; charset=utf-8 +2017-08-17 18:38:19.908 +05:30 [Debug] Connection id ""0HL75E1UQI60J"" completed keep alive response. +2017-08-17 18:38:19.914 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=11 +2017-08-17 18:38:19.916 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-08-17 18:38:19.918 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-08-17 18:38:20.359 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" with arguments (["11", "4.99", "avinash verma", "sonupandey@globussoft.in", "paypal", "91dea63c055903ff6b41", "I-71V9A18RURDU", "Standard", "8/17/2017 06:07:07", "talktosaurabhkr@gmail.com", "Saurabh Kumar", "Completed", "Standard", "windows-1252"]) - ModelState is Valid +2017-08-17 18:38:35.482 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["11"]) - ModelState is Valid +2017-08-17 18:38:35.493 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:38:35.496 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:38:35.506 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:38:35.512 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 15588.5575ms +2017-08-17 18:38:35.516 +05:30 [Information] Request finished in 15600.5775ms 200 application/json; charset=utf-8 +2017-08-17 18:38:35.517 +05:30 [Debug] Connection id ""0HL75E1UQI60J"" completed keep alive response. +2017-08-17 18:38:38.455 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:38:38.457 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:38:38.461 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:38:38.467 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" in 21160.4745ms +2017-08-17 18:38:38.474 +05:30 [Information] Request finished in 21172.3345ms 200 application/json; charset=utf-8 +2017-08-17 18:38:38.474 +05:30 [Debug] Connection id ""0HL75E1UQI60K"" completed keep alive response. +2017-08-17 18:38:38.494 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=11 +2017-08-17 18:38:38.498 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-08-17 18:38:38.500 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-08-17 18:47:52.355 +05:30 [Debug] Hosting starting +2017-08-17 18:47:52.639 +05:30 [Debug] Hosting started +2017-08-17 18:47:52.705 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" started. +2017-08-17 18:47:52.716 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" started. +2017-08-17 18:47:53.340 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/values +2017-08-17 18:47:53.349 +05:30 [Information] Request starting HTTP/1.1 DEBUG http://localhost:6361/ 0 +2017-08-17 18:47:53.556 +05:30 [Information] Request finished in 307.2397ms 200 +2017-08-17 18:47:53.626 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" completed keep alive response. +2017-08-17 18:47:54.708 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/Values"'. +2017-08-17 18:47:54.769 +05:30 [Debug] Action '"Api.Socioboard.Controllers.ValuesController.Post (Api.Socioboard)"' with id '"1ab54abe-1498-4b8f-bd09-940266429aa7"' did not match the constraint '"Microsoft.AspNetCore.Mvc.Internal.HttpMethodActionConstraint"' +2017-08-17 18:47:55.435 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" +2017-08-17 18:47:55.601 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" with arguments (null) - ModelState is Valid +2017-08-17 18:47:55.623 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.ObjectResult". +2017-08-17 18:47:55.715 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 18:47:55.726 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:47:55.874 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:47:56.328 +05:30 [Information] Executed action "Api.Socioboard.Controllers.ValuesController.Get (Api.Socioboard)" in 878.6104ms +2017-08-17 18:47:56.467 +05:30 [Information] Request finished in 3275.1706ms 200 application/json; charset=utf-8 +2017-08-17 18:47:56.470 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" completed keep alive response. +2017-08-17 18:48:09.935 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:48:09.941 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:48:09.945 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:48:13.566 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:48:17.649 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:48:17.654 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:48:17.660 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:48:17.795 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 7845.3763ms +2017-08-17 18:48:17.798 +05:30 [Information] Request finished in 7865.8162ms 200 application/json; charset=utf-8 +2017-08-17 18:48:17.798 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" completed keep alive response. +2017-08-17 18:48:18.357 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 18:48:18.357 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 18:48:18.359 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 18:48:21.511 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 18:48:21.558 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 18:48:21.567 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 18:48:21.568 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 3206.5103ms +2017-08-17 18:48:21.571 +05:30 [Information] Request finished in 3213.0948ms 400 +2017-08-17 18:48:21.571 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" completed keep alive response. +2017-08-17 18:49:52.692 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" received FIN. +2017-08-17 18:49:52.697 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" disconnecting. +2017-08-17 18:49:52.698 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" received FIN. +2017-08-17 18:49:52.701 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" disconnecting. +2017-08-17 18:49:52.702 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" sending FIN. +2017-08-17 18:49:52.710 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" sent FIN with status "0". +2017-08-17 18:49:52.713 +05:30 [Debug] Connection id ""0HL75E9EQTVSO"" stopped. +2017-08-17 18:49:52.700 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" sending FIN. +2017-08-17 18:49:52.714 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" sent FIN with status "0". +2017-08-17 18:49:52.714 +05:30 [Debug] Connection id ""0HL75E9EQTVSP"" stopped. +2017-08-17 18:51:10.584 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" started. +2017-08-17 18:51:10.621 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/user/Register application/x-www-form-urlencoded; charset=UTF-8 167 +2017-08-17 18:51:10.628 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/Register"'. +2017-08-17 18:51:10.631 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" +2017-08-17 18:51:13.868 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" with arguments (["Domain.Socioboard.Models.User"]) - ModelState is Valid +2017-08-17 18:51:14.187 +05:30 [Fatal] could not insert: [Domain.Socioboard.Models.Groups#0][SQL: INSERT INTO Groups (groupName, createdDate, adminId, id) VALUES (?, ?, ?, ?)] +2017-08-17 18:51:14.208 +05:30 [Error] at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Object obj, ISessionImplementor session) + at NHibernate.Action.EntityInsertAction.Execute() + at NHibernate.Engine.ActionQueue.Execute(IExecutable executable) + at NHibernate.Engine.ActionQueue.ExecuteActions(IList list) + at NHibernate.Engine.ActionQueue.ExecuteActions() + at NHibernate.Event.Default.AbstractFlushingEventListener.PerformExecutions(IEventSource session) + at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event) + at NHibernate.Impl.SessionImpl.Flush() + at NHibernate.Transaction.AdoTransaction.Commit() + at Api.Socioboard.Model.DatabaseRepository.Add[T](T item) in E:\D DRIVE\bitbucket\Updated\socioboardUpdated18072017\src\Api.Socioboard\Model\DatabaseRepository.cs:line 254 +2017-08-17 18:51:14.209 +05:30 [Error] Duplicate entry 'Socioboard-12' for key 'GroupName_AdminId' +2017-08-17 18:51:14.211 +05:30 [Error] at MySql.Data.MySqlClient.MySqlStream.ReadPacket() + at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId) + at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force) + at MySql.Data.MySqlClient.MySqlDataReader.NextResult() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior) + at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader() + at MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery() + at NHibernate.AdoNet.AbstractBatcher.ExecuteNonQuery(IDbCommand cmd) + at NHibernate.AdoNet.NonBatchingBatcher.AddToBatch(IExpectation expectation) + at NHibernate.Persister.Entity.AbstractEntityPersister.Insert(Object id, Object[] fields, Boolean[] notNull, Int32 j, SqlCommandInfo sql, Object obj, ISessionImplementor session) +2017-08-17 18:51:17.055 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:51:17.056 +05:30 [Debug] No information found on request to perform content negotiation. +2017-08-17 18:51:17.056 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"text/plain; charset=utf-8"' to write the response. +2017-08-17 18:51:17.057 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:51:17.060 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.Register (Api.Socioboard)" in 6421.2031ms +2017-08-17 18:51:17.063 +05:30 [Information] Request finished in 6472.8497ms 200 text/plain; charset=utf-8 +2017-08-17 18:51:17.063 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" completed keep alive response. +2017-08-17 18:51:17.324 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:51:17.330 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:51:17.333 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:51:20.431 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:51:20.435 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:51:20.435 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:51:20.436 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:51:20.439 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3103.7712ms +2017-08-17 18:51:20.442 +05:30 [Information] Request finished in 3119.2101ms 200 application/json; charset=utf-8 +2017-08-17 18:51:20.444 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" completed keep alive response. +2017-08-17 18:51:20.497 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUserData?emailId=sonupandey@globussoft.in +2017-08-17 18:51:20.497 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUserData"'. +2017-08-17 18:51:20.510 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" +2017-08-17 18:51:23.558 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" with arguments (["sonupandey@globussoft.in"]) - ModelState is Valid +2017-08-17 18:51:23.565 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:51:23.565 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:51:23.566 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:51:23.611 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUserData (Api.Socioboard)" in 3098.8083ms +2017-08-17 18:51:23.613 +05:30 [Information] Request finished in 3136.8015ms 200 application/json; charset=utf-8 +2017-08-17 18:51:23.614 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" completed keep alive response. +2017-08-17 18:51:23.721 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/GetPackage application/x-www-form-urlencoded 20 +2017-08-17 18:51:23.722 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/GetPackage"'. +2017-08-17 18:51:23.724 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" +2017-08-17 18:51:26.812 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" with arguments (["Standard"]) - ModelState is Valid +2017-08-17 18:51:26.822 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:51:26.823 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:51:26.831 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:51:26.840 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.GetPackage (Api.Socioboard)" in 3109.2258ms +2017-08-17 18:51:26.846 +05:30 [Information] Request finished in 3128.9701ms 200 application/json; charset=utf-8 +2017-08-17 18:51:26.848 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" completed keep alive response. +2017-08-17 18:53:03.746 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" started. +2017-08-17 18:53:03.748 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" received FIN. +2017-08-17 18:53:03.758 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/PaymentTransaction/UpgradeAccount application/x-www-form-urlencoded 338 +2017-08-17 18:53:03.758 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" disconnecting. +2017-08-17 18:53:03.759 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" sending FIN. +2017-08-17 18:53:03.760 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" sent FIN with status "0". +2017-08-17 18:53:03.759 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/PaymentTransaction/UpgradeAccount"'. +2017-08-17 18:53:03.760 +05:30 [Debug] Connection id ""0HL75E9EQTVSQ"" stopped. +2017-08-17 18:53:03.763 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" +2017-08-17 18:53:06.850 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" with arguments (["12", "4.99", "sonu pandey", "sonupandey@globussoft.in", "paypal", "22188ad7439fa70d7f89", "I-VS7C66G3BSY8", "Standard", "8/17/2017 06:22:46", "talktosaurabhkr@gmail.com", "Saurabh Kumar", "Completed", "Standard", "windows-1252"]) - ModelState is Valid +2017-08-17 18:53:19.573 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:53:19.574 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.StringOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:53:19.576 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:53:19.581 +05:30 [Information] Executed action "Api.Socioboard.Controllers.PaymentTransactionController.UpgradeAccount (Api.Socioboard)" in 15812.8579ms +2017-08-17 18:53:19.585 +05:30 [Information] Request finished in 15834.6074ms 200 application/json; charset=utf-8 +2017-08-17 18:53:19.586 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" completed keep alive response. +2017-08-17 18:53:19.604 +05:30 [Information] Request starting HTTP/1.1 GET http://localhost:6361/api/User/GetUser?Id=12 +2017-08-17 18:53:19.607 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/GetUser"'. +2017-08-17 18:53:19.609 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" +2017-08-17 18:53:22.654 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" with arguments (["12"]) - ModelState is Valid +2017-08-17 18:53:22.659 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:53:22.660 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:53:22.662 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:53:22.666 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.GetUser (Api.Socioboard)" in 3053.7846ms +2017-08-17 18:53:22.672 +05:30 [Information] Request finished in 3071.2429ms 200 application/json; charset=utf-8 +2017-08-17 18:53:22.672 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" completed keep alive response. +2017-08-17 18:53:23.891 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/checksociorevtoken application/x-www-form-urlencoded 24 +2017-08-17 18:53:23.892 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/checksociorevtoken"'. +2017-08-17 18:53:23.892 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" +2017-08-17 18:53:27.112 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" with arguments (["8d4dee634a2956f"]) - ModelState is Valid +2017-08-17 18:53:27.116 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.OkObjectResult". +2017-08-17 18:53:27.117 +05:30 [Debug] Selected output formatter '"Microsoft.AspNetCore.Mvc.Formatters.JsonOutputFormatter"' and content type '"application/json"' to write the response. +2017-08-17 18:53:27.118 +05:30 [Information] Executing ObjectResult, writing value "Microsoft.AspNetCore.Mvc.ControllerContext". +2017-08-17 18:53:27.120 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.checksociorevtoken (Api.Socioboard)" in 3226.0765ms +2017-08-17 18:53:27.122 +05:30 [Information] Request finished in 3232.7649ms 200 application/json; charset=utf-8 +2017-08-17 18:53:27.123 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" completed keep alive response. +2017-08-17 18:53:27.127 +05:30 [Information] Request starting HTTP/1.1 POST http://localhost:6361/api/User/CheckUserLogin application/x-www-form-urlencoded 79 +2017-08-17 18:53:27.128 +05:30 [Debug] Request successfully matched the route with name 'null' and template '"api/User/CheckUserLogin"'. +2017-08-17 18:53:27.129 +05:30 [Debug] Executing action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" +2017-08-17 18:53:29.243 +05:30 [Information] Executing action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" with arguments (["Domain.Socioboard.ViewModels.UserLoginViewModel"]) - ModelState is Valid +2017-08-17 18:53:29.248 +05:30 [Debug] Executed action method "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)", returned result "Microsoft.AspNetCore.Mvc.BadRequestResult". +2017-08-17 18:53:29.256 +05:30 [Information] Executing HttpStatusCodeResult, setting HTTP status code 400 +2017-08-17 18:53:29.258 +05:30 [Information] Executed action "Api.Socioboard.Controllers.UserController.CheckUserLogin (Api.Socioboard)" in 2127.7303ms +2017-08-17 18:53:29.262 +05:30 [Information] Request finished in 2134.4754ms 400 +2017-08-17 18:53:29.262 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" completed keep alive response. +2017-08-17 18:55:52.671 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" received FIN. +2017-08-17 18:55:52.672 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" disconnecting. +2017-08-17 18:55:52.672 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" sending FIN. +2017-08-17 18:55:52.672 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" sent FIN with status "0". +2017-08-17 18:55:52.673 +05:30 [Debug] Connection id ""0HL75E9EQTVSR"" stopped. diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/84FIK20JJ5.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/84FIK20JJ5.jpg new file mode 100644 index 000000000..c4c7a9f69 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/84FIK20JJ5.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/A3J8J72OC3.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/A3J8J72OC3.jpg new file mode 100644 index 000000000..c4c7a9f69 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/A3J8J72OC3.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/AQ61V1856Q.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/AQ61V1856Q.jpg new file mode 100644 index 000000000..706ce4938 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/AQ61V1856Q.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/EPIFVU1CPO.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/EPIFVU1CPO.jpg new file mode 100644 index 000000000..706ce4938 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/EPIFVU1CPO.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/FMWMT3A9EF.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/FMWMT3A9EF.jpg new file mode 100644 index 000000000..38a558b65 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/FMWMT3A9EF.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/HSW9I0ZF8M.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/HSW9I0ZF8M.jpg new file mode 100644 index 000000000..1ccc630e6 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/HSW9I0ZF8M.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/K16P4ZUIYD.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/K16P4ZUIYD.jpg new file mode 100644 index 000000000..38a558b65 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/K16P4ZUIYD.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/LA7ST3NC95.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/LA7ST3NC95.jpg new file mode 100644 index 000000000..706ce4938 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/LA7ST3NC95.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/M790S8Z0JU.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/M790S8Z0JU.jpg new file mode 100644 index 000000000..c4c7a9f69 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/M790S8Z0JU.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/MNDY1WGK63.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/MNDY1WGK63.jpg new file mode 100644 index 000000000..706ce4938 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/MNDY1WGK63.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/MY4V0XJSWT.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/MY4V0XJSWT.jpg new file mode 100644 index 000000000..1ccc630e6 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/MY4V0XJSWT.jpg differ diff --git a/src/Api.Socioboard/wwwroot/upload/UserImages/SU46E50KPS.jpg b/src/Api.Socioboard/wwwroot/upload/UserImages/SU46E50KPS.jpg new file mode 100644 index 000000000..1ccc630e6 Binary files /dev/null and b/src/Api.Socioboard/wwwroot/upload/UserImages/SU46E50KPS.jpg differ diff --git a/src/Api.Socioboard/wwwroot/views/mailtemplates/GroupInvitation.html b/src/Api.Socioboard/wwwroot/views/mailtemplates/GroupInvitation.html index 26143af6e..9d59b2372 100644 --- a/src/Api.Socioboard/wwwroot/views/mailtemplates/GroupInvitation.html +++ b/src/Api.Socioboard/wwwroot/views/mailtemplates/GroupInvitation.html @@ -271,7 +271,7 @@ - Your friend has invited you to join their group in Socioboard. It makes collaboration easy and fast. + Your friend has invited you to join their team in Socioboard. It makes collaboration easy and fast. diff --git a/src/Domain.Socioboard/Interfaces/Repositories/IMongoRepository.cs b/src/Domain.Socioboard/Interfaces/Repositories/IMongoRepository.cs index a785a6ada..9d0a985da 100644 --- a/src/Domain.Socioboard/Interfaces/Repositories/IMongoRepository.cs +++ b/src/Domain.Socioboard/Interfaces/Repositories/IMongoRepository.cs @@ -17,6 +17,7 @@ public interface IMongoRepository Task Add(T item) where T : class, new(); void Add(IEnumerable items) where T : class, new(); Task> Find(Expression> query) where T : class, new(); + Task> FindAdvance(Expression> query) where T : class, new(); int Counts(Expression> query) where T : class, new(); } } diff --git a/src/Domain.Socioboard/Models/AssestLibrary.cs b/src/Domain.Socioboard/Models/AssestLibrary.cs new file mode 100644 index 000000000..a082cf00a --- /dev/null +++ b/src/Domain.Socioboard/Models/AssestLibrary.cs @@ -0,0 +1,19 @@ +using Domain.Socioboard.Enum; +using Domain.Socioboard.Interfaces.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + +namespace Domain.Socioboard.Models +{ + public class AssestLibrary + { + + public Int64 Id { get; set; } + public Int64 UserId { get; set; } + public DateTime? Imageuploadeddate { get; set; } + public string ImageName { get; set; } + public string ImagePath { get; set; } + public Int64 ImageSize { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/ImgLibrary.cs b/src/Domain.Socioboard/Models/ImgLibrary.cs new file mode 100644 index 000000000..43f143cb5 --- /dev/null +++ b/src/Domain.Socioboard/Models/ImgLibrary.cs @@ -0,0 +1,23 @@ +using Domain.Socioboard.Enum; +using Domain.Socioboard.Interfaces.Models; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + +namespace Domain.Socioboard.Models +{ + public class ImgLibrary + { + + public Int64 Id { get; set; } + public Int64 UserId { get; set; } + public DateTime? Imageuploadeddate { get; set; } + public string ImageName { get; set; } + public string ImagePath { get; set; } + public string LocalImagePath { get; set; } + public Int64 ImageSize { get; set; } + public string Tags { get; set; } + public string FolderType { get; set; } + + } +} diff --git a/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs b/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs new file mode 100644 index 000000000..35379b7a6 --- /dev/null +++ b/src/Domain.Socioboard/Models/Mongo/ContentFeedsShareathon.cs @@ -0,0 +1,55 @@ +using Domain.Socioboard.Enum; +using Domain.Socioboard.Helpers; +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Socioboard.Models.Mongo +{ + public class ContentFeedsShareathon + { + [BsonId] + [JsonConverter(typeof(ObjectIdConverter))] + public ObjectId Id { get; set; } + public string strId { get; set; } + public string FbPageId { get; set; } + public long UserId { get; set; } + public string postdescription { get; set; } + public AdvanceSearchpostType postType { get; set; } + public NetworkType networkType { get; set; } + public string postId { get; set; } + public string domainType { get; set; } + public string title { get; set; } + public string userName { get; set; } + public string videourl { get; set; } + public double postedTime { get; set; } + public string ImageUrl { get; set; } + public string postUrl { get; set; } + public long fbengagementCount { get; set; } + public long twtShareCount { get; set; } + public long linShareCount { get; set; } + public long gplusShareCount { get; set; } + public long pinShareCount { get; set; } + public long redditShareCount { get; set; } + public long totalShareCount { get; set; } + public long retweetCount { get; set; } + public long likeCount { get; set; } + public long repliesCount { get; set; } + public string linkedindescription { get; set; } + public string linkedinprofileurl { get; set; } + public int status { get; set; } + public virtual int Timeintervalminutes { get; set; } + + } + + public class postdata + { + public string fbuserIds { get; set; } + public int timeIntervals { get; set; } + public List shareData { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/Mongo/ContentShareDataId.cs b/src/Domain.Socioboard/Models/Mongo/ContentShareDataId.cs new file mode 100644 index 000000000..1f4ccf727 --- /dev/null +++ b/src/Domain.Socioboard/Models/Mongo/ContentShareDataId.cs @@ -0,0 +1,24 @@ +using Domain.Socioboard.Helpers; +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Socioboard.Models.Mongo +{ + public class ContentShareDataId + { + [BsonId] + [JsonConverter(typeof(ObjectIdConverter))] + public ObjectId Id { get; set; } + public string strId { get; set; } + public string FbPageId { get; set; } + public long UserId { get; set; } + public string postId { get; set; } + public string RequestForShare { get; set; } + public int status { get; set; } + } +} diff --git a/src/Domain.Socioboard/Models/TwitterMutualFans.cs b/src/Domain.Socioboard/Models/TwitterMutualFans.cs index 4c604d823..db013bfe1 100644 --- a/src/Domain.Socioboard/Models/TwitterMutualFans.cs +++ b/src/Domain.Socioboard/Models/TwitterMutualFans.cs @@ -10,5 +10,13 @@ public class TwitterMutualFans public string screen_name { get; set; } public string name { get; set; } + public string followers { get; set; } + public string following { get; set; } + public string location { get; set; } + + public string profile_image_url { get; set; } + public string description { get; set; } + + } } diff --git a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll index 92c338811..c28330833 100644 Binary files a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll and b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.dll differ diff --git a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb index c6196396b..06a03d2e4 100644 Binary files a/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb and b/src/Domain.Socioboard/bin/Debug/net451/Domain.Socioboard.pdb differ diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/AssestLibrary.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/AssestLibrary.hbm.xml new file mode 100644 index 000000000..8ebc27ebb --- /dev/null +++ b/src/Domain.Socioboard/compiler/resources/Mappings/AssestLibrary.hbm.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/compiler/resources/Mappings/ImgLibrary.hbm.xml b/src/Domain.Socioboard/compiler/resources/Mappings/ImgLibrary.hbm.xml new file mode 100644 index 000000000..e13f0d26f --- /dev/null +++ b/src/Domain.Socioboard/compiler/resources/Mappings/ImgLibrary.hbm.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache b/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache index 886ba5588..7837aef25 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache +++ b/src/Domain.Socioboard/obj/Debug/net451/.IncrementalCache @@ -1 +1 @@ -{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Consatants\\SocioboardConsts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsOfferAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdvanceSearchpostType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ArticlesAndBlogsTypes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\DemoPlantype.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\EwalletStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FacebookPagePromotion.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbPageSubscription.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FeedTableType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GPlusProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GroupMemberStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\NetworkType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PaymentType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PayPalAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBAccountType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBGroupUserStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBPaymentStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBRegistrationType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBUserActivationStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ScheduleStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SessionHistoryStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TaskStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TrendingType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TwitterMessageType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UrlShortener.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UserTrailStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ObjectIdConverter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\SBHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ThumbnailDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\UrlRSSfeedsNews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\ISocialProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\IUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IDatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\ISocialProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IUserRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\IEmailSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\ISmsSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AdsOffers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Affiliates.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AgencyUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Coupons.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DemoRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Discovery.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Draft.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DropboxAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\EwalletWithdrawRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookpage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\FeedBack.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\GoogleAnalyticsAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Googleplusaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupmembers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupprofiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groups.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Instagramaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\InstagramDiscoveryFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinCompanyPage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedInData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\NewsLetter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Package.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PaymentTransaction.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PinterestAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\RssFeedUrl.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ScheduledMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\SessionHistory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterFriendRelation.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterMutualFans.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterNameTable.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterRecentFollower.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\User.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\YoutubeChannel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupHashtagDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedInCompanyPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\AdvanceSerachData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ArticlesAndBlogs.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ElasticmailReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacaebookPageDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePromotionDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Fbpublicpagedailyreports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FbPublicPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GoogleAnalyticsReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupdailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupPostKeyWords.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramDailyReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramSelfFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramUserDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkedinCompanyPagePosts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFacebookHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFbTrendingFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwitterHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtTrendingFeeds .cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookPageReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFbPostComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGoogleplusComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGplusFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestBoard.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserPins.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDirectMessages.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\PageShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Rss.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContents.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContentsFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TaskComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Tasks.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Trendingkeyword.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterRecentDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterUrlMentions.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeVideoDetailsList.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Properties\\AssemblyInfo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Services\\AuthMessageSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\AnalyticsGraphViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\CommentViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\DiscoveryViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookFanAddsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookPublicReportViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsCityPageViews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TaskCommentsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TasksViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TwitterTopFansViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\UserLoginViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\YoutubeProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AdsOffers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Affiliates.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AgencyUser.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Coupons.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DemoRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Discovery.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Draft.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DropboxAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\EwalletWithdrawRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Facebookaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\FeedBack.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\GoogleAnalyticsAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Googleplusaccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Group.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupmembers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupprofiles.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Instagramaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinCompanyPage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\MongoBoards.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\NewsLetter.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Package.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PaymentTransaction.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PinterestAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\RssFeedUrl.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ScheduledMessage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\SessionHistory.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Training.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterNameTable.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\User.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\YoutubeChannel.hbm.xml"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.pdb"],"buildArguments":{"version-suffix":null}} \ No newline at end of file +{"inputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\project.lock.json","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Consatants\\SocioboardConsts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsOfferAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdsStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\AdvanceSearchpostType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ArticlesAndBlogsTypes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\DemoPlantype.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\EwalletStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FacebookPagePromotion.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbPageSubscription.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FbProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\FeedTableType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GPlusProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\GroupMemberStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\NetworkType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PaymentType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\PayPalAccountStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBAccountType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBGroupUserStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBPaymentStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBRegistrationType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SBUserActivationStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\ScheduleStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SessionHistoryStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\SocialProfileType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TaskStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TrendingType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\TwitterMessageType.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UrlShortener.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Enum\\UserTrailStatus.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ObjectIdConverter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\PluginProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\SBHelper.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\ThumbnailDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Helpers\\UrlRSSfeedsNews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\ISocialProfile.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Models\\IUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IDatabaseRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IMongoRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\ISocialProfilesRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Repositories\\IUserRepository.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\IEmailSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Interfaces\\Services\\ISmsSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AdsOffers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Affiliates.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AgencyUser.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\AssestLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Coupons.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DemoRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Discovery.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Draft.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\DropboxAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\EwalletWithdrawRequest.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Facebookpage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\FeedBack.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\GoogleAnalyticsAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Googleplusaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupmembers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groupprofiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Groups.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ImgLibrary.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Instagramaccounts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\InstagramDiscoveryFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedinCompanyPage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\LinkedInData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\NewsLetter.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Package.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PaymentTransaction.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\PinterestAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\RssFeedUrl.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\ScheduledMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\SessionHistory.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Training.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterAccount.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterFriendRelation.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterMutualFans.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterNameTable.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\TwitterRecentFollower.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\User.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\YoutubeChannel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupHashtagDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\FacebookGroupPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Listening\\LinkedInCompanyPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\AdvanceSerachData.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ArticlesAndBlogs.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentFeedsShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ContentShareDataId.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\ElasticmailReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacaebookPageDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FacebookPagePromotionDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Fbpublicpagedailyreports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\FbPublicPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GoogleAnalyticsReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupdailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupPostKeyWords.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\GroupShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramDailyReport.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramPostLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramSelfFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\InstagramUserDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkedinCompanyPagePosts.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\LinkShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFacebookHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardFbTrendingFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardGplusHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardInstagramHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoards.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwitterHashTag.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoBoardTwtTrendingFeeds .cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFacebookPageReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoFbPostComment.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGoogleplusComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoGplusFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestBoard.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowers.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserFollowings.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserLikes.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoPinterestUserPins.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDailyReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterDirectMessages.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoTwitterMessage.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\MongoYoutubeFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\PageShareathon.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Rss.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssFeed.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContents.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\RssNewsContentsFeeds.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonGroupPost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\SharethonPagePost.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TaskComments.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Tasks.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\Trendingkeyword.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterRecentDetails.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\TwitterUrlMentions.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeReports.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Models\\Mongo\\YoutubeVideoDetailsList.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Properties\\AssemblyInfo.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\Services\\AuthMessageSender.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\AnalyticsGraphViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\CommentViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\DiscoveryViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookFanAddsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\FacebookPublicReportViewModal.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsCityPageViews.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\GoogleAnalyticsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TaskCommentsViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TasksViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\TwitterTopFansViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\UserLoginViewModel.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\ViewModels\\YoutubeProfiles.cs","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AdsOffers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Affiliates.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AgencyUser.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\AssestLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Coupons.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DemoRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Discovery.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Draft.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\DropboxAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\EwalletWithdrawRequest.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Facebookaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\FeedBack.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\GoogleAnalyticsAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Googleplusaccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Group.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupmembers.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Groupprofiles.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ImgLibrary.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Instagramaccounts.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\LinkedinCompanyPage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\MongoBoards.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\NewsLetter.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Package.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PaymentTransaction.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\PinterestAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\RssFeedUrl.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\ScheduledMessage.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\SessionHistory.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\Training.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterAccount.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\TwitterNameTable.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\User.hbm.xml","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\compiler\\resources\\Mappings\\YoutubeChannel.hbm.xml"],"outputs":["E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.dll","E:\\D DRIVE\\socioboardgithub\\githubUpdated\\Socioboard-Core-3.0\\src\\Domain.Socioboard\\bin\\Debug\\net451\\Domain.Socioboard.pdb"],"buildArguments":{"version-suffix":null}} \ No newline at end of file diff --git a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp index 497f61753..bbac8f112 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp +++ b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile-csc.rsp @@ -52,6 +52,7 @@ -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AdsOffers.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AdsOffers.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Affiliates.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Affiliates.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AgencyUser.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AgencyUser.hbm.xml +-resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AssestLibrary.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AssestLibrary.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Coupons.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Coupons.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\DemoRequest.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.DemoRequest.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Discovery.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Discovery.hbm.xml @@ -65,6 +66,7 @@ -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Group.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Group.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Groupmembers.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Groupmembers.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Groupprofiles.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Groupprofiles.hbm.xml +-resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\ImgLibrary.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.ImgLibrary.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Instagramaccounts.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Instagramaccounts.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinAccount.hbm.xml -resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinCompanyPage.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinCompanyPage.hbm.xml @@ -128,6 +130,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AdsOffers.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Affiliates.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AgencyUser.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AssestLibrary.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Coupons.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\DemoRequest.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Discovery.cs" @@ -142,6 +145,7 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groupmembers.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groupprofiles.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groups.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\ImgLibrary.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Instagramaccounts.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\InstagramDiscoveryFeed.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\LinkedinAccount.cs" @@ -170,6 +174,8 @@ "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Listening\LinkedInCompanyPagePost.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\AdvanceSerachData.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ArticlesAndBlogs.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentFeedsShareathon.cs" +"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentShareDataId.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ElasticmailReport.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacaebookPageDailyReports.cs" "E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacebookPagePost.cs" diff --git a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp index 9504a6d8c..f4be42976 100644 --- a/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp +++ b/src/Domain.Socioboard/obj/Debug/net451/dotnet-compile.rsp @@ -54,6 +54,7 @@ --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AdsOffers.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AdsOffers.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Affiliates.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Affiliates.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AgencyUser.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AgencyUser.hbm.xml +--resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\AssestLibrary.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.AssestLibrary.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Coupons.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Coupons.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\DemoRequest.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.DemoRequest.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Discovery.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Discovery.hbm.xml @@ -67,6 +68,7 @@ --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Group.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Group.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Groupmembers.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Groupmembers.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Groupprofiles.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Groupprofiles.hbm.xml +--resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\ImgLibrary.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.ImgLibrary.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\Instagramaccounts.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.Instagramaccounts.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinAccount.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinAccount.hbm.xml --resource:"E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\compiler\resources\Mappings\LinkedinCompanyPage.hbm.xml",Domain.Socioboard.compiler.resources.Mappings.LinkedinCompanyPage.hbm.xml @@ -130,6 +132,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AdsOffers.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Affiliates.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AgencyUser.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\AssestLibrary.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Coupons.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\DemoRequest.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Discovery.cs @@ -144,6 +147,7 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groupmembers.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groupprofiles.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Groups.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\ImgLibrary.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Instagramaccounts.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\InstagramDiscoveryFeed.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\LinkedinAccount.cs @@ -172,6 +176,8 @@ E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Sociobo E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Listening\LinkedInCompanyPagePost.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\AdvanceSerachData.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ArticlesAndBlogs.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentFeedsShareathon.cs +E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ContentShareDataId.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\ElasticmailReport.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacaebookPageDailyReports.cs E:\D DRIVE\socioboardgithub\githubUpdated\Socioboard-Core-3.0\src\Domain.Socioboard\Models\Mongo\FacebookPagePost.cs diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll index 92c338811..c28330833 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll and b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.dll differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb index c6196396b..06a03d2e4 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb and b/src/Socioboard.Facebook/bin/Debug/net451/Domain.Socioboard.pdb differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll index 80cb06d40..031912ccf 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll and b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.dll differ diff --git a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb index d48c8a55c..febd8b411 100644 Binary files a/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb and b/src/Socioboard.Facebook/bin/Debug/net451/Socioboard.Facebook.pdb differ diff --git a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll index 0f2451aa3..207689199 100644 Binary files a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll and b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.dll differ diff --git a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb index 0daa34ca4..b10f51544 100644 Binary files a/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb and b/src/Socioboard.Google/bin/Debug/net451/Socioboard.Google.pdb differ diff --git a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll index 909feda40..60d5086e5 100644 Binary files a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll and b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.dll differ diff --git a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb index 52223a617..4b456d7a5 100644 Binary files a/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb and b/src/Socioboard.Instagram/bin/Debug/net451/Socioboard.Instagram.pdb differ diff --git a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll index 5fd6d3fb5..715d6bac4 100644 Binary files a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll and b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.dll differ diff --git a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb index 5def093ed..d89286358 100644 Binary files a/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb and b/src/Socioboard.LinkedIn/bin/Debug/net451/Socioboard.LinkedIn.pdb differ diff --git a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll index 61339df3e..01538f3c4 100644 Binary files a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll and b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.dll differ diff --git a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb index 493802c95..ae2e37e72 100644 Binary files a/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb and b/src/Socioboard.Pinterest/bin/Debug/net451/Socioboard.Pinterest.pdb differ diff --git a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll index 8aa67089f..517740910 100644 Binary files a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll and b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.dll differ diff --git a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb index 932e94229..81c0a236c 100644 Binary files a/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb and b/src/Socioboard.Twitter/bin/Debug/net451/Socioboard.Twitter.pdb differ diff --git a/src/Socioboard/Controllers/IndexController.cs b/src/Socioboard/Controllers/IndexController.cs index 8f0bc3291..42c9fca97 100644 --- a/src/Socioboard/Controllers/IndexController.cs +++ b/src/Socioboard/Controllers/IndexController.cs @@ -449,7 +449,7 @@ public async Task PaymentSuccessful() Parameters.Add(new KeyValuePair("trasactionId", trasactionId)); Parameters.Add(new KeyValuePair("paymentId", paymentId)); Parameters.Add(new KeyValuePair("accType", plan)); - Parameters.Add(new KeyValuePair("subscr_date", subscr_date)); + Parameters.Add(new KeyValuePair("subscr_date", subscr_date.Replace("PDT","").Replace("PST", ""))); Parameters.Add(new KeyValuePair("payer_email", payer_email)); Parameters.Add(new KeyValuePair("Payername", Payername)); Parameters.Add(new KeyValuePair("payment_status", payment_status)); @@ -690,7 +690,7 @@ public async void PaymentNotify(string code) List> Parameters = new List>(); Parameters.Add(new KeyValuePair("subscr_id", subscr_id)); Parameters.Add(new KeyValuePair("txn_id", txn_id)); - Parameters.Add(new KeyValuePair("subscr_date", subscr_date)); + Parameters.Add(new KeyValuePair("subscr_date", subscr_date.Replace("PDT", "").Replace("PST",""))); Parameters.Add(new KeyValuePair("payer_email", payer_email)); Parameters.Add(new KeyValuePair("Payername", Payername)); Parameters.Add(new KeyValuePair("payment_status", payment_status)); diff --git a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml index 7fecdd668..8353ff21d 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Home/Index.cshtml @@ -68,6 +68,8 @@ + @* + *@ @@ -137,6 +139,7 @@ + diff --git a/src/Socioboard/Themes/Socioboard/Views/Index/Plans.cshtml b/src/Socioboard/Themes/Socioboard/Views/Index/Plans.cshtml index b7feca78b..7403d22d2 100644 --- a/src/Socioboard/Themes/Socioboard/Views/Index/Plans.cshtml +++ b/src/Socioboard/Themes/Socioboard/Views/Index/Plans.cshtml @@ -358,6 +358,19 @@ + + + Image & shared Library + + + + + + + + + + Custom Report @@ -375,14 +388,14 @@   - Basic PlanGet Started - StandardGet Started - PremiumGet Started - DeluxeGet Started - TopazGet Started - RubyGet Started - GoldGet Started - PlatinumGet Started + Basic Plan
Get Started + Standard
Get Started + Premium
Get Started + Deluxe
Get Started + Topaz
Get Started + Ruby
Get Started + Gold
Get Started + Platinum
Get Started diff --git a/src/Socioboard/bin/Debug/net451/Socioboard.exe b/src/Socioboard/bin/Debug/net451/Socioboard.exe index 79b90bec3..280cd0c1e 100644 Binary files a/src/Socioboard/bin/Debug/net451/Socioboard.exe and b/src/Socioboard/bin/Debug/net451/Socioboard.exe differ diff --git a/src/Socioboard/bin/Debug/net451/Socioboard.pdb b/src/Socioboard/bin/Debug/net451/Socioboard.pdb index 6ef103ac7..489d4d489 100644 Binary files a/src/Socioboard/bin/Debug/net451/Socioboard.pdb and b/src/Socioboard/bin/Debug/net451/Socioboard.pdb differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll b/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll index 92c338811..c28330833 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll and b/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.dll differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb b/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb index c6196396b..06a03d2e4 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb and b/src/Socioboard/bin/Debug/net451/win7-x64/Domain.Socioboard.pdb differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll index 80cb06d40..031912ccf 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.dll differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb index d48c8a55c..febd8b411 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Facebook.pdb differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll index 61339df3e..01538f3c4 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.dll differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb index 493802c95..ae2e37e72 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.Pinterest.pdb differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe index 79b90bec3..280cd0c1e 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.exe differ diff --git a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb index 6ef103ac7..489d4d489 100644 Binary files a/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb and b/src/Socioboard/bin/Debug/net451/win7-x64/Socioboard.pdb differ diff --git a/src/Socioboard/wwwroot/_references.js b/src/Socioboard/wwwroot/_references.js index 74eed82d6..065cd5a1a 100644 --- a/src/Socioboard/wwwroot/_references.js +++ b/src/Socioboard/wwwroot/_references.js @@ -30,6 +30,7 @@ /// /// /// +/// /// /// /// @@ -53,6 +54,7 @@ /// /// /// +/// /// /// /// @@ -538,6 +540,7 @@ /// /// /// +/// /// /// /// @@ -1209,6 +1212,8 @@ /// /// /// +/// +/// /// /// /// diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js index e01272af0..1a4270051 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/app.js @@ -7,15 +7,23 @@ Socioboard AngularJS App Main Script /* Socioboard App */ var SocioboardApp = angular.module("SocioboardApp", [ "ui.router", + "ngRoute", "ui.bootstrap", "oc.lazyLoad", "ngSanitize", "lazy-scroll", "ngMaterial", "mdPickers", + //"ngAviary", ]); - +//SocioboardApp.config(function (ngAviaryProvider) { +// ngAviaryProvider.configure({ +// apiKey: 'my-awesome-api-key', +// theme: 'light', +// tools: 'all' +// }) +//}); SocioboardApp.constant("apiDomain", "http://localhost:6361"); SocioboardApp.constant("domain", "http://localhost:9821"); @@ -305,6 +313,7 @@ SocioboardApp.controller('HeaderController', function ($rootScope, $scope, $http SocioboardApp.controller('SidebarController', function ($rootScope, $scope, $http, apiDomain, domain) { $scope.$on('$includeContentLoaded', function () { $scope.AccountType = $rootScope.user.AccountType; + $scope.UserEmail = $rootScope.user.EmailId; $scope.message = function () { $scope.abcd = "If You want to use this feature upgrade to higher business plan "; swal($scope.abcd); @@ -345,6 +354,17 @@ SocioboardApp.controller('SidebarController', function ($rootScope, $scope, $htt // end codes to logout from all session } + $scope.getadminDetails = function () { + $http.get(apiDomain + '/api/GroupMember/GetGroupAdmin?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id) + .then(function (response) { + $rootScope.groupdetails = response.data; + }, function (reason) { + $scope.error = reason.data; + }); + //} + + } + $scope.getadminDetails(); ////codes to load social profiles start //$http.get(apiDomain + '/api/GroupProfiles/GetGroupProfiles?groupId=' + $rootScope.groupId) // .then(function (response) { @@ -2040,6 +2060,52 @@ SocioboardApp.config(['$stateProvider', '$urlRouterProvider', function ($statePr } }) + // ImgLibrary Controller list + + .state('img_library', { + url: "/img_library", + templateUrl: "../contents/socioboard/views/library/img_library.html", + data: { pageTitle: 'Private Img', pageSubTitle: 'updated' }, + controller: "ImgLibraryController", + + resolve: { + deps: ['$ocLazyLoad', function ($ocLazyLoad) { + return $ocLazyLoad.load({ + name: 'SocioboardApp', + insertBefore: '#ng_load_plugins_before', // load the above css files before '#ng_load_plugins_before' + files: [ + //'http://feather.aviary.com/imaging/v2/editor.js', + '../contents/socioboard/js/admin/plugins.js', + '../contents/socioboard/controllers/imglibrarycontroller.js' + + ] + }); + }] + } + }) + + .state('share_img_library', { + url: "/share_img_library", + templateUrl: "../contents/socioboard/views/library/share_img_library.html", + data: { pageTitle: 'Public Img', pageSubTitle: 'updated' }, + controller: "ShareImgLibraryController", + + resolve: { + deps: ['$ocLazyLoad', function ($ocLazyLoad) { + return $ocLazyLoad.load({ + name: 'SocioboardApp', + insertBefore: '#ng_load_plugins_before', // load the above css files before '#ng_load_plugins_before' + files: [ + //'http://feather.aviary.com/imaging/v2/editor.js', + '../contents/socioboard/js/admin/plugins.js', + '../contents/socioboard/controllers/shareimglibrarycontroller.js' + + ] + }); + }] + } + }) + }]).run(function ($rootScope, $state) { $rootScope.$on('$stateChangeStart', function (event, toState, $stateParams) { diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js index 0abbc1b05..a0a406050 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/facebookfeedscontroller.js @@ -49,23 +49,13 @@ SocioboardApp.controller('FacebookFeedsController', function ($rootScope, $scope } //end $scope.LoadTopFeeds = function () { - $scope.filters = false; - $scope.preloadmore = false; - $scope.lstFbFeeds = null; - $scope.filterrTxtt = 'All Posts'; - $scope.SorttTxtt = 'Popular'; //codes to load recent Feeds $http.get(apiDomain + '/api/Facebook/GetTopFeeds?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=' + count) .then(function (response) { - - // $scope.lstProfiles = response.data; $scope.lstFbFeeds = response.data; + $scope.reloadFeeds(); $scope.preloadmore = true; setTimeout(function () { $('.collapsible').collapsible(); }, 1000); - // $('.collapsible').collapsible(); - // $scope.feeddate(response.data); - //$scope.loaderclass = 'hide'; - //console.log(response.data); if (response.data == null) { reachLast = true; } @@ -81,6 +71,20 @@ SocioboardApp.controller('FacebookFeedsController', function ($rootScope, $scope } $scope.LoadTopFeeds(); + $scope.loadFeeds = function () { + $scope.filters = false; + $scope.preloadmore = false; + $scope.lstFbFeeds = null; + $scope.filterrTxtt = 'All Posts'; + $scope.SorttTxtt = 'Popular'; + $scope.LoadTopFeeds(); + } + + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } + + $scope.feeddate = function (parm) { diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/googleplusfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/googleplusfeedscontroller.js index e24c7fd98..58e8573a3 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/googleplusfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/googleplusfeedscontroller.js @@ -40,17 +40,14 @@ SocioboardApp.controller('GooglePlusFeedsController', function ($rootScope, $sco } } //end - $scope.lstGpFeeds = []; $scope.LoadTopFeeds = function () { //codes to load recent Feeds - $scope.filters = false; - $scope.preloadmorefeeds = false; - $scope.lstGpFeeds = null; $http.get(apiDomain + '/api/Google/GetGplusFeeds?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=10') .then(function (response) { if (response.data != "") { $scope.date(response.data); + $scope.reloadFeeds(); $scope.preloadmorefeeds = true; $scope.dropCalled = true; setTimeout(function () { @@ -63,24 +60,23 @@ SocioboardApp.controller('GooglePlusFeedsController', function ($rootScope, $sco setTimeout(function () { $scope.callDropmenu(); }, 1000); - //swal("No Post To Display"); } - // $scope.date(response.data);comment by sweta - // $scope.lstGpFeeds = response.data; - - //if (response.data == null) { by me - // reachLast = true; by me - //} }, function (reason) { $scope.error = reason.data; }); // end codes to load recent Feeds } $scope.LoadTopFeeds(); - - + $scope.ReLoadingTopFeeds = function () { + $scope.filters = false; + $scope.preloadmorefeeds = false; + $scope.lstGpFeeds = null; + $scope.LoadTopFeeds(); + } + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } $scope.date = function (parm) { - for (var i = 0; i < parm.length; i++) { var date = moment(parm[i].PublishedDate); var newdate = date.toString(); @@ -89,7 +85,6 @@ SocioboardApp.controller('GooglePlusFeedsController', function ($rootScope, $sco parm[i].PublishedDate = date; } $scope.lstGpFeeds = parm; - } $scope.callDropmenu = function () { diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/imglibrarycontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/imglibrarycontroller.js new file mode 100644 index 000000000..3bb2809b8 --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/imglibrarycontroller.js @@ -0,0 +1,247 @@ +'use strict'; + +SocioboardApp.controller('ImgLibraryController', function ($rootScope, $scope, $http, $modal, $timeout, $state, apiDomain, domain) { + $scope.$on('$viewContentLoaded', function() { + + ImgLibrary(); + $scope.dispbtn = true; + //open compose model + $scope.opencomposemodel = function (img) { + $('#ImgDesModal').closeModal(); + jQuery('input:checkbox').removeAttr('checked'); + if (img != null) { + var message = { + "image": img.imagePath, + }; + $scope.composePostdata = message; + } + $('#ComposePostModal').openModal(); + var composeImagedropify = $('#composeImage').parents('.dropify-wrapper'); + $(composeImagedropify).find('.dropify-render').html(''); + $(composeImagedropify).find('.dropify-preview').attr('style', 'display: block;'); + $('select').material_select(); + } + + //open image model + $scope.openimgmodel = function (img) { + $('#ImgDesModal').openModal(); + $scope.imagedetail = img; + var imgsize = ($scope.imagedetail.imageSize)/1024; + if (imgsize < 1024) + { + var size= Math.round(imgsize * 100) / 100; + $scope.imglength = size + 'KB'; + } + else + { + var size = Math.round(imgsize * 100) / 100; + var tempsize = size / 1024; + var temsize = Math.round(tempsize * 100) / 100; + $scope.imglength = temsize + 'MB'; + } + //.imagePath + } + + //Save Image In Private + $scope.SaveImageforPrivate = function () { + var imgName = $('#img_name').val(); + //var imagelocalPath = $('#input-file-now').val(); + var formData = new FormData(); + formData.append('files', $("#input-file-now").get(0).files[0]); + $http({ + method: 'POST', + url: apiDomain + '/api/ImgLibrary/SaveImageforPrivate?userId=' + $rootScope.user.Id + '&imgName=' + imgName, + data: formData, + headers: { + 'Content-Type': undefined + }, + transformRequest: angular.identity, + }) + .then(function (response) { + swal(response.data); + window.location.reload(); + //window.location.reload(); + }, function (reason) { + alertify.set({ delay: 5000 }); + alertify.error(reason.data); + + + }); + } + + //Load LoadImagesForPrivate + $scope.LoadImagesForPrivate = function () { + $http.get(apiDomain + '/api/ImgLibrary/LoadImagesForPrivate?userid=' + $rootScope.user.Id) + .then(function (response) { + $scope.imgdetails = response.data; + //var tempsize = 0; + //angular.forEach($scope.imgdetails, function (value, key) { + // tempsize = tempsize + value.imageSize; + //}); + //var imgsize = tempsize; + //if (imgsize < 1024) { + // var size = Math.round(imgsize * 100) / 100; + // $scope.imglength = size + 'KB'; + //} + //else { + + // var tempsize = imgsize / 1024; + // var size = Math.round(tempsize * 100) / 100; + // $scope.imglength = size + 'MB'; + //} + }, function (reason) { + $scope.error = reason.data; + }); + } + + //Count Size + $scope.Totalimagesize = function () { + debugger; + $http.get(apiDomain + '/api/ImgLibrary/Totalimagesize?userid=' + $rootScope.user.Id) + .then(function (response) { + $scope.totalimagesize = response.data; + + }, function (reason) { + $scope.error = reason.data; + }); + } + + //Delete Images + $scope.deleteImages = function (imgid) { + swal({ + title: "Are you sure?", + text: "You want to delete this image!", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "Yes, delete it!", + closeOnConfirm: false + }, + function () { + $http({ + method: 'POST', + url: apiDomain + '/api/ImgLibrary/DeleteImage?userid=' + $rootScope.user.Id + '&imgid=' + imgid, + }).then(function (response) { + if (response.data == "Deleted") { + swal("Deleted!", "Image is deleted", "success"); + } + window.location.reload(); + }); + }); + } + + //open compose model + $scope.ComposePostModal = function () { + $('#ComposePostModal').openModal(); + } + + //Compose Message + var getAllSelected = function () { + var selectedItems = $rootScope.lstProfiles.filter(function (profile) { + return profile.Selected; + }); + + return selectedItems.length === $rootScope.lstProfiles.length; + } + var setAllSelected = function (value) { + angular.forEach($rootScope.lstProfiles, function (profile) { + profile.Selected = value; + }); + } + $scope.allSelected = function (value) { + if (value !== undefined) { + return setAllSelected(value); + } else { + return getAllSelected(); + } + } + $scope.ComposeMessage = function () { + var profiles = new Array(); + $("#checkboxdataboard .subcheckboxboard").each(function () { + + var attrId = $(this).attr("id"); + if (document.getElementById(attrId).checked == false) { + var index = profiles.indexOf(attrId); + if (index > -1) { + profiles.splice(index, 1); + } + } else { + profiles.push(attrId); + } + }); + var message = $('#composeMessage').val(); + var updatedmessage = ""; + message = encodeURIComponent(message); + if (profiles.length > 0 && message != '') { + $scope.checkfile(); + if ($scope.check == true) { + var formData = new FormData(); + $scope.dispbtn = false; + formData.append('files', $("#composeImage").get(0).files[0]); + $http({ + method: 'POST', + url: apiDomain + '/api/SocialMessages/ComposeMessage?profileId=' + profiles + '&userId=' + $rootScope.user.Id + '&message=' + message + '&imagePath=' + encodeURIComponent($('#imageUrl').val()), + data: formData, + headers: { + 'Content-Type': undefined + }, + transformRequest: angular.identity, + }).then(function (response) { + if (response.data == "Posted") { + $scope.dispbtn = true; + $('#ComposePostModal').closeModal(); + swal('Message composed successfully'); + window.location.reload(); + } + + }, function (reason) { + console.log(reason); + }); + } + else { + alertify.set({ delay: 3000 }); + alertify.error("File extension is not valid. Please upload an image file"); + $('#input-file-now').val(''); + } + } + else { + $scope.dispbtn = true; + if (profiles.length == 0) { + swal('please select profile'); + } + else { + swal('Please enter text'); + } + } + } + $scope.checkfile = function () { + var filesinput = $('#composeImage'); + var fileExtension = ['jpeg', 'jpg', 'png', 'gif', 'bmp']; + if (filesinput != undefined && filesinput[0].files[0] != null) { + if ($scope.hasExtension('#composeImage', fileExtension)) { + $scope.check = true; + } + else { + + $scope.check = false; + } + } + else { + $scope.check = true; + } + } + $scope.hasExtension = function (inputID, exts) { + var fileName = $('#composeImage').val(); + return (new RegExp('(' + exts.join('|').replace(/\./g, '\\.') + ')$')).test(fileName); + } + + //On page Load + $scope.getOnPageLoadReports = function () { + $scope.LoadImagesForPrivate(); + $scope.Totalimagesize(); + } + + $scope.getOnPageLoadReports(); + }); + +}); \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramfeedscontroller.js index 35e08086b..ed73ab107 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/instagramfeedscontroller.js @@ -21,11 +21,6 @@ SocioboardApp.controller('InstagramFeedsController', function ($rootScope, $scop $scope.LoadTopFeeds = function () { //codes to load recent Feeds - $scope.filters = false; - $scope.preloadmorefeeds = false; - $scope.lstinsFeeds = null; - $scope.filterrTxtt = 'All Posts'; - $scope.SorttTxtt = 'Popular'; $http.get(apiDomain + '/api/Instagram/GetInstagramFeeds?instagramId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=10') .then(function (response) { // $scope.lstProfiles = response.data; @@ -34,6 +29,7 @@ SocioboardApp.controller('InstagramFeedsController', function ($rootScope, $scop reachLast = true; } $scope.date(response.data); + $scope.reloadFeeds(); $scope.preloadmorefeeds = true; $scope.dropCalled = true; setTimeout(function () { @@ -48,6 +44,20 @@ SocioboardApp.controller('InstagramFeedsController', function ($rootScope, $scop $scope.LoadTopFeeds(); + $scope.ReLoadingTopFeeds = function () { + $scope.filters = false; + $scope.preloadmorefeeds = false; + $scope.lstinsFeeds = null; + $scope.filterrTxtt = 'All Posts'; + $scope.SorttTxtt = 'Popular'; + $scope.LoadTopFeeds(); + } + + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } + + $scope.listData = function () { if (reachLast) { diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/linkedin_comp_feeds_controller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/linkedin_comp_feeds_controller.js index f7e790374..4a8f13ea0 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/linkedin_comp_feeds_controller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/linkedin_comp_feeds_controller.js @@ -3,15 +3,14 @@ SocioboardApp.controller('LinkedinCompFeedsController', function ($rootScope, $scope, $http, $timeout,$stateParams, apiDomain,grouptask) { //alert('helo'); $scope.$on('$viewContentLoaded', function () { - likedinfeeds(); - $scope.LoadTopFeeds = function () { //codes to load recent Feeds $http.get(apiDomain + '/api/LinkedIn/GetTopCompanyPagePosts?pageId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=30') .then(function (response) { $scope.companypagedata = response.data._LinkedinCompanyPage; $scope.postdate(response.data._LinkedinCompanyPagePosts); + $scope.reloadFeeds(); setTimeout(function () { $('.collapsible').collapsible(); }, 1000); if (response.data == null) { reachLast = true; @@ -21,10 +20,14 @@ SocioboardApp.controller('LinkedinCompFeedsController', function ($rootScope, $s }); // end codes to load recent Feeds } - $scope.LoadTopFeeds(); + $scope.ReLoadingTopFeeds = function () { + $scope.LoadTopFeeds(); + } + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } $scope.postdate = function (parm) { - for (var i = 0; i < parm.length; i++) { var date = moment(parm[i].postDate); var newdate = date.toString(); @@ -33,9 +36,7 @@ SocioboardApp.controller('LinkedinCompFeedsController', function ($rootScope, $s parm[i].postDate = date; } $scope.lstlincmpnypageFeeds = parm; - } - $scope.getpostcomment = function (OAuthToken, PageId, UpdateKey) { //codes to load comments of Feeds $http.get(apiDomain + '/api/LinkedIn/GetLinkdeinPagePostComment?pageId=' + PageId + '&userId=' + $rootScope.user.Id + '&updatekey=' + UpdateKey + '&OAuthToken=' + OAuthToken) diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js index 5b3e89511..0dca877a5 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/mostsharedcontroller.js @@ -3,6 +3,7 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ $scope.$on('$viewContentLoaded', function() { $scope.disbtncom = true; $scope.draftbtn = true; + $scope.dispbtn = true; $scope.composePostdata = {}; MostShared(); $scope.deleteMsg = function(profileId){ @@ -32,11 +33,96 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ } $scope.Loaddata('none'); + $scope.saveshreathondata = function () { + + var pageId = $('#shraeathonfacebookpage').val(); + var timeInterval = $('#shraeathontimeinterval').val(); + if (pageId == "") { + if (FacebookUrl == "") { + swal("please enter any facebook page url or select any facebook page"); + return false; + } + } + var formData = new FormData(); + if (pageId != null && timeInterval != null) { + + $scope.datasharethon = []; + $scope.datasharethon = $scope.selectedContentfeed; + var sb = $scope.datasharethon; + var x=angular.toJson(sb); + console.log("data"); + console.log($scope.selectedContentfeed); + $scope.dispbtn = false; + + + formData.append('FacebookPageId', pageId); + var shareData = $scope.datasharethon; + formData.append('shareData', x); + //var data = { + // 'fbuserIds': $('#shraeathonfacebookpage').val(), + // 'timeIntervals': $('#shraeathontimeinterval').val(), + // 'shareData': $scope.datasharethon + // } + // formData1.append('shareData', data); + //codes to add page shreathon long userId, string fbuserId, int timeInterval + // $http.post(apiDomain + '/api/Shareathon/AddPageShareathon?userId=' + $rootScope.user.Id + '&FacebookPageId=' + pageId + '&Facebookaccountid=' + accountId + '&Timeintervalminutes=' + timeInterval) + // $http.post(apiDomain + '/api/ContentStudio/saveDataIdForShare?shareData=' + datasharethon + '&fbuserIds=' + pageId + '&timeIntervals=' + timeInterval) + //$http.post(apiDomain + '/api/ContentStudio/saveDataIdForShare',{ + // params: { + // fbuserIds:pageId, + // timeIntervals: timeInterval, + // shareData:datasharethon + // } + //}) + //var shareData = JSON.stringify($scope.datasharethon); + // console.log(" --- > encodeURIComponent(datasharethon) : ", shareData); + $http({ + + method: 'POST', + url: apiDomain + '/api/ContentStudio/saveDataIdForShare?fbuserIds=' + pageId + '&timeIntervals=' + timeInterval, + data: formData, + headers: { + 'Content-Type': undefined + }, + transformRequest: angular.identity, + }) + + //$http({ + // method: "POST", + + // url: apiDomain + '/api/ContentStudio/saveDataIdForShare', + // data: sb, + // headers: { + // "Content-Type": "application/json" + // }, + // transformRequest: angular.identity, + //}) + + .then(function (response) { + $scope.lstAdvSearhDataaa = response.data; + $scope.dispbtn = true; + swal(response.data); + }, function (reason) { + $scope.error = reason.data; + }); + // end codes to add page shreathon + } + else { + $scope.dispbtn = true; + swal('Please fill in all the details'); + } + } + + + + $scope.SearchData = function () { var tempTextSearch = $('#textSearch').val(); $scope.Loaddata(tempTextSearch); } - + $scope.sorttype = function () { + $('#ShareathonModal').openModal(); + } $scope.ComposeMessageModal = function (lstData) { jQuery('input:checkbox').removeAttr('checked'); if (lstData != null) { @@ -127,6 +213,41 @@ SocioboardApp.controller('MostSharedController', function ($rootScope, $scope, $ var fileName = $('#composeImage').val(); return (new RegExp('(' + exts.join('|').replace(/\./g, '\\.') + ')$')).test(fileName); } + + $scope.tekeDatashare = function (getshare) { + + $http.get(apiDomain + '/api/ContentStudio/GetAdvanceSearchData?keywords=' + key) + .then(function (response) { + $scope.lstAdvSearhDataaa = response.data; + }, function (reason) { + $scope.error = reason.data; + }); + + } + + $scope.selectedContentfeed = []; + $scope.Toggle = function (lstforshare) { + + + var index = $scope.selectedContentfeed.indexOf(lstforshare); + if (index > -1) { + //if already selected then removed + $scope.selectedContentfeed.splice(index, 1); + } + else { + $scope.selectedContentfeed.push(lstforshare); + } + } + + $scope.shareathonData = function () { + debugger; + + } + + + + console.log($scope.selectedContentfeed); + $scope.draftMsg = function () { $scope.draftbtn = false; var message = $('#composeMessage').val(); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/pinterestfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/pinterestfeedscontroller.js index 152aea2fa..ee4c7fffa 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/pinterestfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/pinterestfeedscontroller.js @@ -18,6 +18,7 @@ SocioboardApp.controller('PinterestFeedsController', function ($rootScope, $scop $http.get(apiDomain + '/api/Pinterest/GetTopUserPins?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&take=' + count) .then(function (response) { $scope.lstpin = response.data; + $scope.reloadFeeds(); }, function (reason) { $scope.error = reason.data; }); @@ -26,6 +27,9 @@ SocioboardApp.controller('PinterestFeedsController', function ($rootScope, $scop } $scope.LoadTopFeeds(); + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } $scope.CreatePin = function (pinterestUserId, boardid) { var web_url = $('#web_url').val(); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/shareimglibrarycontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/shareimglibrarycontroller.js new file mode 100644 index 000000000..9141a8e4a --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/shareimglibrarycontroller.js @@ -0,0 +1,233 @@ +'use strict'; + +SocioboardApp.controller('ShareImgLibraryController', function ($rootScope, $scope, $http, $modal, $timeout, $state, apiDomain, domain) { + $scope.$on('$viewContentLoaded', function() { + + ImgLibrary(); + $scope.dispbtn = true; + $scope.UserEmail = $rootScope.user.EmailId; + $scope.opencomposemodel = function (img) { + $('#ImgDesModal').closeModal(); + jQuery('input:checkbox').removeAttr('checked'); + if (img != null) { + var message = { + "image": img.imagePath, + }; + $scope.composePostdata = message; + } + $('#ComposePostModal').openModal(); + var composeImagedropify = $('#composeImage').parents('.dropify-wrapper'); + $(composeImagedropify).find('.dropify-render').html(''); + $(composeImagedropify).find('.dropify-preview').attr('style', 'display: block;'); + $('select').material_select(); + } + + //open image model + $scope.openimgmodel = function (img) { + $('#ImgDesModal').openModal(); + $scope.imagedetail = img; + var imgsize = ($scope.imagedetail.imageSize) / 1024; + if (imgsize < 1024) { + var size = Math.round(imgsize * 100) / 100; + $scope.imglength = size + 'KB'; + } + else { + var size = Math.round(imgsize * 100) / 100; + var tempsize = size / 1024; + var temsize = Math.round(tempsize * 100) / 100; + $scope.imglength = temsize + 'MB'; + } + //.imagePath + } + + //Save Image In Public + $scope.SaveImageForPublic = function () { + var imgName = $('#img_name').val(); + //var imagelocalPath = $('#input-file-now').val(); + var formData = new FormData(); + formData.append('files', $("#input-file-now").get(0).files[0]); + $http({ + method: 'POST', + url: apiDomain + '/api/ImgLibrary/SaveImageForPublic?userId=' + $rootScope.user.Id + '&imgName=' + imgName, + data: formData, + headers: { + 'Content-Type': undefined + }, + transformRequest: angular.identity, + }) + .then(function (response) { + swal(response.data); + window.location.reload(); + //window.location.reload(); + }, function (reason) { + alertify.set({ delay: 5000 }); + alertify.error(reason.data); + + + }); + } + + //Load LoadImagesForPublic + $scope.LoadImagesForPublic = function () { + debugger; + $http.get(apiDomain + '/api/ImgLibrary/LoadImagesForPublic?groupId=' + $rootScope.groupId + '&userId=' + $rootScope.user.Id) + .then(function (response) { + $scope.imgdetails = response.data; + }, function (reason) { + $scope.error = reason.data; + }); + } + + //Count Size + $scope.Totalimagesize = function () { + debugger; + $http.get(apiDomain + '/api/ImgLibrary/Totalimagesize?userid=' + $rootScope.user.Id) + .then(function (response) { + $scope.totalimagesize = response.data; + + }, function (reason) { + $scope.error = reason.data; + }); + } + + //Delete Images + $scope.deleteImages = function (imgid) { + debugger; + swal({ + title: "Are you sure?", + text: "You want to delete this image!", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "Yes, delete it!", + closeOnConfirm: false + }, + function () { + $http({ + method: 'POST', + url: apiDomain + '/api/ImgLibrary/DeleteImage?userid=' + $rootScope.user.Id + '&imgid=' + imgid, + }).then(function (response) { + if (response.data == "Deleted") { + swal("Deleted!", "Image is deleted", "success"); + } + window.location.reload(); + }); + }); + } + + //open compose model + $scope.ComposePostModal = function () { + $('#ComposePostModal').openModal(); + } + + //Compose Message + var getAllSelected = function () { + var selectedItems = $rootScope.lstProfiles.filter(function (profile) { + return profile.Selected; + }); + + return selectedItems.length === $rootScope.lstProfiles.length; + } + var setAllSelected = function (value) { + angular.forEach($rootScope.lstProfiles, function (profile) { + profile.Selected = value; + }); + } + $scope.allSelected = function (value) { + if (value !== undefined) { + return setAllSelected(value); + } else { + return getAllSelected(); + } + } + $scope.ComposeMessage = function () { + var profiles = new Array(); + $("#checkboxdataboard .subcheckboxboard").each(function () { + + var attrId = $(this).attr("id"); + if (document.getElementById(attrId).checked == false) { + var index = profiles.indexOf(attrId); + if (index > -1) { + profiles.splice(index, 1); + } + } else { + profiles.push(attrId); + } + }); + var message = $('#composeMessage').val(); + var updatedmessage = ""; + message = encodeURIComponent(message); + if (profiles.length > 0 && message != '') { + $scope.checkfile(); + if ($scope.check == true) { + var formData = new FormData(); + $scope.dispbtn = false; + formData.append('files', $("#composeImage").get(0).files[0]); + $http({ + method: 'POST', + url: apiDomain + '/api/SocialMessages/ComposeMessage?profileId=' + profiles + '&userId=' + $rootScope.user.Id + '&message=' + message + '&imagePath=' + encodeURIComponent($('#imageUrl').val()), + data: formData, + headers: { + 'Content-Type': undefined + }, + transformRequest: angular.identity, + }).then(function (response) { + if (response.data == "Posted") { + $scope.dispbtn = true; + $('#ComposePostModal').closeModal(); + swal('Message composed successfully'); + window.location.reload(); + } + + }, function (reason) { + console.log(reason); + }); + } + else { + alertify.set({ delay: 3000 }); + alertify.error("File extension is not valid. Please upload an image file"); + $('#input-file-now').val(''); + } + } + else { + $scope.dispbtn = true; + if (profiles.length == 0) { + swal('please select profile'); + } + else { + swal('Please enter text'); + } + } + } + $scope.checkfile = function () { + var filesinput = $('#composeImage'); + var fileExtension = ['jpeg', 'jpg', 'png', 'gif', 'bmp']; + if (filesinput != undefined && filesinput[0].files[0] != null) { + if ($scope.hasExtension('#composeImage', fileExtension)) { + $scope.check = true; + } + else { + + $scope.check = false; + } + } + else { + $scope.check = true; + } + } + $scope.hasExtension = function (inputID, exts) { + var fileName = $('#composeImage').val(); + return (new RegExp('(' + exts.join('|').replace(/\./g, '\\.') + ')$')).test(fileName); + } + + + //On page Load + $scope.getOnPageLoadReports = function () { + $scope.LoadImagesForPublic(); + $scope.Totalimagesize(); + } + + $scope.getOnPageLoadReports(); + }); + +}); \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js index 5a1b458aa..fce2ae82f 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/trendingcontentcontroller.js @@ -4,12 +4,12 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco //alert('helo'); $scope.$on('$viewContentLoaded', function() { - - + TrendingContent(); + $('.modal-trigger').leanModal(); var lastreach = false; - TrendingContent(); + $scope.deleteProfile = function(profileId){ // console.log(profileId); swal({ @@ -33,40 +33,55 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } + + $scope.sortclick = function () { + $('#ShareathonModal').openModal(); + } + //$('#ShareathonModal').leanModal(); + //var composeImagedropify = $('#composeImage').parents('.dropify-wrapper'); + //$(composeImagedropify).find('.dropify-render').html(''); + //$(composeImagedropify).find('.dropify-preview').attr('style', 'display: block;'); + //$('select').material_select(); + $scope.dailyMotion = function (abc) { if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; + $('.modal-trigger').leanModal(); } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } @@ -75,19 +90,22 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; + $('.modal-trigger').leanModal(); } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } @@ -97,19 +115,22 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; + $('.modal-trigger').leanModal(); } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } @@ -119,19 +140,22 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; + $('.modal-trigger').leanModal(); } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } @@ -141,19 +165,23 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=30') .then(function (response) { + $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + // $scope.funt(); if (response.data == null) { ReachLast = true; + } }, function (reason) { $scope.error = reason.data; + }); } } @@ -164,19 +192,22 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco if (!ReachLast) { // var abc = "twitter"; var abcd = 0; - $http.get(apiDomain + '/api/AdvanceSearch/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=10') + $http.get(apiDomain + '/api/ContentStudio/GetYTAdvanceSearchData?network=' + abc + '&skip=' + startData + '&count=10') .then(function (response) { $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + $('.modal-trigger').leanModal(); // $scope.funt(); if (response.data == null) { ReachLast = true; + $('.modal-trigger').leanModal(); } }, function (reason) { $scope.error = reason.data; + $('.modal-trigger').leanModal(); }); } } @@ -190,6 +221,7 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco $scope.funt(); }, function (reason) { $scope.error = reason.data; + }); // end codes to load Data } @@ -197,6 +229,7 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco $scope.SearchData = function () { var tempTextSearch = $('#textSearch').val(); $scope.Loaddata(tempTextSearch); + $('.modal-trigger').leanModal(); } @@ -233,54 +266,64 @@ SocioboardApp.controller('TrendingContentController', function ($rootScope, $sco // }); //} //funt(); - + $scope.sortBy = function (sortType) { - debugger; - $http.get(apiDomain + '/api/AdvanceSearch/GetSortByData?sortType=' + sortType + '&skip=' + startData + '&count=70') + + $http.get(apiDomain + '/api/ContentStudio/GetSortByData?sortType=' + sortType + '&skip=' + startData + '&count=70') .then(function (response) { - debugger; + $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + // $scope.funt(); if (response.data == null) { ReachLast = true; + } }, function (reason) { $scope.error = reason.data; + }); } $scope.topic = function (networkType) { - debugger; - $http.get(apiDomain + '/api/AdvanceSearch/QuickTopics?networkType=' + networkType + '&skip=' + startData + '&count=30') + + $http.get(apiDomain + '/api/ContentStudio/QuickTopics?networkType=' + networkType + '&skip=' + startData + '&count=30') .then(function (response) { - debugger; + $scope.lstData = response.data; $scope.funt(); console.log($scope.lstData); startData = response.data.length; $scope.lastreach = true; + // $scope.funt(); if (response.data == null) { ReachLast = true; + } }, function (reason) { $scope.error = reason.data; + }); } $scope.getOnPageLoadReports = function () { - $scope.globeSearch(); + var abcd = 'general'; + $scope.globeSearch(abcd); + $('.modal-trigger').leanModal(); } $scope.getOnPageLoadReports(); + $('.modal-trigger').leanModal(); + }); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterfeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterfeedscontroller.js index 6fe4864f1..3fc19693a 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterfeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/twitterfeedscontroller.js @@ -47,16 +47,12 @@ SocioboardApp.controller('TwitterFeedsController', function ($rootScope, $scope, $scope.lstTwtFeeds = []; $scope.lstUserTweets = []; $scope.LoadTopFeeds = function () { - $scope.filters = false; - $scope.preloadmorefeeds = false; - $scope.lstTwtFeeds = null; - $scope.filterrTxtt = 'All Posts'; - $scope.SorttTxtt = 'Popular'; - //codes to load recent Feeds + //codes to load recent FeedsS $http.get(apiDomain + '/api/Twitter/GetFeeds?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=10') .then(function (response) { // $scope.lstProfiles = response.data; $scope.lstTwtFeeds = response.data; + $scope.reloadFeeds(); $scope.preloadmorefeeds = true; if (response.data == null) { reachLast = true; @@ -78,6 +74,7 @@ SocioboardApp.controller('TwitterFeedsController', function ($rootScope, $scope, $http.get(apiDomain + '/api/Twitter/GetUserTweets?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&skip=0&count=10') .then(function (response) { $scope.lstUserTweets = response.data; + $scope.reloadTweets(); $scope.preloadmoretweets = true; if (response.data == null) { TweetsreachLast = true; @@ -89,6 +86,26 @@ SocioboardApp.controller('TwitterFeedsController', function ($rootScope, $scope, } $scope.LoadTopFeeds(); $scope.LoadTopTweets(); + + $scope.ReLoadingTopFeeds = function () { + $scope.filters = false; + $scope.preloadmorefeeds = false; + $scope.lstTwtFeeds = null; + $scope.filterrTxtt = 'All Posts'; + $scope.SorttTxtt = 'Popular'; + $scope.LoadTopFeeds(); + } + + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadTopFeeds(); }, 10000); + } + + $scope.reloadTweets = function () { + setTimeout(function () { $scope.LoadTopTweets(); }, 10000); + } + + + // Code for Loading button twts .. $scope.listData = function () { @@ -472,11 +489,40 @@ SocioboardApp.controller('TwitterFeedsController', function ($rootScope, $scope, }, function (reason) { $scope.error = reason.data; }); - } - //end + //markSpam + $scope.markSpam = function (toScreenName, toProfileId) { + swal({ + title: "Are you sure?", + text: "The profile @" + toScreenName + " will be reported as spam" + "!", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", confirmButtonText: "Report Spam!", + cancelButtonText: "No, cancel pls!", + closeOnConfirm: false, + closeOnCancel: false + }, + function (isConfirm) { + if (isConfirm) { + $http.post(apiDomain + '/api/Twitter/ReportSpam?profileId=' + $stateParams.profileId + '&userId=' + $rootScope.user.Id + '&spamScreenName=' + toScreenName) + .then(function (response) { + if (response.data != "") { + swal("Reported!", "Selected profile successfully reported as spam", "success"); + } + }, function (reason) { + $scope.error = reason.data; + }); + } else { + swal("Cancelled", "Selected profile is safe :)", "error"); + } + + }); + } + + //end markSpam + }); }); diff --git a/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubefeedscontroller.js b/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubefeedscontroller.js index 916e5552f..0dbf071ba 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubefeedscontroller.js +++ b/src/Socioboard/wwwroot/contents/socioboard/controllers/youtubefeedscontroller.js @@ -13,14 +13,11 @@ SocioboardApp.controller('YoutubeFeedsController', function ($rootScope, $scope, var currentVideoId = ""; $scope.LoadVideos = function () { - $scope.preloadmorevideos = false; - $scope.lstYtFeeds = null; - $scope.SorttTxtt = 'Popular'; - //codes to load videos $http.get(apiDomain + '/api/Google/GetYTVideos?ChannelId=' + $stateParams.profileId + '&sortType=none') .then(function (response) { $scope.lstYtFeeds = response.data; + $scope.reloadFeeds(); $scope.preloadmorevideos = true; $scope.dropCalled = true; setTimeout(function () { @@ -37,6 +34,17 @@ SocioboardApp.controller('YoutubeFeedsController', function ($rootScope, $scope, } $scope.LoadVideos(); + $scope.ReLoadingTopFeeds = function () { + $scope.preloadmorevideos = false; + $scope.lstYtFeeds = null; + $scope.SorttTxtt = 'Popular'; + $scope.LoadVideos(); + } + + $scope.reloadFeeds = function () { + setTimeout(function () { $scope.LoadVideos(); }, 10000); + } + $scope.videomodal = function (vdoId) { $scope.lstYtComments = ""; @@ -187,13 +195,12 @@ SocioboardApp.controller('YoutubeFeedsController', function ($rootScope, $scope, if (response.data == "Posted") { $('#ComposePostModal').closeModal(); swal({ - //title: title, - text: "Video will Upload Soon.", - // imageUrl: '../contents/socioboard/images/yt.png', + title: "Video will Upload Soon", imageUrl: 'http://img.fobito.com/applications/youtube-kids_android.png?w=128', - timer: 400000, + timer: 2000, showConfirmButton: false }); + $('#ComposePostModal').closeModal(); window.location.reload(); } else { diff --git a/src/Socioboard/wwwroot/contents/socioboard/css/admin/custom.css b/src/Socioboard/wwwroot/contents/socioboard/css/admin/custom.css index c475f505c..35e80290a 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/css/admin/custom.css +++ b/src/Socioboard/wwwroot/contents/socioboard/css/admin/custom.css @@ -620,6 +620,25 @@ ul.side-nav.leftside-navigation li.active > a{ .studio_card .card { margin: 0; } + +.my-dropdown{ + top:40px !important; +} +.my-dropdown:before{ + position: absolute; + top: -7px; + right: 9px; + display: inline-block !important; + border-right: 7px solid transparent; + border-bottom: 7px solid #eee; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} +.my-dropdown li > a, .my-dropdown li > span{ + padding: 0px 16px !important; + color: #325981 !important; +} .share_studio{ display: flex; @@ -638,4 +657,41 @@ ul.side-nav.leftside-navigation li.active > a{ .dropify-wrapper .dropify-message p{ text-align: center; +} + + +/* Img Library */ +.card_img_details{ + padding: 10px !important; + border-top: 3px solid #f85c37 !important; +} + +.card_img_h { + margin: auto; + display: block; + min-height: 100px; + height: 130px !important; +} +.img_comp_btn{ + border-radius: 20px !important; + margin-bottom: 8px; + border:1px solid #ff6262; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + font-size:12px; + font-family:arial, helvetica, sans-serif; + padding: 10px 10px 10px 10px; + text-decoration:none; + display:inline-block; + text-shadow: -1px -1px 0 rgba(0,0,0,0.3); + font-weight:bold; + color: #FFFFFF; + background-color: #ff9a9a; + background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9a9a), to(#ff4040)); + background-image: -webkit-linear-gradient(top, #ff9a9a, #ff4040); + background-image: -moz-linear-gradient(top, #ff9a9a, #ff4040); + background-image: -ms-linear-gradient(top, #ff9a9a, #ff4040); + background-image: -o-linear-gradient(top, #ff9a9a, #ff4040); + background-image: linear-gradient(to bottom, #ff9a9a, #ff4040); + filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ff9a9a, endColorstr=#ff4040); } \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/global/plugins/angularjs/angular-route.min.js b/src/Socioboard/wwwroot/contents/socioboard/global/plugins/angularjs/angular-route.min.js new file mode 100644 index 000000000..1265d0539 --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/global/plugins/angularjs/angular-route.min.js @@ -0,0 +1,14 @@ +/* + AngularJS v1.2.5 + (c) 2010-2014 Google, Inc. http://angularjs.org + License: MIT +*/ +(function(h,e,A){'use strict';function u(w,q,k){return{restrict:"ECA",terminal:!0,priority:400,transclude:"element",link:function(a,c,b,f,n){function y(){l&&(l.$destroy(),l=null);g&&(k.leave(g),g=null)}function v(){var b=w.current&&w.current.locals;if(b&&b.$template){var b=a.$new(),f=w.current;g=n(b,function(d){k.enter(d,null,g||c,function(){!e.isDefined(t)||t&&!a.$eval(t)||q()});y()});l=f.scope=b;l.$emit("$viewContentLoaded");l.$eval(h)}else y()}var l,g,t=b.autoscroll,h=b.onload||"";a.$on("$routeChangeSuccess", +v);v()}}}function z(e,h,k){return{restrict:"ECA",priority:-400,link:function(a,c){var b=k.current,f=b.locals;c.html(f.$template);var n=e(c.contents());b.controller&&(f.$scope=a,f=h(b.controller,f),b.controllerAs&&(a[b.controllerAs]=f),c.data("$ngControllerController",f),c.children().data("$ngControllerController",f));n(a)}}}h=e.module("ngRoute",["ng"]).provider("$route",function(){function h(a,c){return e.extend(new (e.extend(function(){},{prototype:a})),c)}function q(a,e){var b=e.caseInsensitiveMatch, +f={originalPath:a,regexp:a},h=f.keys=[];a=a.replace(/([().])/g,"\\$1").replace(/(\/)?:(\w+)([\?|\*])?/g,function(a,e,b,c){a="?"===c?c:null;c="*"===c?c:null;h.push({name:b,optional:!!a});e=e||"";return""+(a?"":e)+"(?:"+(a?e:"")+(c&&"(.+?)"||"([^/]+)")+(a||"")+")"+(a||"")}).replace(/([\/$\*])/g,"\\$1");f.regexp=RegExp("^"+a+"$",b?"i":"");return f}var k={};this.when=function(a,c){k[a]=e.extend({reloadOnSearch:!0},c,a&&q(a,c));if(a){var b="/"==a[a.length-1]?a.substr(0,a.length-1):a+"/";k[b]=e.extend({redirectTo:a}, +q(b,c))}return this};this.otherwise=function(a){this.when(null,a);return this};this.$get=["$rootScope","$location","$routeParams","$q","$injector","$http","$templateCache","$sce",function(a,c,b,f,n,q,v,l){function g(){var d=t(),m=r.current;if(d&&m&&d.$$route===m.$$route&&e.equals(d.pathParams,m.pathParams)&&!d.reloadOnSearch&&!x)m.params=d.params,e.copy(m.params,b),a.$broadcast("$routeUpdate",m);else if(d||m)x=!1,a.$broadcast("$routeChangeStart",d,m),(r.current=d)&&d.redirectTo&&(e.isString(d.redirectTo)? +c.path(u(d.redirectTo,d.params)).search(d.params).replace():c.url(d.redirectTo(d.pathParams,c.path(),c.search())).replace()),f.when(d).then(function(){if(d){var a=e.extend({},d.resolve),c,b;e.forEach(a,function(d,c){a[c]=e.isString(d)?n.get(d):n.invoke(d)});e.isDefined(c=d.template)?e.isFunction(c)&&(c=c(d.params)):e.isDefined(b=d.templateUrl)&&(e.isFunction(b)&&(b=b(d.params)),b=l.getTrustedResourceUrl(b),e.isDefined(b)&&(d.loadedTemplateUrl=b,c=q.get(b,{cache:v}).then(function(a){return a.data}))); +e.isDefined(c)&&(a.$template=c);return f.all(a)}}).then(function(c){d==r.current&&(d&&(d.locals=c,e.copy(d.params,b)),a.$broadcast("$routeChangeSuccess",d,m))},function(c){d==r.current&&a.$broadcast("$routeChangeError",d,m,c)})}function t(){var a,b;e.forEach(k,function(f,k){var p;if(p=!b){var s=c.path();p=f.keys;var l={};if(f.regexp)if(s=f.regexp.exec(s)){for(var g=1,q=s.length;g + License: MIT +*/ + +"format amd"; !function () { "use strict"; function a(a, b) { function c(c) { return { restrict: "A", scope: { targetSelector: "@", targetSrc: "@", onSave: "&", onSaveButtonClicked: "&", onClose: "&" }, link: function (d, e) { function f() { return m.launch({ image: k, url: d.targetSrc || k.src }), !1 } function g(b) { (d.onSaveButtonClicked || a.noop)({ id: b }) } function h(b, e) { (d.onSave || a.noop)({ id: b, newURL: e }), (d.closeOnSave || c.configuration.closeOnSave) && m.close() } function i(b) { (d.onError || a.noop)({ error: b }) } function j(b) { (d.onClose || a.noop)({ isDirty: b }) } var k = window.document.querySelector(d.targetSelector); e.bind("click", function (a) { return a.preventDefault(), f() }); var l = { onSaveButtonClicked: g, onSave: h, onError: i, onClose: j }, m = new b.Feather(a.extend({}, c.configuration, l)) } } } function d() { var b, c = { apiKey: null }, d = ["apiKey"]; this.configure = function (e) { if (b) throw new Error("Already configured."); if (!(e instanceof Object)) throw new TypeError("Invalid argument: `config` must be an `Object`."); return b = a.extend({}, c, e), a.forEach(d, function (a) { if (!b[a]) throw new Error("Missing parameter:", a) }), b }, this.$get = function () { if (!b) throw new Error("ngAviary must be configured first."); var a = function () { return b }(); return { configuration: a } } } return c.$inject = ["ngAviary"], a.module("ngAviary", []).directive("ngAviary", c).provider("ngAviary", d) } "function" == typeof define && define.amd ? define(["angular", "Aviary"], a) : "undefined" != typeof module && module && module.exports ? (a(angular, require("Aviary")), module.exports = "ngAviary") : a(angular, ("undefined" != typeof global ? global : window).Aviary) }(); +//# sourceMappingURL=angular-aviary.min.js.map \ No newline at end of file diff --git a/src/Socioboard/wwwroot/contents/socioboard/js/admin/angular-route.min.js b/src/Socioboard/wwwroot/contents/socioboard/js/admin/angular-route.min.js new file mode 100644 index 000000000..1265d0539 --- /dev/null +++ b/src/Socioboard/wwwroot/contents/socioboard/js/admin/angular-route.min.js @@ -0,0 +1,14 @@ +/* + AngularJS v1.2.5 + (c) 2010-2014 Google, Inc. http://angularjs.org + License: MIT +*/ +(function(h,e,A){'use strict';function u(w,q,k){return{restrict:"ECA",terminal:!0,priority:400,transclude:"element",link:function(a,c,b,f,n){function y(){l&&(l.$destroy(),l=null);g&&(k.leave(g),g=null)}function v(){var b=w.current&&w.current.locals;if(b&&b.$template){var b=a.$new(),f=w.current;g=n(b,function(d){k.enter(d,null,g||c,function(){!e.isDefined(t)||t&&!a.$eval(t)||q()});y()});l=f.scope=b;l.$emit("$viewContentLoaded");l.$eval(h)}else y()}var l,g,t=b.autoscroll,h=b.onload||"";a.$on("$routeChangeSuccess", +v);v()}}}function z(e,h,k){return{restrict:"ECA",priority:-400,link:function(a,c){var b=k.current,f=b.locals;c.html(f.$template);var n=e(c.contents());b.controller&&(f.$scope=a,f=h(b.controller,f),b.controllerAs&&(a[b.controllerAs]=f),c.data("$ngControllerController",f),c.children().data("$ngControllerController",f));n(a)}}}h=e.module("ngRoute",["ng"]).provider("$route",function(){function h(a,c){return e.extend(new (e.extend(function(){},{prototype:a})),c)}function q(a,e){var b=e.caseInsensitiveMatch, +f={originalPath:a,regexp:a},h=f.keys=[];a=a.replace(/([().])/g,"\\$1").replace(/(\/)?:(\w+)([\?|\*])?/g,function(a,e,b,c){a="?"===c?c:null;c="*"===c?c:null;h.push({name:b,optional:!!a});e=e||"";return""+(a?"":e)+"(?:"+(a?e:"")+(c&&"(.+?)"||"([^/]+)")+(a||"")+")"+(a||"")}).replace(/([\/$\*])/g,"\\$1");f.regexp=RegExp("^"+a+"$",b?"i":"");return f}var k={};this.when=function(a,c){k[a]=e.extend({reloadOnSearch:!0},c,a&&q(a,c));if(a){var b="/"==a[a.length-1]?a.substr(0,a.length-1):a+"/";k[b]=e.extend({redirectTo:a}, +q(b,c))}return this};this.otherwise=function(a){this.when(null,a);return this};this.$get=["$rootScope","$location","$routeParams","$q","$injector","$http","$templateCache","$sce",function(a,c,b,f,n,q,v,l){function g(){var d=t(),m=r.current;if(d&&m&&d.$$route===m.$$route&&e.equals(d.pathParams,m.pathParams)&&!d.reloadOnSearch&&!x)m.params=d.params,e.copy(m.params,b),a.$broadcast("$routeUpdate",m);else if(d||m)x=!1,a.$broadcast("$routeChangeStart",d,m),(r.current=d)&&d.redirectTo&&(e.isString(d.redirectTo)? +c.path(u(d.redirectTo,d.params)).search(d.params).replace():c.url(d.redirectTo(d.pathParams,c.path(),c.search())).replace()),f.when(d).then(function(){if(d){var a=e.extend({},d.resolve),c,b;e.forEach(a,function(d,c){a[c]=e.isString(d)?n.get(d):n.invoke(d)});e.isDefined(c=d.template)?e.isFunction(c)&&(c=c(d.params)):e.isDefined(b=d.templateUrl)&&(e.isFunction(b)&&(b=b(d.params)),b=l.getTrustedResourceUrl(b),e.isDefined(b)&&(d.loadedTemplateUrl=b,c=q.get(b,{cache:v}).then(function(a){return a.data}))); +e.isDefined(c)&&(a.$template=c);return f.all(a)}}).then(function(c){d==r.current&&(d&&(d.locals=c,e.copy(d.params,b)),a.$broadcast("$routeChangeSuccess",d,m))},function(c){d==r.current&&a.$broadcast("$routeChangeError",d,m,c)})}function t(){var a,b;e.forEach(k,function(f,k){var p;if(p=!b){var s=c.path();p=f.keys;var l={};if(f.regexp)if(s=f.regexp.exec(s)){for(var g=1,q=s.length;g{{bname}} -
No Post availabe for this keyword @@ -285,6 +284,7 @@

Categories Featured

  • @@ -292,27 +292,31 @@

    Categories Featured

  • diff --git a/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/mostshared.html b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/mostshared.html index 7f7bc63c5..d8c2ed00b 100644 --- a/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/mostshared.html +++ b/src/Socioboard/wwwroot/contents/socioboard/views/content_studio/mostshared.html @@ -21,18 +21,23 @@ background: transparent !important; } -
    +
    -
    -

    Most Shared

    +
    +
    +

    Most Shared

    +
    +
    - +
    @@ -51,18 +56,18 @@

    Most Shared

    Twitter Shares Pinterest Shares Google+ Shares - Total Shares + + + + {{lstData.title}}
    - @@ -84,9 +89,6 @@

    Most Shared

    {{lstData.gplusShareCount}} - {{lstData.totalShareCount}} @@ -104,22 +106,16 @@

    Most Shared

    -

    Select your file [Ex: gif, jpeg, png, mp4, ...]

    @@ -155,16 +143,6 @@

    Most Shared

    -
    • @@ -176,43 +154,47 @@

      Most Shared

    -
    Draft
    @@ -222,185 +204,41 @@

    Most Shared

    - +
  • - +